diff --git a/config/fish/config.fish b/config/fish/config.fish index dd437c067..fc86ec856 100644 --- a/config/fish/config.fish +++ b/config/fish/config.fish @@ -9,7 +9,7 @@ # First line removes the path; second line sets it. Without the first line, # your path gets massive and fish becomes very slow. set -e fish_user_paths -set -U fish_user_paths $HOME/.bin $HOME/.local/bin $HOME/.go/bin $HOME/.cargo/bin $HOME/.local/lib/flutter/bin $HOME/Applications $HOME/.local/share/JetBrains/Toolbox/scripts $HOME/.config/vifm/scripts /var/lib/flatpak/exports/bin/ $fish_user_paths +set -U fish_user_paths $HOME/.bin $HOME/.local/bin $HOME/.go/bin $HOME/.cargo/bin $HOME/.local/lib/flutter/bin $HOME/.local/lib/android/emulator $HOME/.local/share/JetBrains/Toolbox/scripts /var/lib/flatpak/exports/bin/ $fish_user_paths ### EXPORT ### set fish_greeting # Supresses fish's intro message @@ -161,9 +161,6 @@ alias egrep='egrep --color=auto' alias fgrep='fgrep --color=auto' # file management -alias fm="$HOME/.config/vifm/scripts/vifmrun" -alias flm="$HOME/.config/vifm/scripts/vifmrun" -alias vifm="$HOME/.config/vifm/scripts/vifmrun" alias cp='cp -iv' alias mv='mv -iv' alias rm='rm -vI' @@ -221,10 +218,10 @@ alias yta-opus="yt-dlp --extract-audio --audio-format opus " alias yta-vorbis="yt-dlp --extract-audio --audio-format vorbis " alias yta-wav="yt-dlp --extract-audio --audio-format wav " alias ytv-best="yt-dlp -f bestvideo+bestaudio " -alias yt='ytfzf -ftslT kitty' -alias youtube='ytfzf -ftslT kitty' -alias ytm='ytfzf -mtslT kitty' -alias youtube-music='ytfzf -mtslT kitty' +alias yt='ytfzf -ftslT chafa' +alias youtube='ytfzf -ftslT chafa' +alias ytm='ytfzf -mtslT chafa' +alias youtube-music='ytfzf -mtslT chafa' # network and bluetooth alias netstats='nmcli dev' @@ -235,6 +232,11 @@ alias wfi-on='nmcli radio wifi on' alias wfi-off='nmcli radio wifi off' alias blt='bluetoothctl' +# android emulator +alias avd='QT_QPA_PLATFORM=xcb emulator -avd Pixel_6_Pro_API_35' +alias avds='emulator -list-avds' +alias avde='QT_QPA_PLATFORM=xcb emulator -avd' + ### SETTING THE STARSHIP PROMPT ### starship init fish | source zoxide init fish | source diff --git a/config/fuzzel/scripts/rs_wifi b/config/fuzzel/scripts/rs_wifi index 41ec3f849..c89cc40de 100755 --- a/config/fuzzel/scripts/rs_wifi +++ b/config/fuzzel/scripts/rs_wifi @@ -108,7 +108,7 @@ password() { elif nmcli -f BSSID,SECURITY dev wifi list | grep -w "$bssid" | awk '{print $2}' | grep -q -- "--"; then pass="" else - pass=$($RUNNER -l 0 --password -p "[Enter Password ]  " ); + pass=$($RUNNER -l 0 --password -p "[Enter Password  ]  " ); if [ -z "$pass" ]; then exit 0 fi diff --git a/config/git/config b/config/git/config index b27ba990b..dc057681b 100644 --- a/config/git/config +++ b/config/git/config @@ -2,3 +2,5 @@ mail = maverick.xero@proton.me name = Lian Drake email = maverick.xero@proton.me +[safe] + directory = /usr/share/flutter diff --git a/config/gtk-2.0/gtkrc-2.0 b/config/gtk-2.0/gtkrc-2.0 index a7c6c15d0..db7418cd2 100644 --- a/config/gtk-2.0/gtkrc-2.0 +++ b/config/gtk-2.0/gtkrc-2.0 @@ -1,4 +1,4 @@ -gtk-theme-name="Gruvbox-Dark" +gtk-theme-name="Gruvbox-Material-Dark" gtk-icon-theme-name="Papirus-Dark" gtk-font-name="Inter 10" gtk-cursor-theme-name="Simp1e-Gruvbox-Dark" diff --git a/config/gtk-3.0/settings.ini b/config/gtk-3.0/settings.ini index c0ac43703..d3cb8d8e8 100644 --- a/config/gtk-3.0/settings.ini +++ b/config/gtk-3.0/settings.ini @@ -1,5 +1,5 @@ [Settings] -gtk-theme-name=Gruvbox-Dark +gtk-theme-name=Gruvbox-Material-Dark gtk-icon-theme-name=Papirus-Dark gtk-font-name=Inter 10 gtk-cursor-theme-name=Simp1e-Gruvbox-Dark diff --git a/config/lvim/config.lua b/config/lvim/config.lua index 0f19bd1e1..458059f4a 100644 --- a/config/lvim/config.lua +++ b/config/lvim/config.lua @@ -1,27 +1,3 @@ --- neovide options -vim.o.guifont = "mononoki Nerd Font:h14" -vim.g.neovide_no_idle = true -vim.g.neovide_confirm_quit = true -vim.g.neovide_input_use_logo = true - -vim.g.neovide_cursor_antialiasing = true -vim.g.neovide_cursor_animate_in_insert_mode = true -vim.g.neovide_cursor_vfx_mode = "pixiedust" -vim.g.neovide_cursor_vfx_particle_speed = 20.0 - -vim.g.neovide_padding_top = 0 -vim.g.neovide_padding_bottom = 0 -vim.g.neovide_padding_right = 0 -vim.g.neovide_padding_left = 0 - --- Helper function for transparency formatting -local alpha = function() - return string.format("%x", math.floor(255 * (vim.g.transparency or 0.98))) -end -vim.g.neovide_transparency = 0.98 -vim.g.transparency = 0.98 -vim.g.neovide_background_color = "#1d2021" .. alpha() - -- nvim options vim.opt.shiftwidth = 4 vim.opt.tabstop = 4 @@ -31,7 +7,7 @@ vim.opt.wrap = true -- wrap lines vim.opt.spell = false vim.o.shell = '/usr/bin/fish' vim.o.autochdir = true ---vim.cmd('autocmd BufEnter * lcd %:p:h') +vim.cmd('autocmd BufEnter * lcd %:p:h') -- general lvim.use_icons = true @@ -39,17 +15,19 @@ lvim.log.level = "info" -- change theme settings lvim.colorscheme = "gruvbox" -lvim.transparent_window = false +lvim.transparent_window = true lvim.builtin.alpha.active = true lvim.builtin.alpha.mode = "dashboard" lvim.builtin.terminal.active = true lvim.builtin.nvimtree.setup.view.side = "left" -lvim.builtin.nvimtree.setup.renderer.icons.show.git = false +lvim.builtin.nvimtree.setup.renderer.icons.show.git = true lvim.builtin.project.manual_mode = true lvim.builtin.treesitter.ensure_installed = { "bash", "c", + "cpp", + "c_sharp", "javascript", "json", "python", @@ -66,82 +44,119 @@ lvim.builtin.treesitter.ensure_installed = { -- additional Plugins lvim.plugins = { + -- Colorschemes { "lunarvim/colorschemes" }, - { "ellisonleao/gruvbox.nvim" }, - { "tpope/vim-dadbod" }, - { "kristijanhusak/vim-dadbod-ui" }, - { "kristijanhusak/vim-dadbod-completion", after = "nvim-cmp" }, + { "ellisonleao/gruvbox.nvim", + config = function() + require("gruvbox").setup({ + undercurl = true, + underline = true, + bold = false, + italic = { + strings = true, + comments = true, + operators = false, + folds = true, + }, + strikethrough = true, + invert_selection = false, + invert_signs = false, + invert_tabline = false, + invert_intend_guides = false, + inverse = true, -- invert background for search, diffs, statuslines and errors + contrast = "hard", -- can be "hard", "soft" or empty string + palette_overrides = {}, + overrides = {}, + dim_inactive = false, + transparent_mode = true, + }) + end + + }, + + -- Database UI (vim-dadbod) + { "kristijanhusak/vim-dadbod-ui", + dependencies = { + { 'tpope/vim-dadbod', lazy = true }, + { 'kristijanhusak/vim-dadbod-completion', + after = "nvim-cmp", + ft = { 'sql', 'mysql', 'plsql' }, + lazy = true + }, + }, + cmd = { + 'DBUI', + 'DBUIToggle', + 'DBUIAddConnection', + 'DBUIFindBuffer', + }, + init = function() + vim.g.db_ui_use_nerd_fonts = 1 + end, + }, + + -- Snippets { "SirVer/ultisnips" }, + + -- DAP { "mfussenegger/nvim-dap" }, + + -- Dotnet Tools + { "MoaidHathot/dotnet.nvim", + config = function() + require("dotnet").setup({}) + end + }, + + -- Flutter Tools { "akinsho/flutter-tools.nvim", - dependencies = { "nvim-lua/plenary.nvim", "stevearc/dressing.nvim" }, - }, -} - --- configuring colorscheme -require("gruvbox").setup({ - undercurl = true, - underline = true, - bold = false, - italic = { - strings = true, - comments = true, - operators = false, - folds = true, - }, - strikethrough = true, - invert_selection = false, - invert_signs = false, - invert_tabline = false, - invert_intend_guides = false, - inverse = true, -- invert background for search, diffs, statuslines and errors - contrast = "hard", -- can be "hard", "soft" or empty string - palette_overrides = {}, - overrides = {}, - dim_inactive = false, - transparent_mode = false, -}) - -require('flutter-tools').setup { - decorations = { - statusline = { - app_version = false, - device = true, - project_config = false, - } - }, - dev_log = { - enabled = true, - notify_errors = true, - open_cmd = "tabedit", - }, - lsp = { - color = { - enabled = true, - background = false, - foreground = false, - virtual_text = true, - virtual_text_str = "■", - }, - settings = { - showTodos = true, - completeFunctionCalls = true, - renameFilesWithClasses = "prompt", - enableSnippets = true, - enableSdkFormatter = true, + dependencies = { + { "nvim-lua/plenary.nvim" }, + { "stevearc/dressing.nvim" } }, + config = function() + require('flutter-tools').setup { + decorations = { + statusline = { + app_version = false, + device = true, + project_config = false, + } + }, + dev_log = { + enabled = true, + notify_errors = true, + open_cmd = "tabedit", + }, + lsp = { + color = { + enabled = true, + background = false, + foreground = false, + virtual_text = true, + virtual_text_str = "■", + }, + settings = { + showTodos = true, + completeFunctionCalls = true, + renameFilesWithClasses = "prompt", + enableSnippets = true, + enableSdkFormatter = true, + }, + }, + } + end }, } --- Flutter .arb files should be concidered as json files -vim.filetype.add { - extension = { - arb = 'json', - } -} - +-- Keybindigns +-- vim-dadbod-ui lvim.keys.normal_mode["D"] = ":DBUIToggle" + +-- telescope projects lvim.builtin.which_key.mappings["P"] = { "Telescope projects", "Projects" } + +-- flutter lvim.builtin.which_key.mappings["F"] = { name = "+Flutter", c = { "Telescope flutter commands", "Open Flutter Commans" }, @@ -153,18 +168,39 @@ lvim.builtin.which_key.mappings["F"] = { v = { "Telescope flutter fvm", "Flutter version" }, } +-- dotnet +lvim.builtin.which_key.mappings["N"] = { + name = "+Dotnet", + n = { "DotnetUI new_item", "Create a dotnet project" }, + a = { "DotnetUI project package add", "Install a NuGet package" }, + r = { "DotnetUI project package remove", "Remove a NuGet package" }, + A = { "DotnetUI project reference add", "Add a project reference" }, + R = { "DotnetUI project reference remove", "Remove a project reference" }, +} + +-- Flutter .arb files should be concidered as json files +vim.filetype.add { + extension = { + arb = 'json', + } +} + +-- Dart files should use two spaces indentation vim.api.nvim_create_autocmd("FileType", { - pattern = { "sql", "mysql", "plsql" }, - command = ":lua require('cmp').setup.buffer({ sources = {{ name = 'vim-dadbod-completion' }} })", + pattern = "dart", + callback = function() + vim.bo.tabstop = 2 -- Set tabstop to 2 spaces for Dart + vim.bo.shiftwidth = 2 -- Set shiftwidth to 2 spaces for Dart + vim.bo.expandtab = true -- Use spaces instead of tabs + end, }) +-- Setup auto completion of SQL files with vim-dadbod-completion vim.api.nvim_create_autocmd("FileType", { - pattern = "dart", - callback = function() - vim.bo.tabstop = 2 -- Set tabstop to 2 spaces for Dart - vim.bo.shiftwidth = 2 -- Set shiftwidth to 2 spaces for Dart - vim.bo.expandtab = true -- Use spaces instead of tabs - end, + pattern = { "sql", "mysql", "plsql" }, + command = ":lua require('cmp').setup.buffer({ sources = {{ name = 'vim-dadbod-completion' }} })", }) +-- Fix weird bug with vim-dadbod under lunarvim +-- https://github.com/kristijanhusak/vim-dadbod-completion/issues/53 local cmp = require("cmp") diff --git a/config/newsboat/urls b/config/newsboat/urls index 2d27ca901..40196f101 100644 --- a/config/newsboat/urls +++ b/config/newsboat/urls @@ -21,7 +21,6 @@ https://www.gamingonlinux.com/article_rss.php "~Gaming on linux" https://hackaday.com/blog/feed/ "~Hackaday" https://www.phoronix.com/rss.php "~Phoronix" https://betanews.com/feed "~Betanews Linux" -http://lxer.com/module/newswire/headlines.rss "~Lxer" https://theevilskeleton.gitlab.io/feed.xml "~TheEvilSkeleton" https://tutanota.com/blog/feed.xml "~Tutanota Blogs" https://techcrunch.com/feed/ "~TechCrunch" diff --git a/config/sway/modules/binds b/config/sway/modules/binds index 1c79d73a9..c9ea32d6a 100644 --- a/config/sway/modules/binds +++ b/config/sway/modules/binds @@ -11,9 +11,10 @@ set $right l set $term foot set $chat flatpak run org.signal.Signal set $office flatpak run org.libreoffice.LibreOffice +set $notes joplin-desktop set $browser flatpak run com.brave.Browser set $file foot -T yazi -a yazi yazi -set $editor neovide --neovim-bin $HOME/.local/bin/lvim +set $editor foot -T lunarvim -a lunarvim $HOME/.local/bin/lvim set $music foot -T cmus -a cmus cmus set $rss foot -T newsboat -a newsboat newsboat set $ani-cli foot -T ani-cli -a ani-cli ani-cli @@ -192,6 +193,7 @@ mode "apps" { bindsym w exec $browser; mode "default" bindsym c exec $chat; mode "default" bindsym o exec $office; mode "default" + bindsym n exec $notes; mode "default" bindsym m exec $music; mode "default" bindsym r exec $rss; mode "default" bindsym Shift+b exec $monitor; mode "default" diff --git a/config/sway/modules/theme b/config/sway/modules/theme index 154313134..cda270e93 100644 --- a/config/sway/modules/theme +++ b/config/sway/modules/theme @@ -30,7 +30,7 @@ gaps inner 5 # gsettings exec gsettings set org.gnome.desktop.interface { - gtk-theme 'Gruvbox-Dark' + gtk-theme 'Gruvbox-Material-Dark' icon-theme 'Papirus-Dark' cursor-theme 'Simp1e-Gruvbox-Dark' font-name 'Inter 10' diff --git a/config/sway/scripts/init b/config/sway/scripts/init index 5dbc39df5..18b807342 100755 --- a/config/sway/scripts/init +++ b/config/sway/scripts/init @@ -23,7 +23,7 @@ export GTK_CSD=0 # GTK & cursor stuff export XCURSOR_PATH="$XDG_DATA_HOME/icons/" export XCURSOR_THEME="Simp1e-Gruvbox-Dark" -export GTK_THEME="Gruvbox-Dark" +export GTK_THEME="Gruvbox-Material-Dark" export GTK_ICON_THEME="Papirus-Dark" export GTK_CURSOR_THEME="Simp1e-Gruvbox-Dark" diff --git a/config/sway/wallpaper/background.png b/config/sway/wallpaper/background.png index adcd93b1c..00d66341a 100644 Binary files a/config/sway/wallpaper/background.png and b/config/sway/wallpaper/background.png differ diff --git a/config/sway/wallpaper/locked.png b/config/sway/wallpaper/locked.png index adcd93b1c..00d66341a 100644 Binary files a/config/sway/wallpaper/locked.png and b/config/sway/wallpaper/locked.png differ diff --git a/config/waybar/config b/config/waybar/config index a12f75ab5..7d14e6c0d 100644 --- a/config/waybar/config +++ b/config/waybar/config @@ -112,7 +112,11 @@ "phone": "\udb80\udff2", "portable": "\udb80\udff2", "car": "\udb80\udd0b", - "default": ["\udb81\udd7f", "\udb81\udd80", "\udb81\udd7e"] + "default": [ + "\udb81\udd7f", + "\udb81\udd80", + "\udb81\udd7e" + ] }, "on-click": "foot -T audiomixer -a audiomixer pulsemixer" }, diff --git a/config/waybar/style.css b/config/waybar/style.css index 5d70ce1ca..6d8f0d95d 100644 --- a/config/waybar/style.css +++ b/config/waybar/style.css @@ -98,7 +98,8 @@ window#waybar { #workspaces button { font-family: Symbols Nerd Font Mono; font-size: 16px; - padding: 4px 0px; + padding: 0px 0px; + margin: 0 0; color: @white; } diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-active.png deleted file mode 100644 index 51e213e8c..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-inactive.png deleted file mode 100644 index 87197a9ef..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-left-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-left-active.png deleted file mode 100644 index 008ac5443..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-left-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-left-inactive.png deleted file mode 100644 index df5f70c45..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-right-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-right-active.png deleted file mode 100644 index 4e0b7b2c6..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-right-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-right-inactive.png deleted file mode 100644 index 530ef87f8..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/bottom-right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-active.png deleted file mode 100644 index be23aedee..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-inactive.png deleted file mode 100644 index 09c39dfc0..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-prelight.png deleted file mode 100644 index e90d77ec0..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-pressed.png deleted file mode 100644 index 728912cc0..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/close-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-active.png deleted file mode 100644 index 90dfe45ca..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-inactive.png deleted file mode 100644 index 667396f54..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-prelight.png deleted file mode 100644 index 4cf606138..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-pressed.png deleted file mode 100644 index 5027f1a09..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/hide-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/left-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/left-active.png deleted file mode 100644 index d4f8d5a73..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/left-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/left-inactive.png deleted file mode 100644 index 221178fb8..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-active.png deleted file mode 100644 index 227e7d111..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-inactive.png deleted file mode 100644 index 335923d3a..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-prelight.png deleted file mode 100644 index 4e120edc0..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-pressed.png deleted file mode 100644 index 94a084485..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-active.png deleted file mode 100644 index 22b4f4991..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-inactive.png deleted file mode 100644 index b752554ef..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-prelight.png deleted file mode 100644 index 85369d0d8..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-pressed.png deleted file mode 100644 index a8086658c..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-active.png deleted file mode 100644 index 4ba47726b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-inactive.png deleted file mode 100644 index 5f1e37df9..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-prelight.png deleted file mode 100644 index cece94858..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-pressed.png deleted file mode 100644 index 4f9245502..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/menu-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/right-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/right-active.png deleted file mode 100644 index 7af47ad88..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/right-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/right-inactive.png deleted file mode 100644 index 221178fb8..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-active.png deleted file mode 100644 index 499d112ac..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-inactive.png deleted file mode 100644 index a034c081b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-prelight.png deleted file mode 100644 index e5346b232..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-pressed.png deleted file mode 100644 index 6d9a8ad9e..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-active.png deleted file mode 100644 index 4e0c76db2..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-inactive.png deleted file mode 100644 index c43843549..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-prelight.png deleted file mode 100644 index 0e1292779..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-pressed.png deleted file mode 100644 index a4d9d374d..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-active.png deleted file mode 100644 index a25368a8f..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-inactive.png deleted file mode 100644 index 960374a67..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-prelight.png deleted file mode 100644 index c5d37036a..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-pressed.png deleted file mode 100644 index 6dfd9c358..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-active.png deleted file mode 100644 index 1a92438ee..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-inactive.png deleted file mode 100644 index bce7c683e..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-prelight.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-prelight.png deleted file mode 100644 index a66815cc1..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-pressed.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-pressed.png deleted file mode 100644 index 7439d9e50..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/themerc b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/themerc deleted file mode 100644 index f90a6f041..000000000 --- a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/themerc +++ /dev/null @@ -1,23 +0,0 @@ -button_offset=9 -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=#f0f7fe -active_text_shadow_color=#222426 - -inactive_text_color=#999da3 -inactive_text_shadow_color=#222426 - -shadow_delta_height=2 -shadow_delta_width=0 -shadow_delta_x=0 -shadow_delta_y=-5 -shadow_opacity=40 diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-1-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-1-active.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-1-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-1-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-1-inactive.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-1-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-2-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-2-active.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-2-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-2-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-2-inactive.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-2-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-3-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-3-active.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-3-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-3-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-3-inactive.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-3-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-4-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-4-active.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-4-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-4-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-4-inactive.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-4-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-5-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-5-active.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-5-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-5-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-5-inactive.png deleted file mode 100644 index 60321b67b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/title-5-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-left-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-left-active.png deleted file mode 100644 index aabff9013..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-left-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-left-inactive.png deleted file mode 100644 index 4f144236e..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-right-active.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-right-active.png deleted file mode 100644 index 308f2f817..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-right-inactive.png b/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-right-inactive.png deleted file mode 100644 index fadc98498..000000000 Binary files a/local/share/themes/Gruvbox-Dark-hdpi/xfwm4/top-right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-active.png deleted file mode 100644 index b35dbe2d7..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-inactive.png deleted file mode 100644 index 2c0492921..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-left-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-left-active.png deleted file mode 100644 index 1d28b39a8..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-left-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-left-inactive.png deleted file mode 100644 index 87581594c..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-right-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-right-active.png deleted file mode 100644 index 711d6bd8a..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-right-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-right-inactive.png deleted file mode 100644 index 51c63351b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-active.png deleted file mode 100644 index 2f1de30da..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-inactive.png deleted file mode 100644 index 6827f3d6d..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-prelight.png deleted file mode 100644 index b827088d3..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-pressed.png deleted file mode 100644 index 2456783c0..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/close-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-active.png deleted file mode 100644 index cc4ed4914..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-inactive.png deleted file mode 100644 index 597b00ae0..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-prelight.png deleted file mode 100644 index 44f149ca7..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-pressed.png deleted file mode 100644 index 6e20027dd..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/hide-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/left-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/left-active.png deleted file mode 100644 index 46f2a2dee..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/left-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/left-inactive.png deleted file mode 100644 index 1344c14bf..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-active.png deleted file mode 100644 index 86fc6f0cf..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-inactive.png deleted file mode 100644 index 1df4d314c..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-prelight.png deleted file mode 100644 index 0def3c1b2..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-pressed.png deleted file mode 100644 index df250e346..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-active.png deleted file mode 100644 index 1d427c0a1..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-inactive.png deleted file mode 100644 index 018827fbb..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-prelight.png deleted file mode 100644 index a0c488cc5..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-pressed.png deleted file mode 100644 index ae74e855d..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-active.png deleted file mode 100644 index 1ef92e792..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-inactive.png deleted file mode 100644 index 27574bbc9..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-prelight.png deleted file mode 100644 index fdddd3bba..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-pressed.png deleted file mode 100644 index 3bb60bbac..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/menu-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/right-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/right-active.png deleted file mode 100644 index 80e0429b8..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/right-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/right-inactive.png deleted file mode 100644 index 1344c14bf..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-active.png deleted file mode 100644 index 6a95bfd6a..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-inactive.png deleted file mode 100644 index e66e85466..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-prelight.png deleted file mode 100644 index d2c4c863a..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-pressed.png deleted file mode 100644 index 59ac79bca..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-active.png deleted file mode 100644 index cb207675d..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-inactive.png deleted file mode 100644 index 7cb1e4316..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-prelight.png deleted file mode 100644 index 1b5715473..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-pressed.png deleted file mode 100644 index d1f277926..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/shade-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-active.png deleted file mode 100644 index 7f273c295..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-inactive.png deleted file mode 100644 index 995b710b6..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-prelight.png deleted file mode 100644 index 507ca4d50..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-pressed.png deleted file mode 100644 index 63e79b78b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-active.png deleted file mode 100644 index 43f0e1513..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-inactive.png deleted file mode 100644 index 8a0bb5c21..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-prelight.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-prelight.png deleted file mode 100644 index d7304b69d..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-pressed.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-pressed.png deleted file mode 100644 index f7c0fc135..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/stick-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/themerc b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/themerc deleted file mode 100644 index ba0f0861f..000000000 --- a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/themerc +++ /dev/null @@ -1,23 +0,0 @@ -button_offset=12 -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=#f0f7fe -active_text_shadow_color=#222426 - -inactive_text_color=#999da3 -inactive_text_shadow_color=#222426 - -shadow_delta_height=2 -shadow_delta_width=0 -shadow_delta_x=0 -shadow_delta_y=-5 -shadow_opacity=40 diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-1-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-1-active.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-1-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-1-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-1-inactive.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-1-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-2-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-2-active.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-2-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-2-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-2-inactive.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-2-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-3-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-3-active.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-3-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-3-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-3-inactive.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-3-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-4-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-4-active.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-4-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-4-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-4-inactive.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-4-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-5-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-5-active.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-5-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-5-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-5-inactive.png deleted file mode 100644 index 98f30b210..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/title-5-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-left-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-left-active.png deleted file mode 100644 index b7bae60d4..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-left-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-left-inactive.png deleted file mode 100644 index 9768ee970..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-right-active.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-right-active.png deleted file mode 100644 index 4e62bcb68..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-right-inactive.png b/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-right-inactive.png deleted file mode 100644 index bf765f65b..000000000 Binary files a/local/share/themes/Gruvbox-Dark-xhdpi/xfwm4/top-right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace-active.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace-active.svg deleted file mode 100644 index 1790a53ab..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace-active.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace-hover.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace-hover.svg deleted file mode 100644 index 8a1d3516b..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace-hover.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace.svg deleted file mode 100644 index 8dba5df9f..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/add-workspace.svg +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/calendar-arrow-left.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/calendar-arrow-left.svg deleted file mode 100644 index dcf8298b1..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/calendar-arrow-left.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/calendar-arrow-right.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/calendar-arrow-right.svg deleted file mode 100644 index ed66559d8..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/calendar-arrow-right.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox-dark.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox-dark.svg deleted file mode 100644 index bb301df70..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox-dark.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox-off.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox-off.svg deleted file mode 100644 index b00efa63d..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox.svg deleted file mode 100644 index 0f6f6fa3c..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/checkbox.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/close-active.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/close-active.svg deleted file mode 100644 index c3ffe9139..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/close-active.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/close-hover.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/close-hover.svg deleted file mode 100644 index 09f6dbc5a..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/close-hover.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/close.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/close.svg deleted file mode 100644 index dce612d93..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/close.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/corner-ripple.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/corner-ripple.svg deleted file mode 100644 index 7abc47067..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/corner-ripple.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton-dark.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton-dark.svg deleted file mode 100644 index c2d6d2582..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton-dark.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton-off.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton-off.svg deleted file mode 100644 index b00efa63d..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton.svg deleted file mode 100644 index 0947b422d..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/radiobutton.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-off.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-off.svg deleted file mode 100644 index 8522010b1..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-off.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-on-dark.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-on-dark.svg deleted file mode 100644 index 11c82adbb..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-on-dark.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-on.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-on.svg deleted file mode 100644 index d3092953a..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/toggle-on.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/assets/trash-icon.svg b/local/share/themes/Gruvbox-Dark/cinnamon/assets/trash-icon.svg deleted file mode 100644 index d78a123ee..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/assets/trash-icon.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/cinnamon.css b/local/share/themes/Gruvbox-Dark/cinnamon/cinnamon.css deleted file mode 100644 index 92c676b79..000000000 --- a/local/share/themes/Gruvbox-Dark/cinnamon/cinnamon.css +++ /dev/null @@ -1,2367 +0,0 @@ -stage { - color: #fbf1c7; -} - -.label-shadow { - color: rgba(0, 0, 0, 0); -} - -.sound-button { - min-height: 24px; - padding: 5px 32px; - transition-duration: 100ms; - border-radius: 12px; - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); -} - -.sound-button:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); - border-radius: 12px; -} - -.sound-button:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); - border-radius: 12px; -} - -.sound-button:hover:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.3); - border-radius: 12px; -} - -.sound-button:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.3); - border-radius: 12px; -} - -.sound-button:insensitive { - color: rgba(251, 241, 199, 0.5); - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; -} - -.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: 12px; - color: rgba(251, 241, 199, 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: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); - border-radius: 12px; -} - -.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: #fbf1c7; - background-color: rgba(251, 241, 199, 0.3); - border-radius: 12px; -} - -.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(251, 241, 199, 0.32); - background-color: transparent; - border-radius: 12px; -} - -.modal-dialog-button-box .modal-dialog-button { - min-height: 24px; - padding: 6px 30px; - transition-duration: 100ms; - border-radius: 12px; - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); -} - -.modal-dialog-button-box .modal-dialog-button:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.modal-dialog-button-box .modal-dialog-button:focus { - color: #7daea3; -} - -.modal-dialog-button-box .modal-dialog-button:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.3); -} - -.modal-dialog-button-box .modal-dialog-button:insensitive { - color: rgba(251, 241, 199, 0.32); - 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: #7daea3; - selected-color: rgba(29, 32, 33, 0.87); - transition-duration: 300ms; - border-radius: 12px; - color: #fbf1c7; - border: 2px solid transparent; - background-color: rgba(251, 241, 199, 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: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); - border: 2px solid #7daea3; -} - -#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(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -#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: #b47109; - 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(40, 37, 36, 0.1); - border-radius: 9999px; -} - -StScrollBar StButton#vhandle, -StScrollBar StButton#hhandle { - border-radius: 9999px; - background-color: #767463; - border: 0px solid; - margin: 0px; -} - -StScrollBar StButton#vhandle:hover, -StScrollBar StButton#hhandle:hover { - background-color: #605f53; -} - -StScrollBar StButton#vhandle:active, -StScrollBar StButton#hhandle:active { - background-color: #7daea3; -} - -.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(251, 241, 199, 0.12); - -slider-border-color: transparent; - -slider-active-background-color: #7daea3; - -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: 0.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: 0.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: #83b193; - text-decoration: underline; -} - -.cinnamon-link:hover { - color: #a2c5ae; -} - -#Tooltip { - border-radius: 9999px; - padding: 6px 12px; - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; - 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; -} - -.menu, -.popup-menu, -.popup-combo-menu { - padding: 0; - color: #fbf1c7; - border-radius: 12px; - margin: 6px; - box-shadow: none; - /* @if $outline == 'true' { - border: 2px solid $primary; - } */ -} - -.menu-arrow, -.popup-menu-arrow { - icon-size: 16px; -} - -.menu .popup-sub-menu, -.popup-menu .popup-sub-menu, -.popup-combo-menu .popup-sub-menu { - border-radius: 12px; - background-gradient-direction: none; - box-shadow: none; - background-color: #3a3731; - color: rgba(251, 241, 199, 0.7); -} - -.menu .popup-sub-menu .popup-menu-item:active, -.popup-menu .popup-sub-menu .popup-menu-item:active, -.popup-combo-menu .popup-sub-menu .popup-menu-item:active { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.menu .popup-sub-menu StScrollBar, -.popup-menu .popup-sub-menu StScrollBar, -.popup-combo-menu .popup-sub-menu StScrollBar { - padding: 4px; -} - -.menu .popup-sub-menu StScrollBar StBin#trough, -.menu .popup-sub-menu StScrollBar StBin#vhandle, -.popup-menu .popup-sub-menu StScrollBar StBin#trough, -.popup-menu .popup-sub-menu StScrollBar StBin#vhandle, -.popup-combo-menu .popup-sub-menu StScrollBar StBin#trough, -.popup-combo-menu .popup-sub-menu StScrollBar StBin#vhandle { - border-width: 0; -} - -.menu .popup-menu-content, -.popup-menu .popup-menu-content, -.popup-combo-menu .popup-menu-content { - padding: 6px; - border-radius: 12px; - background-color: #242220; - box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35); -} - -.menu .popup-menu-item, -.popup-menu .popup-menu-item, -.popup-combo-menu .popup-menu-item { - padding: 6px 12px; - spacing: 12px; - border-radius: 12px; -} - -.menu .popup-menu-item:hover, .menu .popup-menu-item:active, -.popup-menu .popup-menu-item:hover, -.popup-menu .popup-menu-item:active, -.popup-combo-menu .popup-menu-item:hover, -.popup-combo-menu .popup-menu-item:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.menu .popup-menu-item:insensitive, -.popup-menu .popup-menu-item:insensitive, -.popup-combo-menu .popup-menu-item:insensitive { - color: rgba(251, 241, 199, 0.5); - background: none; -} - -.menu .popup-inactive-menu-item, -.popup-menu .popup-inactive-menu-item, -.popup-combo-menu .popup-inactive-menu-item { - color: rgba(251, 241, 199, 0.5); -} - -.menu .popup-inactive-menu-item:insensitive, -.popup-menu .popup-inactive-menu-item:insensitive, -.popup-combo-menu .popup-inactive-menu-item:insensitive { - color: rgba(251, 241, 199, 0.12); -} - -.menu .popup-menu-item:active .popup-inactive-menu-item, -.popup-menu .popup-menu-item:active .popup-inactive-menu-item, -.popup-combo-menu .popup-menu-item:active .popup-inactive-menu-item { - color: rgba(251, 241, 199, 0.5); -} - -.menu-icon, -.popup-menu-icon { - icon-size: 16px; -} - -.popup-menu-boxpointer { - -arrow-border-radius: 12px; - -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; -} - -.popup-combo-menu { - padding: 6px; -} - -.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(251, 241, 199, 0.12); - border-bottom-width: 0; - border-bottom-style: solid; - background-color: transparent; -} - -.popup-alternating-menu-item:alternate { - font-weight: normal; -} - -.popup-device-menu-item { - spacing: 0.5em; -} - -.popup-subtitle-menu-item { - font-weight: normal; -} - -.nm-menu-item-icons { - spacing: 0.5em; -} - -#panel { - font-weight: bold; - height: 36px; - width: 42px; -} - -#panel:highlight { - border-image: none; - background-color: rgba(193, 74, 74, 0.5); -} - -#panelLeft { - spacing: 4px; -} - -#panelLeft:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(193, 74, 74, 0.35); - background-gradient-end: rgba(193, 74, 74, 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(69, 112, 122, 0.35); - background-gradient-end: rgba(69, 112, 122, 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(108, 120, 46, 0.35); - background-gradient-end: rgba(108, 120, 46, 0.35); -} - -.panel-top, .panel-bottom, .panel-left, .panel-right { - color: rgba(251, 241, 199, 0.7); - font-size: 1em; - padding: 0px; - background-color: rgba(29, 32, 33, 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: #fbf1c7; - background-color: rgba(251, 241, 199, 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: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.panel-dummy { - background-color: rgba(193, 74, 74, 0.5); -} - -.panel-dummy:entered { - background-color: rgba(193, 74, 74, 0.6); -} - -.panel-status-button { - border-width: 0; - -natural-hpadding: 3px; - -minimum-hpadding: 3px; - font-weight: bold; - height: 22px; - color: rgba(251, 241, 199, 0.7); -} - -.panel-button { - -natural-hpadding: 6px; - -minimum-hpadding: 2px; - font-weight: bold; - transition-duration: 100ms; - color: rgba(251, 241, 199, 0.7); -} - -.system-status-icon { - icon-size: 16px; - padding: 0 1px; -} - -#overview { - spacing: 12px; -} - -.window-caption { - background-color: rgba(22, 24, 25, 0.9); - border: 1px solid rgba(22, 24, 25, 0.9); - color: #fbf1c7; - spacing: 25px; - border-radius: 12px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; -} - -.window-caption#selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - border: 1px solid #7daea3; - spacing: 25px; -} - -.expo-workspaces-name-entry, -.expo-workspaces-name-entry#selected { - height: 15px; - border-radius: 12px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); - border: 2px solid transparent; -} - -.expo-workspaces-name-entry:focus, -.expo-workspaces-name-entry#selected:focus { - border: 1px solid #7daea3; - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - font-style: italic; - transition-duration: 300; - selection-background-color: rgba(29, 32, 33, 0.87); - selected-color: #7daea3; -} - -.expo-workspace-thumbnail-frame { - border: 4px solid rgba(255, 255, 255, 0); - background-color: rgba(255, 255, 255, 0); - border-radius: 0; -} - -.expo-workspace-thumbnail-frame#active { - border: 4px solid #7daea3; - background-color: black; - border-radius: 0; -} - -.expo-background { - background-color: #161819; -} - -.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); -} - -.workspace-close-button, -.window-close { - background-image: url("assets/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - -cinnamon-close-overlap: 13px; -} - -.workspace-close-button:hover, -.window-close:hover { - background-image: url("assets/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; -} - -.workspace-close-button:active, -.window-close:active { - background-image: url("assets/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; -} - -.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(251, 241, 199, 0.12); - border-radius: 12px; - background-color: #282524; - 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: #282524; - spacing: 6px; - padding: 6px; - margin: 32px; - border-radius: 12px; - color: #fbf1c7; - 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 0.8em; -} - -.calendar { - 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(251, 241, 199, 0.7); - font-weight: bold; - text-align: center; - padding-bottom: 0.1em; -} - -.calendar-today-date-label { - font-size: 1.1em; - color: rgba(251, 241, 199, 0.5); - font-weight: bold; - text-align: center; -} - -.calendar-month-label { - color: #fbf1c7; - font-weight: bold; - padding-bottom: 8px; - padding-top: 8px; -} - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 2.4em; - height: 2.4em; - margin: 2px 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(251, 241, 199, 0.1); -} - -.calendar-change-month-back:active, -.calendar-change-month-forward:active { - background-color: rgba(251, 241, 199, 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: 0.4em 1.75em; - font-weight: normal; - text-align: center; - font-size: 14px; - color: #fbf1c7; - border-radius: 12px; -} - -.calendar-day-base { - text-align: center; - width: 2.4em; - height: 2.4em; - padding: 0; - margin: 2px; - border-radius: 9999px; -} - -.calendar-day-base:hover { - background-color: rgba(251, 241, 199, 0.04); -} - -.calendar-day-base:active { - background-color: rgba(251, 241, 199, 0.12); -} - -.calendar-day-heading { - color: rgba(251, 241, 199, 0.7); - margin-top: 1em; -} - -.calendar-day { - border-width: 0; - color: rgba(251, 241, 199, 0.7); -} - -.calendar-day-top { - border-top-width: 0; -} - -.calendar-day-left { - border-left-width: 0; -} - -.calendar-nonwork-day { - color: #fbf1c7; - background-color: transparent; - font-weight: bold; -} - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; - border-width: 0; -} - -.calendar-other-month-day { - color: rgba(251, 241, 199, 0.7); - opacity: 1; -} - -.calendar-week-number { - width: 2.4em; - height: 2.4em; - margin: 0; - color: rgba(251, 241, 199, 0.3); - font-weight: bold; - background-color: transparent; - 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: 12px; - background-gradient-direction: vertical; - background-gradient-start: rgba(251, 241, 199, 0.04); - background-gradient-end: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.7); -} - -.calendar-events-no-events-button { - margin: 6px 0; - padding: 6px; - border-radius: 12px; -} - -.calendar-events-no-events-button:hover { - background-gradient-direction: vertical; - background-gradient-start: rgba(251, 241, 199, 0.04); - background-gradient-end: rgba(251, 241, 199, 0.04); - box-shadow: none; -} - -.calendar-events-no-events-icon { - color: rgba(251, 241, 199, 0.5); -} - -.calendar-events-no-events-label { - font-size: 1.1em; - color: rgba(251, 241, 199, 0.5); - font-weight: bold; - text-align: center; - margin-top: 9px; -} - -.calendar-events-date-label { - padding: 3px 0 12px 3px; - font-size: 1.1em; - color: rgba(251, 241, 199, 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(251, 241, 199, 0.12); - -gradient-end: rgba(251, 241, 199, 0.12); -} - -.calendar-event-button { - margin: 6px 0 6px 0; - border-radius: 12px; -} - -.calendar-event-button:hover { - background-gradient-direction: vertical; - background-gradient-start: rgba(251, 241, 199, 0.04); - background-gradient-end: rgba(251, 241, 199, 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(251, 241, 199, 0.32); - font-weight: bold; - text-align: left; - margin-bottom: 0.6em; -} - -.calendar-event-time-present { - font-weight: bold; - text-align: left; - margin-bottom: 0.6em; -} - -.calendar-event-time-present:all-day { - color: rgba(108, 120, 46, 0.6); -} - -.calendar-event-time-future { - text-align: left; - margin-bottom: 0.6em; -} - -.calendar-event-countdown { - color: rgba(251, 241, 199, 0.5); - font-weight: bold; - text-align: right; - margin-bottom: 0.6em; -} - -.calendar-event-countdown:soon { - color: #fbf1c7; -} - -.calendar-event-countdown:imminent { - color: rgba(180, 113, 9, 0.6); -} - -.calendar-event-countdown:current { - color: rgba(108, 120, 46, 0.6); -} - -.calendar-event-summary { - color: rgba(251, 241, 199, 0.5); - 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: #fbf1c7; - background-color: rgba(40, 37, 36, 0.8); - 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: 12px; - background-color: rgba(251, 241, 199, 0.05); - box-shadow: none; - margin: 0; -} - -.menu #notification:hover, .popup-menu #notification:hover { - background-color: rgba(251, 241, 199, 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: #fbf1c7; -} - -.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: #fbf1c7; -} - -#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: #fbf1c7; -} - -.notification-button, .notification-icon-button { - padding: 6px; -} - -.notification-icon-button > StIcon { - icon-size: 36px; -} - -#altTabPopup { - padding: 8px; - spacing: 16px; -} - -.switcher-list { - color: #fbf1c7; - background-color: #242220; - border: none; - border-radius: 12px; - padding: 20px; -} - -.switcher-list > StBoxLayout { - padding: 4px; -} - -.switcher-list-item-container { - spacing: 8px; -} - -.switcher-list .item-box { - padding: 8px; - border-radius: 12px; -} - -.switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #7daea3; -} - -.switcher-list .item-box:selected { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; - border: 0px solid #7daea3; -} - -.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: #fbf1c7; -} - -.switcher-arrow:highlighted { - border-color: rgba(0, 0, 0, 0); - color: rgba(251, 241, 199, 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: #fbf1c7; -} - -.modal-dialog { - color: #fbf1c7; - background-color: rgba(15, 16, 17, 0.95); - padding: 0 5px 6px 5px; - border-radius: 12px; - 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(22, 24, 25, 0.9); - border-radius: 12px; - color: #fbf1c7; -} - -.run-dialog > * { - padding: 0; -} - -.run-dialog-label { - font-size: 0; - font-weight: bold; - color: #fbf1c7; - padding-bottom: 0; -} - -.run-dialog-error-label { - color: #c14a4a; -} - -.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: 12px; - caret-color: #fbf1c7; - selected-color: rgba(29, 32, 33, 0.87); - selection-background-color: #7daea3; - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); - border: 2px solid transparent; -} - -.run-dialog-entry:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); - border: 2px solid #7daea3; -} - -.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: #b47109; -} - -.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: #fbf1c7; -} - -.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(22, 24, 25, 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: 12px; - box-shadow: none; - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); -} - -.keyboard-key:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.keyboard-key:active, .keyboard-key:checked { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.3); -} - -.keyboard-key:grayed { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -.keyboard-subkeys { - color: #fbf1c7; - padding: 5px; - -arrow-border-radius: 12px; - -arrow-background-color: rgba(22, 24, 25, 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(251, 241, 199, 0.05); - border: none; - border-radius: 12px; -} - -.menu-favorites-button { - padding: 9px; - border: none; - border-radius: 6px; -} - -.menu-favorites-button:hover { - background-color: rgba(251, 241, 199, 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: 12px; - border: none; -} - -.menu-application-button:highlighted { - font-weight: bold; -} - -.menu-application-button-selected { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); - padding: 6px; - border-radius: 12px; - 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: 12px; - background-color: #3a3731; - color: #fbf1c7; -} - -.menu StScrollView.menu-application-button .popup-menu-item { - padding: 0; - spacing: 0; - margin: 0 3px; - border-radius: 12px; - color: #fbf1c7; -} - -.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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.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: 12px; -} - -.menu-category-button-selected { - padding: 6px; -} - -.menu-category-button-hover, .menu-category-button-selected { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); - border-radius: 12px; -} - -.menu-category-button-greyed { - padding: 6px; - color: rgba(251, 241, 199, 0.5); -} - -.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: #fbf1c7; - border-radius: 12px; -} - -.menu-search-entry-icon { - icon-size: 1em; - color: #fbf1c7; -} - -.info-osd { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 16px; - color: rgba(251, 241, 199, 0.7); - background-color: rgba(29, 32, 33, 0.75); -} - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - min-width: 64px; - min-height: 64px; - color: rgba(251, 241, 199, 0.7); - border-radius: 0; - background-color: rgba(29, 32, 33, 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: 12px; - color: #7daea3; -} - -.osd-window .level-bar { - border-radius: 12px; - background-color: #7daea3; -} - -.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(193, 74, 74, 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(251, 241, 199, 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: rgba(251, 241, 199, 0.7); - background-gradient-direction: none; - background-color: rgba(251, 241, 199, 0.15); -} - -.window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:running { - color: rgba(251, 241, 199, 0.7); - background-gradient-direction: none; - background-color: rgba(251, 241, 199, 0.25); - border-color: rgba(251, 241, 199, 0.3); -} - -.window-list-item-box:active:hover, .window-list-item-box:checked:hover, .window-list-item-box:running:hover { - background-color: rgba(251, 241, 199, 0.3); -} - -.window-list-item-box:focus { - color: rgba(251, 241, 199, 0.7); - background-gradient-direction: none; - background-image: radial-gradient(5px 5px 45deg, circle cover, rgba(251, 241, 199, 0.7) 0%, rgba(251, 241, 199, 0.7) 100%); - border-color: #7daea3; - background-color: rgba(251, 241, 199, 0.2); -} - -.window-list-item-box:focus:hover { - background-color: rgba(251, 241, 199, 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: #6c782e; - background-gradient-end: #6c782e; - border-radius: 12px; - box-shadow: none; -} - -.window-list-item-demands-attention { - background-gradient-start: #b47109; - background-gradient-end: #b47109; -} - -.window-list-preview { - padding: 6px; - spacing: 6px; - border: none; - background-color: #282524; - border-radius: 12px; - color: #fbf1c7; - 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(193, 74, 74, 0.5); -} - -.grouped-window-list-thumbnail-menu { - padding: 6px; - margin: 6px; - background-color: #242220; - border-radius: 12px; - background-clip: border-box; - box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35); -} - -.grouped-window-list-thumbnail-menu .item-box { - padding: 6px; - border-radius: 12px; - spacing: 6px; - margin: 1px; -} - -.grouped-window-list-thumbnail-menu .item-box:outlined { - background-color: rgba(251, 241, 199, 0.1); -} - -.grouped-window-list-thumbnail-menu .item-box:hover { - background-color: rgba(251, 241, 199, 0.15); -} - -.grouped-window-list-thumbnail-menu .thumbnail { - width: 256px; -} - -.grouped-window-list-thumbnail-menu .separator { - width: 1px; - background-color: rgba(251, 241, 199, 0.12); -} - -.grouped-window-list-number-label { - z-index: 120; - text-shadow: none; - color: rgba(29, 32, 33, 0.87); - padding: 0; -} - -.grouped-window-list-button-label { - padding-left: 2px; -} - -.grouped-window-list-badge { - border-radius: 256px; - background-color: #7daea3; -} - -.grouped-window-list-item-box { - font-weight: normal; - transition-duration: 100ms; - border: none; - margin: 0; - color: rgba(251, 241, 199, 0.6); - 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: rgba(251, 241, 199, 0.7); - background-gradient-direction: none; - background-color: rgba(251, 241, 199, 0.15); -} - -.grouped-window-list-item-box:active { - color: rgba(251, 241, 199, 0.7); - background-gradient-direction: none; - background-color: transparent; - border-color: rgba(251, 241, 199, 0.3); -} - -.grouped-window-list-item-box:active:hover { - background-color: rgba(251, 241, 199, 0.15); -} - -.grouped-window-list-item-box:focus { - color: rgba(251, 241, 199, 0.7); - background-gradient-direction: none; - background-color: rgba(251, 241, 199, 0.2); - border-color: #7daea3; -} - -.grouped-window-list-item-box:focus:hover { - background-color: rgba(251, 241, 199, 0.3); -} - -.grouped-window-list-item-box .progress { - background-gradient-direction: vertical; - background-gradient-start: #6c782e; - background-gradient-end: #6c782e; - border-radius: 12px; - box-shadow: none; -} - -.grouped-window-list-item-demands-attention { - background-gradient-start: #b47109; - background-gradient-end: #b47109; -} - -.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: 0.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: 12px; - background-color: #3a3731; - color: #fbf1c7; -} - -.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(251, 241, 199, 0.12); -} - -.sound-player > StBoxLayout:first-child StButton:small:active { - background-color: rgba(251, 241, 199, 0.3); -} - -.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 12px 12px; - color: #fbf1c7; - text-shadow: none; -} - -.sound-player-overlay StButton { - width: 16px; - height: 16px; - padding: 8px; - margin: 0 6px 6px; - color: #fbf1c7; - border-radius: 9999px; - border: none; - text-shadow: none; -} - -.sound-player-overlay StButton StIcon { - icon-size: 16px; -} - -.sound-player-overlay StButton:hover { - background-color: rgba(251, 241, 199, 0.12); -} - -.sound-player-overlay StButton:active { - background-color: rgba(251, 241, 199, 0.3); -} - -.sound-player-overlay StButton:insensitive { - opacty: 0.35; - color: rgba(251, 241, 199, 0.5); -} - -.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(3, 3, 3, 0.9); - border-bottom: 1px; - -slider-height: 0.5em; - -slider-background-color: #111313; - -slider-border-color: rgba(0, 0, 0, 0); - -slider-active-background-color: #7daea3; - -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(251, 241, 199, 0.7); - padding: 3px; - padding-top: 4px; - transition-duration: 300; -} - -.workspace-button:outlined, .workspace-button:outlined:hover { - color: #7daea3; -} - -.workspace-button:hover { - color: #9cc2b9; -} - -/* 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 #7daea3; - background-gradient-direction: none; -} - -.workspace-graph .workspace .windows { - -active-window-background: rgba(65, 71, 74, 0.75); - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: rgba(65, 71, 74, 0.75); - -inactive-window-border: rgba(0, 0, 0, 0.8); -} - -.workspace-graph .workspace:active .windows { - -active-window-background: rgba(77, 85, 87, 0.75); - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: rgba(41, 45, 47, 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(251, 241, 199, 0.1); -} - -.panel-launcher:active { - background-color: rgba(251, 241, 199, 0.2); -} - -.launcher { - padding: 2px; - spacing: 2px; - transition-duration: 0.2s; - border-radius: 0; -} - -.launcher:hover { - background-gradient-direction: none; - background-color: rgba(251, 241, 199, 0.1); -} - -.launcher:active { - background-color: rgba(251, 241, 199, 0.2); -} - -.launcher .icon-box { - padding: 2px; -} - -.applet-separator { - padding: 1px 3px; -} - -.applet-separator-line { - width: 1px; - background: rgba(251, 241, 199, 0.12); -} - -.applet-box { - padding: 0 6px; - color: rgba(251, 241, 199, 0.7); - text-shadow: none; - transition-duration: 100ms; - border-radius: 0; -} - -.applet-box.vertical { - padding: 6px 0; -} - -.applet-box:hover { - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); -} - -.applet-box:checked, .applet-box:checked:hover { - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.12); -} - -.applet-box:highlight { - background-image: none; - border-image: none; - background-color: rgba(193, 74, 74, 0.5); -} - -.applet-label { - font-weight: bold; - color: rgba(251, 241, 199, 0.7); -} - -.applet-box:checked .applet-label { - color: rgba(251, 241, 199, 0.7); - text-shadow: none; -} - -.applet-icon { - color: rgba(251, 241, 199, 0.7); - icon-size: 16px; -} - -.applet-box:checked .applet-icon { - color: rgba(251, 241, 199, 0.7); - text-shadow: none; -} - -.user-icon { - width: 32px; - height: 32px; - background-color: transparent; - border: none; - border-radius: 0; -} - -.user-label { - color: #fbf1c7; - font-size: 1em; - font-weight: bold; - margin: 0px; -} - -.desklet { - color: #fbf1c7; -} - -.desklet:highlight { - background-color: rgba(193, 74, 74, 0.5); -} - -.desklet-with-borders { - color: #fbf1c7; - background-color: rgba(22, 24, 25, 0.9); - padding: 12px; - padding-bottom: 16px; -} - -.desklet-with-borders:highlight { - background-color: rgba(193, 74, 74, 0.5); -} - -.desklet-with-borders-and-header { - color: #fbf1c7; - background-color: rgba(22, 24, 25, 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(193, 74, 74, 0.5); -} - -.desklet-header { - color: #fbf1c7; - background-color: rgba(22, 24, 25, 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 #7daea3; - background-color: rgba(125, 174, 163, 0.3); -} - -.photoframe-box { - color: #fbf1c7; - background-color: rgba(22, 24, 25, 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: 0.5em 1em; -} - -.notification-applet-container { - max-height: 9999px; -} - -.tile-preview, -.tile-preview.snap, -.tile-hud, -.tile-hud.snap { - background-color: rgba(125, 174, 163, 0.3); - border: 1px solid #7daea3; -} - -.xkcd-box { - padding: 6px; - border: 0px; - background-color: rgba(0, 0, 0, 0); - border-radius: 0px; -} diff --git a/local/share/themes/Gruvbox-Dark/cinnamon/thumbnail.png b/local/share/themes/Gruvbox-Dark/cinnamon/thumbnail.png deleted file mode 100644 index f97e785b6..000000000 Binary files a/local/share/themes/Gruvbox-Dark/cinnamon/thumbnail.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-arrow-left.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-arrow-left.svg deleted file mode 100644 index ec8b4783d..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-arrow-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-arrow-right.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-arrow-right.svg deleted file mode 100644 index 6fc5556fb..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-arrow-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-today.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-today.svg deleted file mode 100644 index fc3fdf73c..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/calendar-today.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-dark.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-dark.svg deleted file mode 100644 index d8e58fd31..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-dark.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off-active.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off-active.svg deleted file mode 100644 index 9cfdefd9b..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off-active.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off-hover.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off-hover.svg deleted file mode 100644 index ef5123a1a..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off-hover.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off.svg deleted file mode 100644 index b00efa63d..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox.svg deleted file mode 100644 index 0c79c35a3..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/checkbox.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/no-events.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/no-events.svg deleted file mode 100644 index 239177d1b..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/no-events.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/noise-texture.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/noise-texture.svg deleted file mode 100644 index 484f6c874..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/noise-texture.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-off.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-off.svg deleted file mode 100644 index 6cd17d82e..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-off.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-on-dark.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-on-dark.svg deleted file mode 100644 index 11512bf10..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-on-dark.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-on.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-on.svg deleted file mode 100644 index 3a729d459..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/toggle-on.svg +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/view-app-grid.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/assets/view-app-grid.svg deleted file mode 100644 index 7637e035d..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/view-app-grid.svg +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/gnome-shell.css b/local/share/themes/Gruvbox-Dark/gnome-shell/gnome-shell.css deleted file mode 100644 index 4b02b1197..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/gnome-shell.css +++ /dev/null @@ -1,4472 +0,0 @@ -/* 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 */ -.search-statustext, .app-folder-dialog .folder-name-container .folder-name-label, -.app-folder-dialog .folder-name-container .folder-name-entry { - font-weight: 800; - font-size: 20pt; -} - -.message-list .message-list-placeholder, .lg-debug-flags-header { - font-weight: 800; - font-size: 15pt; -} - -.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, .message-list-controls, .world-clocks-button .world-clocks-header, .calendar .calendar-month-label, .lg-extension-name { - 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, .message .message-header .message-header-content .event-time { - font-weight: 400; - font-size: 9pt; -} - -.calendar .calendar-week-number, .calendar .calendar-day-heading { - font-weight: 400; - font-size: 8pt; -} - -.calendar .calendar-day-heading { - font-feature-settings: 'tnum'; -} - -.ripple-pointer-location { - width: 48px; - height: 48px; - border-radius: 24px; - background-color: rgba(219, 233, 230, 0.3); - box-shadow: 0 0 2px 2px #bcd5cf; -} - -.pie-timer { - width: 60px; - height: 60px; - -pie-border-width: 3px; - -pie-border-color: #7daea3; - -pie-background-color: rgba(251, 252, 252, 0.3); -} - -.magnifier-zoom-region { - border: 2px solid #7daea3; -} - -.magnifier-zoom-region.full-screen { - border-width: 0; -} - -.shell-link { - border-radius: 12px; - color: #83b193; -} - -.shell-link:hover { - color: #83b193; - background-color: rgba(131, 177, 147, 0.15); -} - -.shell-link:active { - color: #83b193; - background-color: rgba(131, 177, 147, 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, .quick-settings-system-item .message .message-header .message-expand-button, .message .message-header .quick-settings-system-item .message-expand-button, -.quick-settings-system-item .message .message-header .message-close-button, -.message .message-header .quick-settings-system-item .message-close-button, .hotplug-notification-item, .button { - color: #fbf1c7; - background-color: #282524; - 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, .quick-settings-system-item .message .message-header .message-expand-button:focus, .message .message-header .quick-settings-system-item .message-expand-button:focus, -.quick-settings-system-item .message .message-header .message-close-button:focus, -.message .message-header .quick-settings-system-item .message-close-button:focus, .hotplug-notification-item:focus, .button:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 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, .quick-settings-system-item .message .message-header .message-expand-button:hover, .message .message-header .quick-settings-system-item .message-expand-button:hover, -.quick-settings-system-item .message .message-header .message-close-button:hover, -.message .message-header .quick-settings-system-item .message-close-button:hover, .hotplug-notification-item:hover, .button:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 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, .quick-settings-system-item .message .message-header .message-expand-button:active, .message .message-header .quick-settings-system-item .message-expand-button:active, -.quick-settings-system-item .message .message-header .message-close-button:active, -.message .message-header .quick-settings-system-item .message-close-button:active, .hotplug-notification-item:active, .button:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.2); - 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, .quick-settings-system-item .message .message-header .message-expand-button:insensitive, .message .message-header .quick-settings-system-item .message-expand-button:insensitive, -.quick-settings-system-item .message .message-header .message-close-button:insensitive, -.message .message-header .quick-settings-system-item .message-close-button:insensitive, .hotplug-notification-item:insensitive, .button:insensitive { - color: rgba(251, 241, 199, 0.35); - background-color: #282524; - box-shadow: none !important; -} - -.lg-obj-inspector-button, .candidate-page-button, .modal-dialog-linked-button, .icon-button.flat, .background-app-item .flat.close-button, .message .message-header .flat.message-expand-button, -.message .message-header .flat.message-close-button, .button.flat, .popup-menu .button { - color: #fbf1c7; - background-color: transparent; - box-shadow: none !important; -} - -.lg-obj-inspector-button:focus, .candidate-page-button:focus, .modal-dialog-linked-button:focus, .icon-button.flat:focus, .background-app-item .flat.close-button:focus, .message .message-header .flat.message-expand-button:focus, -.message .message-header .flat.message-close-button:focus, .button.flat:focus, .popup-menu .button:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.08); - box-shadow: none !important; -} - -.lg-obj-inspector-button:hover, .candidate-page-button:hover, .modal-dialog-linked-button:hover, .icon-button.flat:hover, .background-app-item .flat.close-button:hover, .message .message-header .flat.message-expand-button:hover, -.message .message-header .flat.message-close-button:hover, .button.flat:hover, .popup-menu .button:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.lg-obj-inspector-button:active, .candidate-page-button:active, .modal-dialog-linked-button:active, .icon-button.flat:active, .background-app-item .flat.close-button:active, .message .message-header .flat.message-expand-button:active, -.message .message-header .flat.message-close-button:active, .button.flat:active, .popup-menu .button:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.2); - box-shadow: none !important; -} - -.lg-obj-inspector-button:insensitive, .candidate-page-button:insensitive, .modal-dialog-linked-button:insensitive, .icon-button.flat:insensitive, .background-app-item .flat.close-button:insensitive, .message .message-header .flat.message-expand-button:insensitive, -.message .message-header .flat.message-close-button:insensitive, .button.flat:insensitive, .popup-menu .button:insensitive { - background-color: transparent; - color: rgba(251, 241, 199, 0.35); - box-shadow: none !important; -} - -.icon-button.default, .background-app-item .default.close-button, .message .message-header .default.message-expand-button, -.message .message-header .default.message-close-button, .button.default { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; - box-shadow: none !important; -} - -.icon-button.default:focus, .background-app-item .default.close-button:focus, .message .message-header .default.message-expand-button:focus, -.message .message-header .default.message-close-button:focus, .button.default:focus { - color: rgba(29, 32, 33, 0.87); - background-color: rgba(29, 32, 33, 0.08); - box-shadow: none !important; -} - -.icon-button.default:hover, .background-app-item .default.close-button:hover, .message .message-header .default.message-expand-button:hover, -.message .message-header .default.message-close-button:hover, .button.default:hover { - color: rgba(29, 32, 33, 0.87); - background-color: rgba(29, 32, 33, 0.12); - box-shadow: none !important; -} - -.icon-button.default:insensitive, .background-app-item .default.close-button:insensitive, .message .message-header .default.message-expand-button:insensitive, -.message .message-header .default.message-close-button:insensitive, .button.default:insensitive { - color: rgba(29, 32, 33, 0.35); - background-color: #7daea3; - box-shadow: none !important; -} - -.icon-button.default:active, .background-app-item .default.close-button:active, .message .message-header .default.message-expand-button:active, -.message .message-header .default.message-close-button:active, .button.default:active { - color: rgba(29, 32, 33, 0.87); - background-color: rgba(29, 32, 33, 0.2); - box-shadow: none !important; -} - -.button { - min-height: 20px; - padding: 6px 12px; - border-radius: 12px; - border: none; -} - -.icon-button, .background-app-item .close-button, .message .message-header .message-expand-button, -.message .message-header .message-close-button { - border-radius: 9999px; - padding: 6px; - min-height: 1.091em; -} - -.icon-button StIcon, .background-app-item .close-button StIcon, .message .message-header .message-expand-button StIcon, -.message .message-header .message-close-button StIcon { - icon-size: 1.091em; - -st-icon-style: symbolic; -} - -.screenshot-ui-show-pointer-button, .screenshot-ui-type-button { - color: #fbf1c7; - background-color: transparent; - box-shadow: none !important; -} - -.screenshot-ui-show-pointer-button:insensitive, .screenshot-ui-type-button:insensitive { - color: rgba(251, 241, 199, 0.35); - background-color: #1d2021; - box-shadow: none !important; -} - -.screenshot-ui-show-pointer-button:focus, .screenshot-ui-type-button:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.08); - box-shadow: none !important; -} - -.screenshot-ui-show-pointer-button:hover, .screenshot-ui-type-button:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none !important; -} - -.screenshot-ui-show-pointer-button:active, .screenshot-ui-type-button:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.2); - 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 { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; - box-shadow: none !important; -} - -/* Check Boxes */ -.check-box StBoxLayout { - spacing: 0.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-dark.svg"); -} - -/* Activities Ripple */ -.ripple-box { - background-color: rgba(125, 174, 163, 0.35); - box-shadow: 0 0 2px 2px #bcd5cf; - width: 52px; - height: 52px; - border-radius: 0 0 52px 0; -} - -.ripple-box:rtl { - border-radius: 0 0 0 52px; -} - -/* Modal Dialogs */ -.candidate-popup-content, .modal-dialog { - background-color: #242220; - border-radius: 21px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35); -} - -.modal-dialog-linked-button:last-child { - color: #1d2021; - background-color: #7daea3; -} - -.modal-dialog-linked-button:hover:last-child { - color: #1d2021; - background-color: #99c0b7; -} - -.modal-dialog-linked-button:active:last-child { - color: #1d2021; - background-color: #6da498; -} - -.modal-dialog-linked-button:insensitive:last-child { - color: #1d2021; - background-color: rgba(125, 174, 163, 0.05); -} - -.headline { - font-size: 13pt; -} - -.modal-dialog { - color: rgba(251, 241, 199, 0.7); - padding: 0 6px 6px 6px; -} - -.modal-dialog-linked-button { - min-height: 32px !important; - padding: 6px !important; - margin: 3px !important; - border: none !important; - border-radius: 12px; -} - -.modal-dialog-linked-button:first-child { - background-color: rgba(251, 241, 199, 0.04); -} - -.modal-dialog-linked-button:first-child:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.08); - box-shadow: none !important; -} - -.modal-dialog-linked-button:first-child:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.modal-dialog-linked-button:first-child:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.2); - 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: #b47109; -} - -.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(251, 241, 199, 0.7); - font-size: 11pt; -} - -.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(251, 241, 199, 0.7); - font-size: 11pt; -} - -.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: 11pt; - margin: 6px; -} - -.prompt-dialog-error-label { - color: #c14a4a; -} - -.prompt-dialog-info-label, -.prompt-dialog-null-label { - color: rgba(251, 241, 199, 0.5); -} - -.polkit-dialog-user-layout { - text-align: center; - spacing: 8px; - margin-bottom: 6px; -} - -.polkit-dialog-user-layout .polkit-dialog-user-root-label { - color: #b47109; -} - -.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(251, 241, 199, 0.12); - border-radius: 12px; -} - -.audio-selection-device:hover, .audio-selection-device:focus { - background-color: rgba(251, 241, 199, 0.12); -} - -.audio-selection-device:active { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.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: 20px; - padding: 6px 12px; - margin: 2px; - border-radius: 12px; - color: #fbf1c7; - caret-color: #fbf1c7; - selection-background-color: #7daea3; - selected-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); - border: 2px solid transparent !important; - box-shadow: none !important; -} - -StEntry:hover, -.popup-menu .search-entry:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); - border: 2px solid rgba(251, 241, 199, 0.3) !important; - box-shadow: none !important; -} - -StEntry:focus, -.popup-menu .search-entry:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); - border: 2px solid #7daea3 !important; - box-shadow: none !important; -} - -StEntry:insensitive, -.popup-menu .search-entry:insensitive { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.35); - box-shadow: none !important; -} - -StEntry StIcon.capslock-warning, -.popup-menu .search-entry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #b47109; - padding: 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(251, 241, 199, 0.5); -} - -.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 12px; -} - -.hotplug-notification-item:last-child { - border-right-width: 0; - border-radius: 0 0 12px 0; -} - -.hotplug-notification-item:first-child:last-child { - border-radius: 0 0 12px 12px; -} - -.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 { - color: rgba(251, 241, 199, 0.7); - box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15); - border: none; - margin: 3px 8px; - padding: 6px; - spacing: 6px; - border-radius: 12px; -} - -.candidate-index { - padding: 0 0.5em 0 0; - color: rgba(251, 241, 199, 0.7); -} - -.candidate-box:selected .candidate-index { - color: rgba(29, 32, 33, 0.6); -} - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - margin-right: 2px; - border-radius: 6px; - color: rgba(251, 241, 199, 0.7); -} - -.candidate-box:hover { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.candidate-box:active { - background-color: rgba(251, 241, 199, 0.3); - color: #fbf1c7; -} - -.candidate-box:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.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; - border-radius: 6px; -} - -.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: 17pt; - font-weight: bold; - min-height: 1.2em; - min-width: 1.2em; - padding: 0 !important; - border-radius: 15px; - border: none; - color: rgba(251, 241, 199, 0.7); - background-color: #707070; - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.85); -} - -.keyboard-key:focus, .keyboard-key:hover { - color: #fbf1c7; - background-color: #656565; -} - -.keyboard-key:checked, .keyboard-key:active { - color: #fbf1c7; - background-color: #717171; -} - -.keyboard-key:grayed { - background-color: #4b4b4b; - color: rgba(251, 241, 199, 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: #fbf1c7; - background-color: #585858; -} - -.keyboard-key.default-key:checked, .keyboard-key.default-key:active { - color: #fbf1c7; - background-color: #6a6a6a; -} - -.keyboard-key.enter-key { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -.keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { - color: rgba(29, 32, 33, 0.87); - background-color: #8db8ae; -} - -.keyboard-key.enter-key:checked, .keyboard-key.enter-key:active { - color: rgba(29, 32, 33, 0.87); - background-color: #5f998c; -} - -.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: #7daea3; -} - -.keyboard-key StIcon { - icon-size: 1.125em; -} - -.keyboard-subkeys { - color: inherit; - -arrow-border-radius: 18px; - -arrow-background-color: #33322e; - -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: #7daea3; -} - -.word-suggestions { - font-size: 14pt; - spacing: 12px; - min-height: 20pt; -} - -/* Login Dialog */ -#lockDialogGroup { - background-color: #1d2021; -} - -.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: #7daea3; - selected-color: rgba(29, 32, 33, 0.87); - padding: 4px 8px; - min-height: 26px; - border-radius: 9999px; - caret-color: rgba(29, 32, 33, 0.87); - background-color: rgba(251, 241, 199, 0.04); - border-radius: 0; - border: none !important; - box-shadow: inset 0 -1px rgba(29, 32, 33, 0.15) !important; - color: rgba(29, 32, 33, 0.87); -} - -.login-dialog StEntry:focus, -.unlock-dialog StEntry:focus { - border: none !important; - background-color: rgba(251, 241, 199, 0.04); - box-shadow: inset 0 -2px #7daea3 !important; - color: rgba(29, 32, 33, 0.87); -} - -.login-dialog StEntry:insensitive, -.unlock-dialog StEntry:insensitive { - border: none !important; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(29, 32, 33, 0.35); -} - -.login-dialog StEntry StLabel.hint-text, -.unlock-dialog StEntry StLabel.hint-text { - color: rgba(29, 32, 33, 0.38); -} - -.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: rgba(29, 32, 33, 0.87); - 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: rgba(29, 32, 33, 0.87); - background-color: rgba(251, 241, 199, 0.12); -} - -.login-dialog .modal-dialog-button:active, -.unlock-dialog .modal-dialog-button:active { - color: rgba(29, 32, 33, 0.87); - background-color: rgba(251, 241, 199, 0.2); - box-shadow: none !important; -} - -.login-dialog .modal-dialog-button:insensitive, -.unlock-dialog .modal-dialog-button:insensitive { - background-color: transparent; - color: rgba(29, 32, 33, 0.35); - box-shadow: none !important; -} - -.login-dialog .modal-dialog-button:default, -.unlock-dialog .modal-dialog-button:default { - color: rgba(29, 32, 33, 0.87); - background-color: #282524; - 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: rgba(29, 32, 33, 0.87); - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none !important; -} - -.login-dialog .modal-dialog-button:default:active, -.unlock-dialog .modal-dialog-button:default:active { - color: rgba(29, 32, 33, 0.87); - background-color: rgba(251, 241, 199, 0.2); - box-shadow: none !important; -} - -.login-dialog .modal-dialog-button:default:insensitive, -.unlock-dialog .modal-dialog-button:default:insensitive { - color: rgba(29, 32, 33, 0.35); - background-color: #282524; - 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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.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(251, 241, 199, 0.7); -} - -.login-dialog-logo-bin { - padding: 24px 0px; -} - -.login-dialog-banner { - color: rgba(251, 241, 199, 0.7); -} - -.login-dialog-button-box { - spacing: 5px; -} - -.login-dialog-message { - text-align: center; -} - -.login-dialog-message-warning { - color: #b47109; -} - -.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: #fbf1c7; -} - -.login-dialog-not-listed-label { - font-size: 1em; - font-weight: bold; - color: rgba(251, 241, 199, 0.7); - padding-top: 1em; -} - -.login-dialog-not-listed-label:hover { - color: rgba(251, 241, 199, 0.7); -} - -.login-dialog-not-listed-label:focus { - background-color: rgba(251, 241, 199, 0.12); -} - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; -} - -.login-dialog-user-list { - spacing: 12px; - padding: 0.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(251, 241, 199, 0.3); - color: rgba(251, 241, 199, 0.7); -} - -.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #7daea3; -} - -.login-dialog-user-list-item { - border-radius: 18px; - padding: 6px; - color: rgba(251, 241, 199, 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(251, 241, 199, 0.04) !important; -} - -.login-dialog-user-list-item:hover, .login-dialog-user-list-item:focus:hover { - background-color: rgba(251, 241, 199, 0.12) !important; - color: rgba(251, 241, 199, 0.7); -} - -.login-dialog-user-list-item:active, .login-dialog-user-list-item:focus:active { - background-color: rgba(251, 241, 199, 0.3) !important; - color: rgba(251, 241, 199, 0.7); -} - -.login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 6px 0 0 0; - background-color: rgba(251, 241, 199, 0.12) !important; -} - -.user-widget-label { - color: rgba(251, 241, 199, 0.7); -} - -.user-widget.horizontal .user-widget-label { - font-size: 14pt; - 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: 17pt; - 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(251, 241, 199, 0.7); - font-size: 13pt; - padding-top: 1em; -} - -/* Looking Glass */ -#LookingGlassDialog { - background-color: #282524; - padding: 0; - spacing: 6px; - margin: 6px; - border-radius: 20px; - box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25); - color: #fbf1c7; -} - -#LookingGlassDialog > #Toolbar { - padding: 0 6px; - border: none; - border-radius: 20px 20px 0 0; - background-color: rgba(251, 241, 199, 0.04); - box-shadow: inset 0 -1px 0 rgba(251, 241, 199, 0.12); - spacing: 6px; -} - -#LookingGlassDialog .labels { - spacing: 6px; -} - -#LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 12px; - font-weight: bold; - color: rgba(251, 241, 199, 0.5); - padding-left: 16px; - padding-right: 16px; - min-height: 32px; - padding: 3px 30px; - transition-duration: 100ms; - border: none; - background-color: transparent; - border-radius: 0; -} - -#LookingGlassDialog .notebook-tab:hover { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; - text-shadow: none; -} - -#LookingGlassDialog .notebook-tab:selected { - border-color: transparent; - background-color: rgba(251, 241, 199, 0.12); - box-shadow: inset 0 -2px 0px #fbf1c7; - color: #fbf1c7; - text-shadow: none; -} - -#LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 6px; - padding: 6px; -} - -#LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 6px; - padding: 6px; -} - -.lg-dialog StEntry { - min-height: 22px; - selection-background-color: #7daea3; - selected-color: rgba(29, 32, 33, 0.87); -} - -.lg-dialog .shell-link { - color: #83b193; -} - -.lg-dialog .shell-link:hover { - color: #a2c5ae; -} - -.lg-dialog .shell-link:active { - color: #649d78; -} - -.lg-dialog .actor-link { - color: rgba(251, 241, 199, 0.5); -} - -.lg-dialog .actor-link:hover { - color: #fbf1c7; -} - -.lg-dialog .actor-link:active { - color: rgba(251, 241, 199, 0.7); -} - -.lg-dialog .actor-link StIcon { - icon-size: 12px; -} - -.lg-completions-text { - font-size: 0.9em; - font-style: italic; - color: rgba(251, 241, 199, 0.7); -} - -.lg-obj-inspector-title { - spacing: 6px; - color: rgba(251, 241, 199, 0.7); -} - -.lg-obj-inspector-button { - padding: 0 16px; - border: none; - border-radius: 12px; -} - -.lg-obj-inspector-button:hover { - border: none; -} - -#lookingGlassExtensions { - padding: 6px; - color: rgba(251, 241, 199, 0.7); -} - -.lg-extensions-list { - padding: 6px; - spacing: 6px; - color: rgba(251, 241, 199, 0.7); -} - -.lg-extension { - border: none; - border-radius: 12px; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.7); - padding: 12px; -} - -.lg-extension:hover { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.lg-extension:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.3); -} - -.lg-extension-meta { - spacing: 6px; - color: rgba(251, 241, 199, 0.7); -} - -#LookingGlassPropertyInspector { - color: rgba(251, 241, 199, 0.7); - background: #282524; - border: none; - border-radius: 12px; - padding: 6px; - margin: 5px 8px 11px; - box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25); -} - -.lg-debug-flag-button { - color: rgba(251, 241, 199, 0.7); -} - -.lg-debug-flag-button StLabel { - padding: 6px, 12px; -} - -.lg-debug-flag-button:hover { - color: #fbf1c7; -} - -.lg-debug-flag-button:active { - color: #fbf1c7; -} - -.lg-debug-flags-header { - padding-top: 12px; - padding: 6px; -} - -.select-area-rubberband { - background-color: rgba(125, 174, 163, 0.3); - border: 1px solid #7daea3; - border-radius: 12px; -} - -.user-icon { - background-size: contain; - color: rgba(251, 241, 199, 0.7); - border-radius: 9999px; - border: none; - box-shadow: none; - icon-size: 64px; -} - -.modal-dialog .user-icon { - box-shadow: none; -} - -.user-icon:hover { - color: #fbf1c7; -} - -.user-icon StIcon { - background-color: #fbf1c7; - border-radius: 9999px; - padding: 12px; - width: 40px; - height: 40px; -} - -.user-icon.user-avatar { - border: 2px solid #7daea3; -} - -.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: 11pt; - color: #b47109; -} - -/* 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: #fbf1c7; -} - -.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(251, 241, 199, 0.04); - border-radius: 12px; -} - -.nm-dialog-item { - font-size: 12pt; - border-bottom: none; - padding: 12px; - spacing: 0px; -} - -.nm-dialog-item:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.nm-dialog-item:hover, .nm-dialog-item:focus { - background-color: rgba(251, 241, 199, 0.12); -} - -.nm-dialog-item:active { - background-color: rgba(251, 241, 199, 0.3); -} - -.nm-dialog-icon { - icon-size: 16px; -} - -.nm-dialog-icons { - spacing: 12px; -} - -.no-networks-label { - color: rgba(251, 241, 199, 0.5); -} - -.no-networks-box { - spacing: 6px; -} - -/* OSD */ -.screenshot-ui-panel, .workspace-switcher-container, .switcher-list, .resize-popup, .osd-window { - color: rgba(251, 241, 199, 0.7); - background-color: #1d2021; - border: none; - box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25); - margin: 5px 8px 11px; - border-radius: 18px; - 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(251, 241, 199, 0.12); - color: #fbf1c7; - -barlevel-height: 2px; - -barlevel-background-color: rgba(251, 241, 199, 0.12); - -barlevel-active-background-color: #7daea3; - -barlevel-overdrive-color: #c14a4a; - -barlevel-overdrive-separator-width: 2px; - -barlevel-border-width: 0; - -barlevel-border-color: rgba(251, 241, 199, 0.12); -} - -.osd-window .level-bar { - background-color: white; - border-radius: 2px; -} - -.pad-osd-window { - padding: 32px; - background-color: #1d2021; -} - -.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(251, 241, 199, 0.12); -} - -#overview StScrollBar StButton#vhandle, -#overview StScrollBar StButton#hhandle { - background-color: rgba(251, 241, 199, 0.5); -} - -#overview StScrollBar StButton#vhandle:hover, -#overview StScrollBar StButton#hhandle:hover { - background-color: rgba(251, 241, 199, 0.7); -} - -#overview StScrollBar StButton#vhandle:active, -#overview StScrollBar StButton#hhandle:active { - background-color: #fbf1c7; -} - -#overview { - spacing: 24px; -} - -.overview-controls { - padding-bottom: 30px; -} - -/* Top Bar */ -#panel { - color: rgba(251, 241, 199, 0.7); - font-weight: bold; - font-feature-settings: 'tnum'; - font-size: 12pt; - transition-duration: 250ms; - box-shadow: none; - border: none; - height: 35px; - background-color: rgba(29, 32, 33, 0.85); -} - -#panel .panel-corner { - -panel-corner-radius: 0; - -panel-corner-background-color: rgba(29, 32, 33, 0.6); - -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: #fbf1c7; - transition-duration: 150ms; - border-radius: 12px; - text-shadow: none; - box-shadow: none; - border: 3px solid transparent; -} - -#panel .panel-button.clock-display { - box-shadow: none; -} - -#panel .panel-button.clock-display .clock { - transition-duration: 150ms; - border-radius: 12px; -} - -#panel .panel-button:hover { - color: #7daea3; - background-color: transparent; - box-shadow: inset 0 0 0 1000px rgba(58, 59, 55, 0.624); -} - -#panel .panel-button:hover.clock-display { - box-shadow: none; - color: rgba(251, 241, 199, 0.7); -} - -#panel .panel-button:hover.clock-display .clock { - color: #7daea3; - box-shadow: inset 0 0 0 1000px rgba(58, 59, 55, 0.624); -} - -#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: #7daea3; - background-color: transparent; - box-shadow: inset 0 0 0 1000px rgba(83, 82, 73, 0.648); -} - -#panel .panel-button:active.clock-display, #panel .panel-button:overview.clock-display, #panel .panel-button:focus.clock-display, #panel .panel-button:checked.clock-display { - box-shadow: none; - color: rgba(251, 241, 199, 0.7); -} - -#panel .panel-button:active.clock-display .clock, #panel .panel-button:overview.clock-display .clock, #panel .panel-button:focus.clock-display .clock, #panel .panel-button:checked.clock-display .clock { - color: #7daea3; - box-shadow: inset 0 0 0 1000px rgba(83, 82, 73, 0.648); -} - -.unlock-screen #panel .panel-button, .login-screen #panel .panel-button, .lock-screen #panel .panel-button { - color: #fbf1c7; -} - -.unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, .login-screen #panel .panel-button:focus, .login-screen #panel .panel-button:hover, .login-screen #panel .panel-button:active, .lock-screen #panel .panel-button:focus, .lock-screen #panel .panel-button:hover, .lock-screen #panel .panel-button:active { - color: #fbf1c7; -} - -#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 .panel-button#panelActivities { - -natural-hpadding: 18px; -} - -#panel .panel-button#panelActivities StBoxLayout { - padding: 0 3px; - spacing: 6px; -} - -#panel .panel-button#panelActivities .workspace-dot { - border-radius: 9999px; - min-width: 8px; - min-height: 8px; - background-color: #fbf1c7; -} - -#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; - box-shadow: none; - border: 2px solid transparent; -} - -#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(251, 241, 199, 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: #fbf1c7; - background-color: transparent; - box-shadow: inset 0 0 0 1000px rgba(251, 241, 199, 0.12); -} - -#panel:overview .panel-button:hover.clock-display, #panel.unlock-screen .panel-button:hover.clock-display, #panel.login-screen .panel-button:hover.clock-display, #panel.lock-screen .panel-button:hover.clock-display { - box-shadow: none; - color: #fbf1c7; -} - -#panel:overview .panel-button:hover.clock-display .clock, #panel.unlock-screen .panel-button:hover.clock-display .clock, #panel.login-screen .panel-button:hover.clock-display .clock, #panel.lock-screen .panel-button:hover.clock-display .clock { - color: #fbf1c7; - box-shadow: inset 0 0 0 1000px rgba(251, 241, 199, 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: #fbf1c7; - background-color: transparent; - box-shadow: inset 0 0 0 1000px rgba(251, 241, 199, 0.2); -} - -#panel:overview .panel-button:active.clock-display, #panel:overview .panel-button:overview.clock-display, #panel:overview .panel-button:focus.clock-display, #panel:overview .panel-button:checked.clock-display, #panel.unlock-screen .panel-button:active.clock-display, #panel.unlock-screen .panel-button:overview.clock-display, #panel.unlock-screen .panel-button:focus.clock-display, #panel.unlock-screen .panel-button:checked.clock-display, #panel.login-screen .panel-button:active.clock-display, #panel.login-screen .panel-button:overview.clock-display, #panel.login-screen .panel-button:focus.clock-display, #panel.login-screen .panel-button:checked.clock-display, #panel.lock-screen .panel-button:active.clock-display, #panel.lock-screen .panel-button:overview.clock-display, #panel.lock-screen .panel-button:focus.clock-display, #panel.lock-screen .panel-button:checked.clock-display { - box-shadow: none; - color: #fbf1c7; -} - -#panel:overview .panel-button:active.clock-display .clock, #panel:overview .panel-button:overview.clock-display .clock, #panel:overview .panel-button:focus.clock-display .clock, #panel:overview .panel-button:checked.clock-display .clock, #panel.unlock-screen .panel-button:active.clock-display .clock, #panel.unlock-screen .panel-button:overview.clock-display .clock, #panel.unlock-screen .panel-button:focus.clock-display .clock, #panel.unlock-screen .panel-button:checked.clock-display .clock, #panel.login-screen .panel-button:active.clock-display .clock, #panel.login-screen .panel-button:overview.clock-display .clock, #panel.login-screen .panel-button:focus.clock-display .clock, #panel.login-screen .panel-button:checked.clock-display .clock, #panel.lock-screen .panel-button:active.clock-display .clock, #panel.lock-screen .panel-button:overview.clock-display .clock, #panel.lock-screen .panel-button:focus.clock-display .clock, #panel.lock-screen .panel-button:checked.clock-display .clock { - box-shadow: inset 0 0 0 1000px rgba(251, 241, 199, 0.2); - color: #fbf1c7; -} - -#panel:overview .panel-button#panelActivities .workspace-dot, #panel.unlock-screen .panel-button#panelActivities .workspace-dot, #panel.login-screen .panel-button#panelActivities .workspace-dot, #panel.lock-screen .panel-button#panelActivities .workspace-dot { - background-color: #fbf1c7; -} - -#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_status_keyboard_InputSourceIndicator.panel-button, -#panel Gjs_appindicatorsupport_rgcjonas_gmail_com_indicatorStatusIcon_IndicatorStatusIcon.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: #b47109; -} - -/* Popovers/Menus */ -.popup-menu-boxpointer { - -arrow-border-radius: 18px; - -arrow-background-color: transparent; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 12px; - -arrow-rise: 0; - -arrow-box-shadow: none; - background: transparent; -} - -.popup-menu { - min-width: 12em; - color: rgba(251, 241, 199, 0.7) !important; - padding: 0; - font-weight: normal; - border-radius: 18px; - box-shadow: none; - margin: 6px 6px 8px; - font-size: 11pt; -} - -.popup-menu .popup-menu-content { - padding: 6px; - background-color: #1d2021; - border-radius: 18px; - margin: 0; - box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.25); - border: none; - font-weight: normal; -} - -.popup-menu .popup-menu-item { - spacing: 6px; - color: rgba(251, 241, 199, 0.7) !important; - text-shadow: none; - border-radius: 12px; - 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: #fbf1c7 !important; - background-color: rgba(251, 241, 199, 0.12) !important; - border-radius: 12px 12px 0 0 !important; -} - -.popup-menu .popup-menu-item:checked:focus, .popup-menu .popup-menu-item:checked:hover, .popup-menu .popup-menu-item:checked.selected { - color: #fbf1c7 !important; - background-color: alpha(currentColor, 0.08) !important; -} - -.popup-menu .popup-menu-item:checked:active { - color: #fbf1c7 !important; - background-color: alpha(currentColor, 0.12) !important; -} - -.popup-menu .popup-menu-item:checked:insensitive { - color: rgba(251, 241, 199, 0.32) !important; -} - -.popup-menu .popup-menu-item:focus, .popup-menu .popup-menu-item:hover, .popup-menu .popup-menu-item.selected { - color: #7daea3 !important; - background-color: rgba(251, 241, 199, 0.12) !important; - transition-duration: 0; -} - -.popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected:active { - color: #7daea3 !important; - background-color: rgba(251, 241, 199, 0.3) !important; -} - -.popup-menu .popup-menu-item:insensitive { - color: rgba(251, 241, 199, 0.32) !important; -} - -.popup-menu .popup-sub-menu { - background-color: rgba(251, 241, 199, 0.12) !important; - color: rgba(251, 241, 199, 0.7) !important; - border: none; - box-shadow: none; - margin: 0; - border-radius: 0 0 12px 12px !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: #fbf1c7 !important; - background-color: rgba(251, 241, 199, 0.12) !important; -} - -.popup-menu .popup-sub-menu .popup-menu-item:active, .popup-menu .popup-sub-menu .popup-menu-item.selected:active { - color: #fbf1c7 !important; - background-color: rgba(251, 241, 199, 0.3) !important; -} - -.popup-menu .popup-sub-menu .popup-menu-item:insensitive { - color: rgba(251, 241, 199, 0.32) !important; -} - -.popup-menu .popup-inactive-menu-item { - color: rgba(251, 241, 199, 0.7) !important; -} - -.popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(251, 241, 199, 0.32) !important; -} - -.popup-menu.panel-menu { - -boxpointer-gap: 4px; - margin-bottom: 1.75em; -} - -.popup-menu-arrow, -.popup-menu-icon { - icon-size: 16px; -} - -.popup-ornamented-menu-item:ltr { - padding-left: 6px; -} - -.popup-ornamented-menu-item:rtl { - padding-right: 6px; -} - -.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: #1d2021; - color: #fbf1c7; - border-radius: 18px; -} - -.unlock-dialog-notifications-container .notification.critical, -.unlock-dialog-notifications-container .unlock-dialog-notification-source.critical { - background-color: #303537; -} - -.unlock-dialog-notification-label { - padding: 0px 0px 0px 12px; -} - -.unlock-dialog-notification-count-text { - weight: bold; - padding: 0 6px; - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; - 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(29, 32, 33, 0.3); -} - -#unlockDialogNotifications StButton#vhandle:hover, #unlockDialogNotifications StButton#vhandle:focus, -#unlockDialogNotifications StButton#hhandle:hover, -#unlockDialogNotifications StButton#hhandle:focus { - background-color: rgba(29, 32, 33, 0.5); -} - -#unlockDialogNotifications StButton#vhandle:active, -#unlockDialogNotifications StButton#hhandle:active { - background-color: rgba(125, 174, 163, 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(251, 241, 199, 0.12); - margin: 3px; -} - -StScrollBar StButton#vhandle, -StScrollBar StButton#hhandle { - border-radius: 9999px; - background-color: rgba(251, 241, 199, 0.5); - border: 3px solid transparent; - margin: 3px; -} - -StScrollBar StButton#vhandle:hover, -StScrollBar StButton#hhandle:hover { - background-color: rgba(251, 241, 199, 0.7); -} - -StScrollBar StButton#vhandle:active, -StScrollBar StButton#hhandle:active { - background-color: #fbf1c7; -} - - -.search-entry { - width: 320px; - min-height: 32px; - padding: 0 12px; - color: rgba(251, 241, 199, 0.7); - transition-duration: 150ms; - border-radius: 12px; - caret-color: #fbf1c7; - selection-background-color: rgba(251, 241, 199, 0.12); - selected-color: rgba(29, 32, 33, 0.87) !important; - color: #fbf1c7; - background-color: #282524; - border: 2px solid transparent !important; - box-shadow: none !important; -} - - -.search-entry:hover { - color: #fbf1c7; - background-color: #282524; - border: 2px solid rgba(251, 241, 199, 0.3) !important; - box-shadow: none !important; -} - - -.search-entry:focus { - color: #fbf1c7; - background-color: #282524; - border: 2px solid #7daea3 !important; - box-shadow: none !important; -} - - -.search-entry .search-entry-icon { - icon-size: 16px; - padding: 0; - color: rgba(251, 241, 199, 0.32); -} - - -.search-entry:hover .search-entry-icon, -.search-entry:focus .search-entry-icon { - color: rgba(251, 241, 199, 0.7); -} - - -.search-entry:insensitive { - border: none; - color: rgba(251, 241, 199, 0.32); -} - - -.search-entry StLabel.hint-text { - color: rgba(251, 241, 199, 0.5); -} - -/* Slider */ -.slider { - height: 20px; - color: #282524; - -slider-height: 2px; - -slider-background-color: rgba(251, 241, 199, 0.3); - -slider-border-color: #7daea3; - -slider-active-background-color: #7daea3; - -slider-active-border-color: #7daea3; - -slider-border-width: 2px; - -slider-handle-radius: 7px; - -slider-handle-border-width: 2px; - -slider-handle-border-color: #7daea3; - -barlevel-height: 15px; - -barlevel-background-color: rgba(251, 241, 199, 0.3); - -barlevel-border-color: transparent; - -barlevel-active-background-color: #7daea3; - -barlevel-active-border-color: transparent; - -barlevel-overdrive-color: #c14a4a; - -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: 12px; - border: 1px solid transparent; - background-color: transparent; -} - -.switcher-list .item-box:outlined { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.switcher-list .item-box:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.switcher-list .thumbnail-box { - padding: 2px; - spacing: 6px; -} - -.switcher-list .thumbnail { - width: 256px; -} - -.switcher-list .separator { - width: 1px; - background: rgba(251, 241, 199, 0.12); -} - -.switcher-list .switcher-list-item-container { - spacing: 12px; -} - -.switcher-arrow { - border-color: rgba(0, 0, 0, 0); - color: rgba(251, 241, 199, 0.5); -} - -.switcher-arrow:highlighted { - color: #fbf1c7; -} - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; -} - -.cycler-highlight { - border: 5px solid #7daea3; -} - -/* Switches */ -.toggle-switch { - width: 46px; - height: 24px; - background-size: contain; -} - -.toggle-switch, .popup-sub-menu .toggle-switch { - background-image: url("assets/toggle-off.svg"); -} - -.toggle-switch:checked, .popup-sub-menu .toggle-switch:checked { - background-image: url("assets/toggle-on-dark.svg"); -} - -/* Tiled window previews */ -.tile-preview { - background-color: rgba(125, 174, 163, 0.3); - border: 1px solid #7daea3; -} - -.tile-preview-left.on-primary { - border-radius: 13px 0 0 0; -} - -.tile-preview-right.on-primary { - border-radius: 0 13px 0 0; -} - -.tile-preview-left.tile-preview-right.on-primary { - border-radius: 13px 13px 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(251, 241, 199, 0.12); - border-radius: 12px; -} - -.ws-switcher-active-up, -.ws-switcher-active-down, -.ws-switcher-active-left, -.ws-switcher-active-right { - height: 52px; - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - border-radius: 15px; - border: none; -} - -/* App Icons */ -.icon-grid { - row-spacing: 12px; - column-spacing: 12px; - max-row-spacing: 36px; - max-column-spacing: 36px; - page-padding-top: 24px; - page-padding-bottom: 24px; - page-padding-left: 18px; - page-padding-right: 18px; -} - -.overview-tile, .grid-search-result { - color: rgba(251, 241, 199, 0.7); - border-radius: 30px; - padding: 15px; - border: none; - transition-duration: 100ms; - text-align: center; - background-color: transparent; -} - -.overview-tile:hover, .grid-search-result:hover, .overview-tile:focus, .grid-search-result:focus, .overview-tile:selected, .grid-search-result:selected { - color: #fbf1c7; - background-color: rgba(125, 174, 163, 0.3); - border-image: none; - background-image: none; -} - -.overview-tile:active, .grid-search-result:active, .overview-tile:checked, .grid-search-result:checked { - color: #fbf1c7; - background-color: rgba(125, 174, 163, 0.6); - box-shadow: none; -} - -.app-folder { - background-color: rgba(125, 174, 163, 0.3); - border-radius: 30px; - color: rgba(251, 241, 199, 0.7); -} - -.app-folder .overview-icon { - background-color: transparent; - border-radius: 30px; -} - -.app-folder:hover { - background-color: rgba(125, 174, 163, 0.6); - color: #fbf1c7; -} - -.app-folder:active { - background-color: rgba(251, 241, 199, 0.3); - color: #fbf1c7; -} - -.app-grid-running-dot { - width: 6px; - height: 3px; - border-radius: 2px; - background-color: rgba(251, 241, 199, 0.3); - margin-bottom: 0; -} - -StWidget.focused .app-grid-running-dot { - width: 24px; - background-color: #fbf1c7 !important; -} - -.app-folder-dialog-container { - padding-top: 32px; -} - -.app-folder-dialog { - width: 720px; - height: 720px; - border-radius: 54px; - padding: 12px; - box-shadow: none; - border: none; - background-color: #1d2021; -} - -.app-folder-dialog .folder-name-container { - padding: 24px 36px; - padding-bottom: 0; -} - -.app-folder-dialog .folder-name-container .folder-name-entry { - width: 12em; - border: none; - caret-color: #fbf1c7; -} - -.app-folder-dialog .folder-name-container .folder-name-entry:focus { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.app-folder-dialog .icon-button, .app-folder-dialog .background-app-item .close-button, .background-app-item .app-folder-dialog .close-button, .app-folder-dialog .message .message-header .message-expand-button, .message .message-header .app-folder-dialog .message-expand-button, -.app-folder-dialog .message .message-header .message-close-button, -.message .message-header .app-folder-dialog .message-close-button { - background-color: rgba(251, 241, 199, 0.06); - color: rgba(251, 241, 199, 0.7); - border: none; - padding: 0; - width: 36px; - height: 36px; - border-radius: 9999px; -} - -.app-folder-dialog .icon-button > StIcon, .app-folder-dialog .background-app-item .close-button > StIcon, .background-app-item .app-folder-dialog .close-button > StIcon, .app-folder-dialog .message .message-header .message-expand-button > StIcon, .message .message-header .app-folder-dialog .message-expand-button > StIcon, -.app-folder-dialog .message .message-header .message-close-button > StIcon, -.message .message-header .app-folder-dialog .message-close-button > StIcon { - icon-size: 16px; -} - -.app-folder-dialog .icon-button:hover, .app-folder-dialog .background-app-item .close-button:hover, .background-app-item .app-folder-dialog .close-button:hover, .app-folder-dialog .message .message-header .message-expand-button:hover, .message .message-header .app-folder-dialog .message-expand-button:hover, -.app-folder-dialog .message .message-header .message-close-button:hover, -.message .message-header .app-folder-dialog .message-close-button:hover { - background-color: rgba(251, 241, 199, 0.12); -} - -.app-folder-dialog .icon-button:checked, .app-folder-dialog .background-app-item .close-button:checked, .background-app-item .app-folder-dialog .close-button:checked, .app-folder-dialog .message .message-header .message-expand-button:checked, .message .message-header .app-folder-dialog .message-expand-button:checked, -.app-folder-dialog .message .message-header .message-close-button:checked, -.message .message-header .app-folder-dialog .message-close-button:checked, .app-folder-dialog .icon-button:active, .app-folder-dialog .background-app-item .close-button:active, .background-app-item .app-folder-dialog .close-button:active, .app-folder-dialog .message .message-header .message-expand-button:active, .message .message-header .app-folder-dialog .message-expand-button:active, -.app-folder-dialog .message .message-header .message-close-button:active, -.message .message-header .app-folder-dialog .message-close-button:active { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -.app-folder-dialog .page-indicators { - margin-bottom: 18px; -} - -.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: #1d2021; - color: #fbf1c7; - border-radius: 9999px; - icon-size: 48px; -} - -.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: 27px 0px 0px 27px; -} - -.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 27px 27px 0px; -} - -.page-navigation-arrow { - margin: 6px; - padding: 18px; - width: 24px; - height: 24px; - border-radius: 9999px; - transition-duration: 100ms; - color: rgba(251, 241, 199, 0.7); - background-color: transparent; -} - -.page-navigation-arrow > StIcon { - color: #fbf1c7; -} - -.page-navigation-arrow:insensitive { - background-color: transparent; - color: rgba(251, 241, 199, 0.5); -} - -.page-navigation-arrow:hover { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.page-navigation-arrow:active { - background-color: rgba(251, 241, 199, 0.3); - color: #fbf1c7; -} - -/* Date/Time Menu */ -.popup-menu .message, .world-clocks-button, -.weather-button, -.events-button { - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - 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: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none; -} - -.popup-menu .message:active, .world-clocks-button:active, -.weather-button:active, -.events-button:active { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.2); - box-shadow: none; -} - -#calendarArea { - padding: 0; -} - -.datemenu-calendar-column { - spacing: 6px; - border: none; - padding: 0 !important; - margin: 0 !important; -} - -.datemenu-calendar-column:ltr { - margin-right: 0; - border-left-width: 0; -} - -.datemenu-calendar-column:rtl { - margin-left: 0; - 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(251, 241, 199, 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 12px; - margin: 0; - text-shadow: none; - color: rgba(251, 241, 199, 0.7); - border-radius: 12px; - margin: 4px; -} - -.datemenu-today-button:ltr { - margin-left: 4px; -} - -.datemenu-today-button:rtl { - margin-right: 4px; -} - -.datemenu-today-button:hover, .datemenu-today-button:focus { - background-color: rgba(251, 241, 199, 0.12); -} - -.datemenu-today-button:active { - background-color: rgba(251, 241, 199, 0.2); -} - -.datemenu-today-button .day-label { - font-size: 13pt; - font-weight: bold; -} - -.datemenu-today-button .date-label { - font-size: 19pt; - font-weight: normal; -} - -/* Calendar */ -.calendar { - border: none; - box-shadow: none; - background-color: transparent; - padding: 0 !important; - margin: 0 !important; - text-shadow: none; - border-radius: 18px; - color: rgba(251, 241, 199, 0.7); -} - -.calendar .calendar-month-label { - padding: 6px 0; - color: rgba(251, 241, 199, 0.7) !important; - font-weight: bold; - text-align: center; - text-shadow: none; - background-color: transparent; -} - -.calendar .calendar-change-month-back, -.calendar .calendar-change-month-forward { - padding: 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 !important; - height: 32px !important; - margin: 2px !important; - border-radius: 9999px; - background-color: transparent; - color: #fbf1c7; - box-shadow: none !important; -} - -.calendar .pager-button:hover, .calendar .pager-button:focus { - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none !important; -} - -.calendar .pager-button:active { - background-color: rgba(251, 241, 199, 0.3); - box-shadow: none !important; -} - -.calendar .calendar-day { - font-size: 11pt; - text-align: center; - width: 34px !important; - height: 34px !important; - padding: 0 !important; - margin: 2px !important; - border-radius: 9999px; - color: rgba(251, 241, 199, 0.7) !important; - border: none; - font-feature-settings: 'tnum'; - background-color: transparent; -} - -.calendar .calendar-day:hover, .calendar .calendar-day:focus { - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none !important; - outline: none !important; -} - -.calendar .calendar-day:active, .calendar .calendar-day:selected { - color: #fbf1c7 !important; - background-color: rgba(251, 241, 199, 0.3); - border-color: transparent !important; - box-shadow: none !important; - outline: none !important; -} - -.calendar .calendar-day.calendar-weekend { - color: rgba(251, 241, 199, 0.5) !important; -} - -.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: #fbf1c7; -} - -.calendar .calendar-today { - font-weight: bold; - color: rgba(251, 241, 199, 0.7) !important; - background-color: rgba(251, 241, 199, 0.06); - border: none; -} - -.calendar .calendar-today:hover, .calendar .calendar-today:focus { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7 !important; -} - -.calendar .calendar-today:active { - background-color: #6da498; - color: rgba(29, 32, 33, 0.87) !important; -} - -.calendar .calendar-today:selected { - background-color: #7daea3; - color: #1d2021 !important; -} - -.calendar .calendar-today:selected:hover, .calendar .calendar-today:selected:focus { - background-color: #96beb5; - color: #1d2021 !important; -} - -.calendar .calendar-day-with-events { - color: rgba(251, 241, 199, 0.7); - background-image: url("assets/calendar-today.svg"); -} - -.calendar .calendar-day-with-events.calendar-work-day { - color: rgba(251, 241, 199, 0.7); - font-weight: bold; -} - -.calendar .calendar-other-month { - color: rgba(251, 241, 199, 0.32) !important; - font-weight: normal; -} - -.calendar .calendar-other-month.calendar-weekend { - color: rgba(251, 241, 199, 0.32) !important; -} - -.calendar .calendar-day-heading { - font-weight: bold; - text-align: center; - margin: 4px; - padding: 3px 6px; - border-radius: 12px; - background-color: transparent; - color: #fbf1c7; -} - -.calendar .calendar-week-number { - width: 26px; - height: 20px; - margin: 6px 2px !important; - padding: 0; - border-radius: 12px; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - font-weight: bold; - font-feature-settings: 'tnum'; - text-align: center; -} - -.world-clocks-button, -.weather-button, -.events-button { - padding: 12px !important; - margin: 4px 0 0 !important; -} - -.events-button .events-box { - spacing: 6px; -} - -.events-button .events-list { - spacing: 12px; - text-shadow: none; - color: rgba(251, 241, 199, 0.7); -} - -.events-button .events-title { - font-weight: bold; - text-shadow: none; - color: rgba(251, 241, 199, 0.5); -} - -.events-button .event-time { - font-feature-settings: 'tnum'; - font-size: 11pt; - color: rgba(251, 241, 199, 0.5); -} - -.world-clocks-button .world-clocks-grid { - spacing-rows: 6px; - spacing-columns: 12px; -} - -.world-clocks-button .world-clocks-header { - color: rgba(251, 241, 199, 0.5); -} - -.world-clocks-button .world-clocks-city { - font-weight: bold; - font-size: 12pt; - color: rgba(251, 241, 199, 0.7); -} - -.world-clocks-button .world-clocks-time { - font-feature-settings: 'tnum'; - font-size: 12pt; - color: #fbf1c7; -} - -.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 { - font-feature-settings: 'tnum'; - font-size: 11pt; - color: rgba(251, 241, 199, 0.5); -} - -.world-clocks-grid, -.weather-grid { - spacing-rows: 0.4em; - spacing-columns: 0.8em; -} - -.weather-button .weather-box { - spacing: 10px; -} - -.weather-button .weather-header-box { - spacing: 6px; -} - -.weather-button .weather-header { - font-weight: bold; - color: rgba(251, 241, 199, 0.7); -} - -.weather-button .weather-header.location { - font-weight: normal; - font-size: 11pt; - color: rgba(251, 241, 199, 0.5); -} - -.weather-button .weather-grid { - spacing-rows: 6px; - spacing-columns: 12px; -} - -.weather-button .weather-forecast-time { - font-feature-settings: 'tnum'; - font-size: 10pt; - font-weight: normal; - padding-top: 0.2em; - padding-bottom: 0.4em; - color: rgba(251, 241, 199, 0.7); -} - -.weather-button .weather-forecast-icon { - icon-size: 32px; -} - -.weather-button .weather-forecast-temp { - font-weight: bold; -} - -/* Dash */ -#dash { - margin-top: 16px; -} - -#dash .dash-background { - background-color: rgba(40, 37, 36, 0.65); - box-shadow: inset 0 0 0 1px rgba(251, 241, 199, 0.12); - border: none; - /* remove black border on ubuntu */ - padding: 4px 3px; - border-radius: 23px; -} - -#dash .dash-item-container .placeholder { - background-image: none; - background-size: contain; - height: 32px; -} - -#dash .dash-item-container .empty-dash-drop-target { - width: 32px; - height: 32px; -} - -#dash .dash-item-container .show-apps, -#dash .dash-item-container .overview-tile, -#dash .dash-item-container .grid-search-result { - background: none; - box-shadow: none; - border: none; - border-radius: 0; - padding: 0; - margin: 0 2px; - padding-bottom: 16px; -} - -#dash .dash-item-container .show-apps .overview-icon, -#dash .dash-item-container .overview-tile .overview-icon, -#dash .dash-item-container .grid-search-result .overview-icon { - border-radius: 18px; - padding: 6px; - spacing: 6px; - text-align: center; - transition-duration: 100ms; - background-color: transparent; - color: #fbf1c7; -} - -#dash .dash-item-container .show-apps:focus .overview-icon, -#dash .dash-item-container .overview-tile:focus .overview-icon, -#dash .dash-item-container .grid-search-result:focus .overview-icon { - background-color: rgba(251, 241, 199, 0.12); -} - -#dash .dash-item-container .show-apps:hover .overview-icon, -#dash .dash-item-container .overview-tile:hover .overview-icon, -#dash .dash-item-container .grid-search-result:hover .overview-icon { - background-color: rgba(251, 241, 199, 0.15); - box-shadow: inset 0 0 0 1px rgba(251, 241, 199, 0.15); -} - -#dash .dash-item-container .show-apps:active .overview-icon, -#dash .dash-item-container .overview-tile:active .overview-icon, -#dash .dash-item-container .grid-search-result:active .overview-icon { - background-color: rgba(251, 241, 199, 0.3); -} - -#dash .dash-item-container .show-apps:checked .overview-icon, -#dash .dash-item-container .overview-tile:checked .overview-icon, -#dash .dash-item-container .grid-search-result:checked .overview-icon { - background-color: rgba(251, 241, 199, 0.12); -} - -#dash .dash-item-container .app-well-app-running-dot, -#dash .dash-item-container .app-grid-running-dot { - margin-bottom: 12px; - offset-y: 8px; - width: 6px; - height: 6px; - border-radius: 9999px; - background-color: #fbf1c7; -} - -#dash .dash-separator { - width: 1px; - margin-left: 4px; - margin-right: 4px; - background-color: rgba(251, 241, 199, 0.25); -} - -#dash .dash-separator, -#dash .dash-background { - margin-bottom: 16px; -} - -.dash-label { - color: #fbf1c7; - background-color: rgba(40, 37, 36, 0.65); - border-radius: 12px; - padding: 6px 12px; - box-shadow: none; - border: none; - text-align: center; - -y-offset: 12px; - -x-offset: 8px; -} - -/* Message List */ -.message-list { - width: 29em; - text-shadow: none; - border: solid rgba(251, 241, 199, 0.12); - padding: 0; -} - -.message-list:ltr { - margin-left: 0; - margin-right: 8px; - padding-right: 10px; - border-right-width: 0; -} - -.message-list:rtl { - margin-right: 0; - margin-left: 8px; - padding-left: 10px; - border-left-width: 0; -} - -.message-list .message-list-placeholder { - spacing: 12px; - color: rgba(251, 241, 199, 0.32); -} - -.message-list .message-list-placeholder > StIcon { - icon-size: 96px; - margin-bottom: 12px; - -st-icon-style: symbolic; -} - -.message-list-sections { - margin: 0; - padding-bottom: 6px; -} - -.message-list-sections:ltr { - margin-right: 0; -} - -.message-list-sections:rtl { - margin-left: 0; -} - -.message-list-section, -.message-list-sections, -.message-list-section-list { - spacing: 6px; -} - -.message-list-controls { - margin: 8px 16px 0; - padding: 6px; - spacing: 6px; -} - -.message-list-controls .dnd-button { - border-width: 2px; - border-color: transparent; - border-radius: 32px; - border-style: solid; -} - -.message-list-controls .dnd-button:focus { - border-color: rgba(125, 174, 163, 0.6); -} - -.message { - padding: 0; - margin: 3px; - border-radius: 20px; -} - -.popup-menu .message { - border-radius: 12px; -} - -.popup-menu .message .notification-button:first-child:ltr { - border-radius: 0 0 0 12px; -} - -.popup-menu .message .notification-button:last-child:ltr { - border-radius: 0 0 12px; -} - -.popup-menu .message .notification-button:first-child:rtl { - border-radius: 0 0 12px; -} - -.popup-menu .message .notification-button:last-child:rtl { - border-radius: 0 0 0 12px; -} - -.popup-menu .message .notification-button:first-child:last-child { - border-radius: 0 0 12px 12px; -} - -.message .message-header { - padding: 0 0.409em; - margin: 6px; - margin-bottom: 0; - spacing: 6px; - color: rgba(251, 241, 199, 0.5); -} - -.message .message-header .message-source-icon { - icon-size: 1.091em; - -st-icon-style: symbolic; -} - -.message .message-header .message-header-content { - spacing: 6px; - min-height: 1.637em; - padding-bottom: 6px; -} - -.message .message-header .message-header-content .message-source-title { - font-weight: bold; -} - -.message .message-header .message-header-content .event-time { - padding-bottom: 0.068em; - color: rgba(251, 241, 199, 0.5); -} - -.message .message-header .message-header-content .event-time:ltr { - text-align: right; -} - -.message .message-header .message-header-content .event-time:rtl { - text-align: left; -} - -.message .message-header .message-expand-button, -.message .message-header .message-close-button { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); - padding: 4px; - border: none; -} - -.message .message-header .message-expand-button, .message .message-header .message-expand-button:hover, .message .message-header .message-expand-button:active, -.message .message-header .message-close-button, -.message .message-header .message-close-button:hover, -.message .message-header .message-close-button:active { - color: #fbf1c7; -} - -.message .message-header .message-expand-button:hover, .message .message-header .message-expand-button:focus, -.message .message-header .message-close-button:hover, -.message .message-header .message-close-button:focus { - background-color: rgba(251, 241, 199, 0.12); -} - -.message .message-header .message-expand-button:active, .message .message-header .message-expand-button:active:hover, -.message .message-header .message-close-button:active, -.message .message-header .message-close-button:active:hover { - background-color: rgba(251, 241, 199, 0.3); -} - -.message .message-header .message-expand-button:insensitive, -.message .message-header .message-close-button:insensitive { - background-color: rgba(251, 241, 199, 0.04); -} - -.message .message-header .message-expand-button { - padding: 4px; - border: none; -} - -.message .message-header .message-expand-button:ltr { - margin-right: 6px; -} - -.message .message-header .message-expand-button:rtl { - margin-left: 6px; -} - -.message .message-box { - padding: 6px; - margin: 6px; - margin-top: 0; - spacing: 6px; -} - -.message .message-box .message-icon { - icon-size: 48px; - -st-icon-style: symbolic; -} - -.message .message-box .message-icon:ltr { - margin-right: 6px; -} - -.message .message-box .message-icon:rtl { - margin-left: 6px; -} - -.message .message-box .message-icon.message-themed-icon { - border-radius: 9999px; - icon-size: 16px; - min-width: 48px; - min-height: 48px; - color: rgba(251, 241, 199, 0.5); - background-color: rgba(251, 241, 199, 0.12); -} - -.message .message-box:first-child { - margin-top: 12px; -} - -.message .message-box .message-content { - spacing: 4px; -} - -.message .message-box .message-content .message-title { - font-weight: bold; -} - -.url-highlighter { - link-color: #83b193; -} - -.message-media-control { - margin: 4px 6px; - padding: 12px; - border-radius: 9999px; - border: none; - color: rgba(251, 241, 199, 0.7); -} - -.message-media-control:hover, .message-media-control:focus { - background-color: rgba(251, 241, 199, 0.12); -} - -.message-media-control:active { - background-color: rgba(251, 241, 199, 0.3); -} - -.message-media-control:hover, .message-media-control:focus, .message-media-control:active { - color: #fbf1c7; -} - -.message-media-control:insensitive { - color: rgba(251, 241, 199, 0.5); -} - -.message-media-control StIcon { - icon-size: 16px; -} - -.media-message .message-icon { - border-radius: 6px !important; -} - -.media-message .message-icon.message-themed-icon { - icon-size: 32px !important; -} - -.workspace-animation { - background-color: #1d2021; -} - -.calendar .calendar-change-month-back, -.calendar .calendar-change-month-forward { - padding: 0 2px; -} - -/* Notifications & Message Tray */ -.notification-banner { - min-height: 64px; - width: 34em; - margin: 20px; - border-radius: 12px; - color: rgba(251, 241, 199, 0.7); - background-color: #242220; - border: none; - text-shadow: none; - box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25); - border-radius: 18px; -} - -.notification-banner:hover, .notification-banner:active { - color: #fbf1c7; - background-color: #242220; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25); - margin: 20px; -} - -.notification-banner:focus { - color: #fbf1c7; - background-color: #242220; -} - -.notification-buttons-bin { - background-color: transparent; - padding-top: 0; - border: none; - border-top: 1px solid rgba(251, 241, 199, 0.12); - spacing: 0; -} - -.notification-button { - min-height: 44px; - padding: 0 18px; - background-color: transparent; - color: rgba(251, 241, 199, 0.7); - font-weight: 500; - border: none; -} - -.notification-button:focus { - background-color: transparent; - color: #fbf1c7; - box-shadow: inset 0 0 0 2px rgba(251, 241, 199, 0.12); -} - -.notification-button:hover, .notification-button:focus:hover { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7; - box-shadow: none; -} - -.notification-button:active { - background-color: rgba(251, 241, 199, 0.3); - color: #fbf1c7; -} - -.notification-button:first-child:ltr { - border-radius: 0 0 0 18px; -} - -.notification-button:last-child:ltr { - border-radius: 0 0 18px; - margin-right: 0 !important; -} - -.notification-button:first-child:rtl { - border-radius: 0 0 18px; -} - -.notification-button:last-child:rtl { - border-radius: 0 0 0 18px; - margin-left: 0 !important; -} - -.notification-button:first-child:last-child { - border-radius: 0 0 18px 18px; - margin-left: 0 !important; - margin-right: 0 !important; -} - -.controls-manager, -.secondary-monitor-workspaces { - spacing: 12px; -} - -#overviewGroup { - background-color: #0d0907; -} - -.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: 9px 12px; -} - -.popup-separator-menu-item { - padding: 3px 0 !important; -} - -.popup-separator-menu-item .popup-menu-ornament { - width: 0 !important; -} - -.popup-separator-menu-item .popup-separator-menu-item-separator { - height: 1px; - background-color: rgba(251, 241, 199, 0.12); - margin: 6px 32px; - padding: 0 !important; -} - -.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { - padding: 0 !important; - margin: 0 32px 0 0; - height: 1px; -} - -.popup-menu-ornament { - icon-size: 16px !important; - width: 16px; -} - -/* Quick Settings */ -.quick-settings { - padding: 18px !important; - border-radius: 24px !important; - margin-top: 6px !important; -} - -.quick-settings .icon-button, .quick-settings .background-app-item .close-button, .background-app-item .quick-settings .close-button, .quick-settings .message .message-header .message-expand-button, .message .message-header .quick-settings .message-expand-button, -.quick-settings .message .message-header .message-close-button, -.message .message-header .quick-settings .message-close-button, -.quick-settings .button { - padding: 10.5px; -} - -.quick-settings .icon-button > StIcon, .quick-settings .background-app-item .close-button > StIcon, .background-app-item .quick-settings .close-button > StIcon, .quick-settings .message .message-header .message-expand-button > StIcon, .message .message-header .quick-settings .message-expand-button > StIcon, -.quick-settings .message .message-header .message-close-button > StIcon, -.message .message-header .quick-settings .message-close-button > StIcon, -.quick-settings .button > StIcon { - icon-size: 16px; -} - -.quick-settings-grid { - spacing-rows: 12px; - spacing-columns: 12px; -} - -.quick-toggle, -.quick-menu-toggle { - border-radius: 12px; - min-width: 12em; - max-width: 12em; - min-height: 44px; - border: none; - margin: 1px; -} - -.quick-toggle { - background-color: rgba(251, 241, 199, 0.08) !important; - /* Move padding into the box; this is to allow menu arrows - to extend to the border */ -} - -.quick-toggle:hover { - background-color: rgba(251, 241, 199, 0.12) !important; -} - -.quick-toggle:active { - background-color: rgba(251, 241, 199, 0.15) !important; -} - -.quick-toggle:checked { - background-color: rgba(125, 174, 163, 0.95) !important; - color: #1d2021; -} - -.quick-toggle:checked:hover { - background-color: #afc9b1 !important; - color: #1d2021; -} - -.quick-toggle:checked:active { - background-color: #96bbaa !important; - color: #1d2021; -} - -.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: 12px 0 0 12px; -} - -.quick-menu-toggle .quick-toggle:ltr > StBoxLayout { - padding-right: 9px; -} - -.quick-menu-toggle .quick-toggle:rtl { - border-radius: 0 12px 12px 0; -} - -.quick-menu-toggle .quick-toggle:rtr > StBoxLayout { - padding-left: 9px; -} - -.quick-menu-toggle .quick-toggle:ltr:last-child { - border-radius: 12px; -} - -.quick-menu-toggle .quick-toggle:rtl:last-child { - border-radius: 12px; -} - -.quick-menu-toggle .quick-toggle-arrow { - background-color: rgba(251, 241, 199, 0.08) !important; - padding: 6px 10.5px; - border: none !important; - color: #fbf1c7; - margin: 1px; -} - -.quick-menu-toggle .quick-toggle-arrow:hover { - background-color: rgba(251, 241, 199, 0.12) !important; -} - -.quick-menu-toggle .quick-toggle-arrow:active { - background-color: rgba(251, 241, 199, 0.15) !important; -} - -.quick-menu-toggle .quick-toggle-arrow:checked { - background-color: rgba(125, 174, 163, 0.75) !important; - color: #1d2021; -} - -.quick-menu-toggle .quick-toggle-arrow:checked:hover { - background-color: #afc9b1 !important; - color: #1d2021; -} - -.quick-menu-toggle .quick-toggle-arrow:checked:active { - background-color: #96bbaa !important; - color: #1d2021; -} - -.quick-menu-toggle .quick-toggle-arrow:ltr { - border-radius: 0 12px 12px 0; -} - -.quick-menu-toggle .quick-toggle-arrow:rtl { - border-radius: 12px 0 0 12px; -} - -.quick-slider > StBoxLayout { - spacing: 6px; -} - -.quick-slider .slider-bin { - min-height: 16px; - padding: 6px; - border-radius: 9999px; -} - -.quick-slider .slider-bin:focus { - color: #fbf1c7; - background-color: rgba(251, 241, 199, 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, .quick-slider .message .message-header .message-expand-button, .message .message-header .quick-slider .message-expand-button, -.quick-slider .message .message-header .message-close-button, -.message .message-header .quick-slider .message-close-button { - background-color: rgba(251, 241, 199, 0.08) !important; - color: #7daea3 !important; - border-radius: 12px; - padding: 9px; -} - -.quick-slider .icon-button:hover, .quick-slider .background-app-item .close-button:hover, .background-app-item .quick-slider .close-button:hover, .quick-slider .message .message-header .message-expand-button:hover, .message .message-header .quick-slider .message-expand-button:hover, -.quick-slider .message .message-header .message-close-button:hover, -.message .message-header .quick-slider .message-close-button:hover { - background-color: rgba(251, 241, 199, 0.12) !important; -} - -.quick-slider .icon-button:active, .quick-slider .background-app-item .close-button:active, .background-app-item .quick-slider .close-button:active, .quick-slider .message .message-header .message-expand-button:active, .message .message-header .quick-slider .message-expand-button:active, -.quick-slider .message .message-header .message-close-button:active, -.message .message-header .quick-slider .message-close-button:active { - background-color: rgba(251, 241, 199, 0.04); -} - -.quick-toggle-menu { - background-color: #242220 !important; - color: #fbf1c7 !important; - border-radius: 24px !important; - padding: 12px; - margin: 12px 18px 0; -} - -.quick-toggle-menu .popup-menu-item { - border-radius: 12px !important; -} - -.quick-toggle-menu .popup-menu-item:focus, .quick-toggle-menu .popup-menu-item:hover, .quick-toggle-menu .popup-menu-item.selected { - color: #7daea3 !important; - background-color: rgba(251, 241, 199, 0.1) !important; -} - -.quick-toggle-menu .popup-menu-item:active { - color: #fbf1c7 !important; - background-color: rgba(251, 241, 199, 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: 12px; - padding: 9px; - background-color: rgba(251, 241, 199, 0.12) !important; -} - -.quick-toggle-menu .header .icon.active { - background-color: #7daea3 !important; - color: rgba(29, 32, 33, 0.87); -} - -.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, .quick-settings-system-item .message .message-header .message-expand-button, .message .message-header .quick-settings-system-item .message-expand-button, -.quick-settings-system-item .message .message-header .message-close-button, -.message .message-header .quick-settings-system-item .message-close-button { - background-color: rgba(251, 241, 199, 0.08); - color: #7daea3 !important; - border-radius: 12px; -} - -.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, .quick-settings-system-item .message .message-header .message-expand-button > StIcon, .message .message-header .quick-settings-system-item .message-expand-button > StIcon, -.quick-settings-system-item .message .message-header .message-close-button > StIcon, -.message .message-header .quick-settings-system-item .message-close-button > StIcon { - -st-icon-style: symbolic; - icon-size: 16px; -} - -.quick-settings-system-item .power-item { - color: #7daea3 !important; - min-height: 0; - min-width: 0; -} - -.quick-settings-system-item .power-item:insensitive { - color: #fbf1c7; - background-color: #282524; - 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(251, 241, 199, 0.5); -} - -.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: #fbf1c7; -} - -.search-entry { - margin-top: 24px; - margin-bottom: 6px; -} - -/* Search */ -.list-search-result, .search-provider-icon { - border-radius: 12px; - padding: 6px; - transition-duration: 100ms; - text-align: center; - background-color: transparent; -} - -.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(251, 241, 199, 0.12); - transition-duration: 0; -} - -.list-search-result:active, .search-provider-icon:active, .list-search-result:checked, .search-provider-icon:checked { - background-color: rgba(251, 241, 199, 0.2); -} - -#searchResults { - margin: 0 4px; -} - -#searchResultsContent { - max-width: 1044px; -} - -.search-section { - spacing: 18px; -} - -.search-section .search-section-separator { - height: 8px; - background-color: transparent; -} - -.search-section-content { - border-radius: 27px; - padding: 12px; - margin: 0 12px; - border: none; - box-shadow: none; - background: none; - text-shadow: none; - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.12); -} - -.search-statustext { - color: rgba(251, 241, 199, 0.5); -} - -.grid-search-results { - spacing: 30px; - margin: 0 12px; -} - -.search-provider-icon:ltr { - margin-right: 4px; -} - -.search-provider-icon:rtl { - margin-left: 4px; -} - -.search-provider-icon .list-search-provider-content { - spacing: 12px; -} - -.search-provider-icon .list-search-provider-content .list-search-provider-details { - width: 120px; - color: rgba(251, 241, 199, 0.7); -} - -.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(251, 241, 199, 0.7); -} - -.icon-label-button-container { - spacing: 6px; -} - -.icon-label-button-container StIcon { - icon-size: 32px; -} - -.screenshot-ui-panel { - border-radius: 39px; - 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: 21px; -} - -.screenshot-ui-capture-button { - width: 36px; - height: 36px; - border-radius: 9999px; - border: 4px #fbf1c7; - padding: 4px; -} - -.screenshot-ui-capture-button .screenshot-ui-capture-button-circle { - background-color: #fbf1c7; - 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(251, 241, 199, 0.12); -} - -.screenshot-ui-capture-button:hover .screenshot-ui-capture-button-circle, .screenshot-ui-capture-button:focus .screenshot-ui-capture-button-circle { - background-color: #f6df80; -} - -.screenshot-ui-capture-button:active .screenshot-ui-capture-button-circle { - background-color: #b6960d; -} - -.screenshot-ui-capture-button:cast .screenshot-ui-capture-button-circle { - background-color: #c14a4a; -} - -.screenshot-ui-capture-button:cast:hover .screenshot-ui-capture-button-circle, .screenshot-ui-capture-button:cast:focus .screenshot-ui-capture-button-circle { - background-color: #c85d5d; -} - -.screenshot-ui-capture-button:cast:active .screenshot-ui-capture-button-circle { - background-color: #ac3b3b; -} - -.screenshot-ui-shot-cast-container { - background-color: #292d2f; - border-radius: 18px; - 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: 15px; -} - -.screenshot-ui-shot-cast-button:hover, .screenshot-ui-shot-cast-button:focus { - background-color: #353a3c; -} - -.screenshot-ui-shot-cast-button:active { - background-color: rgba(251, 241, 199, 0.3); -} - -.screenshot-ui-shot-cast-button:checked { - background-color: #fbf1c7; - color: #1d2021; -} - -.screenshot-ui-shot-cast-button:insensitive { - color: rgba(251, 241, 199, 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 solid #fbf1c7; -} - -.screenshot-ui-area-selector-handle { - border-radius: 9999px; - background-color: #7daea3; - box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.2); - width: 24px; - height: 24px; -} - -.screenshot-ui-window-selector { - background-color: #242220; -} - -.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: 18px; - border: 6px transparent; -} - -.screenshot-ui-window-selector-check { - transition-duration: 200ms; - color: transparent; - border-radius: 9999px; - border-width: 12px; - icon-size: 24px; -} - -.screenshot-ui-window-selector-window:hover .screenshot-ui-window-selector-window-border { - border-color: #55897d; -} - -.screenshot-ui-window-selector-window:checked .screenshot-ui-window-selector-window-border { - border-color: #7daea3; - background-color: rgba(125, 174, 163, 0.2); -} - -.screenshot-ui-window-selector-window:checked .screenshot-ui-window-selector-check { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -.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 solid #fbf1c7; -} - -.screenshot-ui-tooltip { - color: #fbf1c7; - background-color: #1d2021; - border-radius: 9999px; - padding: 6px 12px; - text-align: center; - -y-offset: 24px; -} - -.window-picker { - spacing: 6px; -} - -.window-caption { - color: #fbf1c7; - background-color: #1d2021; - border-radius: 9999px; - padding: 6px 12px; -} - -.window-close, .screenshot-ui-close-button { - background-color: #242220; - color: #fbf1c7; - border-radius: 9999px; - 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: #fbf1c7; - background-color: #34312e; -} - -.window-close:active, .screenshot-ui-close-button:active { - color: #fbf1c7; - background-color: #141312; -} - -.workspace-background { - border-radius: 30px; - background-color: #1d2021; - 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(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.12); - border: none; - border-radius: 12px; -} - -.workspace-thumbnails .placeholder { - background-image: url("assets/dash-placeholder.svg"); - background-size: contain; - width: 18px; - height: 24px; -} - -.workspace-thumbnail-indicator { - border: 3px solid #7daea3; - border-radius: 3px; - 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: #fbf1c7; - background-color: rgba(0, 0, 0, 0.75); - text-align: center; -} - -#dashtodockContainer .notification-badge { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; - box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25); - border-radius: 9999px; - margin: 2px; - padding: 0.25em 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: 12px 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(29, 32, 33, 0.6); -} - -#dashtodockContainer #dash .dash-background { - background-color: rgba(29, 32, 33, 0.85); -} - -#dashtodockContainer .app-well-app-running-dot { - background-color: rgba(251, 241, 199, 0.3) !important; -} - -#dashtodockContainer StWidget.focused .app-well-app-running-dot { - background-color: #fbf1c7 !important; -} - -#dashtodockContainer:overview #dash .app-well-app-running-dot { - background-color: rgba(251, 241, 199, 0.3) !important; -} - -#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot { - background-color: #fbf1c7 !important; -} - -#dashtodockContainer .show-apps .overview-icon, -#dashtodockContainer .app-well-app .overview-icon { - color: rgba(251, 241, 199, 0.7); -} - -#dashtodockContainer .show-apps:hover .overview-icon, #dashtodockContainer .show-apps:focus .overview-icon, #dashtodockContainer .show-apps:selected .overview-icon, -#dashtodockContainer .app-well-app:hover .overview-icon, -#dashtodockContainer .app-well-app:focus .overview-icon, -#dashtodockContainer .app-well-app:selected .overview-icon { - background-color: rgba(251, 241, 199, 0.12); -} - -#dashtodockContainer .show-apps:active .overview-icon, #dashtodockContainer .show-apps:checked .overview-icon, -#dashtodockContainer .app-well-app:active .overview-icon, -#dashtodockContainer .app-well-app:checked .overview-icon { - background-color: rgba(251, 241, 199, 0.3); -} - -#dashtodockContainer:overview #dash .show-apps .overview-icon, #dashtodockContainer:overview #dash .app-well-app .overview-icon { - color: rgba(251, 241, 199, 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(251, 241, 199, 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(251, 241, 199, 0.3); -} - -#dashtodockContainer .app-well-app-running-dot { - background-color: rgba(251, 241, 199, 0.3); -} - -#dashtodockContainer StWidget.focused .app-well-app-running-dot { - background-color: #fbf1c7; -} - -#dashtodockContainer.opaque #dash .dash-background { - background-color: rgba(29, 32, 33, 0.6); -} - -#dashtodockContainer.transparent #dash .dash-background { - background-color: rgba(29, 32, 33, 0.35); -} - -#dashtodockContainer:overview #dash .dash-background { - background-color: rgba(251, 241, 199, 0.12); - border: 2px solid transparent; -} - -#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(29, 32, 33, 0.6); -} - -#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: 12px; -} - -#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 { - background-color: red !important; - 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: #fbf1c7; -} - -.openweather-current-databox-values { - background: none; - color: rgba(251, 241, 199, 0.5); -} - -.openweather-current-databox-captions { - background: none; - color: rgba(251, 241, 199, 0.5); -} - -.openweather-forecast-icon, .openweather-forecast-summary { - background: none; - color: rgba(251, 241, 199, 0.7); -} - -.openweather-forecast-day, .openweather-forecast-temperature { - background: none; - color: rgba(251, 241, 199, 0.5); -} - -.openweather-sunrise-icon, .openweather-sunset-icon, .openweather-build-icon { - color: rgba(251, 241, 199, 0.7); -} - -.cosmic-dock #dock { - border-radius: 16px !important; - border: none !important; - margin: 6px !important; - background-color: rgba(40, 37, 36, 0.65) !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: 18px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08); - background-color: #242220; - color: #fbf1c7; -} - -.cosmic-application-dialog .overview-icon { - color: #fbf1c7; -} - -.cosmic-applications-separator { - background: rgba(251, 241, 199, 0.12); -} - -.cosmic-folder-edit-button { - box-shadow: none; - border-radius: 12px; - border-width: 0; - color: #fbf1c7; - background: rgba(251, 241, 199, 0.04); -} - -.cosmic-folder-edit-button .cosmic-folder-edit-button:hover { - background: rgba(251, 241, 199, 0.12); -} - -.cosmic-applications-icon { - color: rgba(251, 241, 199, 0.7); -} - -.cosmic-applications-folder-title { - color: rgba(251, 241, 199, 0.7); -} - -.cosmic-applications-available { - color: #fbf1c7; -} - -.pop-shell-active-hint { - border-style: solid; - border-color: #b47109; - border-radius: 12px; - box-shadow: none; -} - -.pop-shell-overlay { - background-color: rgba(125, 174, 163, 0.3); -} - -.pop-shell-search-element:select { - background: rgba(251, 241, 199, 0.12); - border-radius: 12px; - color: #fbf1c7; -} - -.pop-shell-tab { - border: 1px solid rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.pop-shell-tab-active { - background: #b47109; -} - -.pop-shell-tab-inactive { - background: rgba(180, 113, 9, 0.35); -} - -.pop-shell-tab-urgent { - background: #c14a4a; -} - -#panel.light-panel .panel-button, -#panel.dark-panel .panel-button, -#panel.transparent-panel .panel-button { - color: rgba(251, 241, 199, 0.7) !important; -} - -#panel.light-panel .panel-button.clock-display .clock, -#panel.dark-panel .panel-button.clock-display .clock, -#panel.transparent-panel .panel-button.clock-display .clock { - color: rgba(251, 241, 199, 0.7) !important; -} - -#panel.light-panel .panel-button:hover, -#panel.dark-panel .panel-button:hover, -#panel.transparent-panel .panel-button:hover { - color: rgba(251, 241, 199, 0.7) !important; - background-color: rgba(251, 241, 199, 0.12) !important; -} - -#panel.light-panel .panel-button:hover.clock-display .clock, -#panel.dark-panel .panel-button:hover.clock-display .clock, -#panel.transparent-panel .panel-button:hover.clock-display .clock { - background-color: rgba(251, 241, 199, 0.12) !important; -} - -#panel.light-panel .panel-button:active, #panel.light-panel .panel-button:checked, #panel.light-panel .panel-button:focus, -#panel.dark-panel .panel-button:active, -#panel.dark-panel .panel-button:checked, -#panel.dark-panel .panel-button:focus, -#panel.transparent-panel .panel-button:active, -#panel.transparent-panel .panel-button:checked, -#panel.transparent-panel .panel-button:focus { - color: #fbf1c7 !important; - background-color: rgba(251, 241, 199, 0.3) !important; -} - -#panel.light-panel .panel-button:active.clock-display .clock, #panel.light-panel .panel-button:checked.clock-display .clock, #panel.light-panel .panel-button:focus.clock-display .clock, -#panel.dark-panel .panel-button:active.clock-display .clock, -#panel.dark-panel .panel-button:checked.clock-display .clock, -#panel.dark-panel .panel-button:focus.clock-display .clock, -#panel.transparent-panel .panel-button:active.clock-display .clock, -#panel.transparent-panel .panel-button:checked.clock-display .clock, -#panel.transparent-panel .panel-button:focus.clock-display .clock { - background-color: rgba(251, 241, 199, 0.3) !important; -} - -#panel.light-panel .panel-button:hover.clock-display, #panel.light-panel .panel-button:active.clock-display, #panel.light-panel .panel-button:overview.clock-display, #panel.light-panel .panel-button:focus.clock-display, #panel.light-panel .panel-button:checked.clock-display, -#panel.dark-panel .panel-button:hover.clock-display, -#panel.dark-panel .panel-button:active.clock-display, -#panel.dark-panel .panel-button:overview.clock-display, -#panel.dark-panel .panel-button:focus.clock-display, -#panel.dark-panel .panel-button:checked.clock-display, -#panel.transparent-panel .panel-button:hover.clock-display, -#panel.transparent-panel .panel-button:active.clock-display, -#panel.transparent-panel .panel-button:overview.clock-display, -#panel.transparent-panel .panel-button:focus.clock-display, -#panel.transparent-panel .panel-button:checked.clock-display { - background-color: transparent !important; -} - -#panel.light-panel .panel-button:hover.clock-display .clock, #panel.light-panel .panel-button:active.clock-display .clock, #panel.light-panel .panel-button:overview.clock-display .clock, #panel.light-panel .panel-button:focus.clock-display .clock, #panel.light-panel .panel-button:checked.clock-display .clock, -#panel.dark-panel .panel-button:hover.clock-display .clock, -#panel.dark-panel .panel-button:active.clock-display .clock, -#panel.dark-panel .panel-button:overview.clock-display .clock, -#panel.dark-panel .panel-button:focus.clock-display .clock, -#panel.dark-panel .panel-button:checked.clock-display .clock, -#panel.transparent-panel .panel-button:hover.clock-display .clock, -#panel.transparent-panel .panel-button:active.clock-display .clock, -#panel.transparent-panel .panel-button:overview.clock-display .clock, -#panel.transparent-panel .panel-button:focus.clock-display .clock, -#panel.transparent-panel .panel-button:checked.clock-display .clock { - color: #fbf1c7 !important; -} - -.overview-components-transparent .search-entry, -.overview-components-light .search-entry, -.overview-components-dark .search-entry { - caret-color: #fbf1c7 !important; -} - -.overview-components-transparent .search-entry .search-entry-icon, -.overview-components-light .search-entry .search-entry-icon, -.overview-components-dark .search-entry .search-entry-icon { - color: rgba(251, 241, 199, 0.7) !important; -} - -.overview-components-transparent .search-entry StLabel.hint-text, -.overview-components-light .search-entry StLabel.hint-text, -.overview-components-dark .search-entry StLabel.hint-text { - color: rgba(251, 241, 199, 0.3) !important; -} - -.overview-components-transparent .search-section-content, -.overview-components-light .search-section-content, -.overview-components-dark .search-section-content { - border-radius: 16px; -} - -.overview-components-transparent .search-section-separator, -.overview-components-light .search-section-separator, -.overview-components-dark .search-section-separator { - height: 0 !important; - background-color: transparent !important; -} diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/no-events.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/no-events.svg deleted file mode 120000 index d2fcad086..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/no-events.svg +++ /dev/null @@ -1 +0,0 @@ -assets/no-events.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/no-notifications.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/no-notifications.svg deleted file mode 120000 index 175731c18..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/no-notifications.svg +++ /dev/null @@ -1 +0,0 @@ -assets/no-notifications.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/process-working.svg b/local/share/themes/Gruvbox-Dark/gnome-shell/process-working.svg deleted file mode 120000 index a6586c30c..000000000 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/process-working.svg +++ /dev/null @@ -1 +0,0 @@ -assets/process-working.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/border.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/border.png deleted file mode 100644 index b0bc0a0f2..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/border.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-active.png deleted file mode 100644 index f671a331a..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-disabled.png deleted file mode 100644 index 30be7d297..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-hover.png deleted file mode 100644 index 09002d7aa..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button.png deleted file mode 100644 index 281571945..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/button.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-active.png deleted file mode 100644 index a190aa852..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-disabled.png deleted file mode 100644 index 149c76471..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-hover.png deleted file mode 100644 index f5183a2a1..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked.png deleted file mode 100644 index a3aa01456..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-checked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-active.png deleted file mode 100644 index 70300a113..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png deleted file mode 100644 index 4dbf9271c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-hover.png deleted file mode 100644 index cbadcafb3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed.png deleted file mode 100644 index 31a98338b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-mixed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-active.png deleted file mode 100644 index c515eb72d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png deleted file mode 100644 index 63516cb76..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png deleted file mode 100644 index f1e9be57f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked.png deleted file mode 100644 index 900c1a072..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/checkbox-unchecked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-active.png deleted file mode 100644 index f55b47b60..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-disabled.png deleted file mode 100644 index e194aa47d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-hover.png deleted file mode 100644 index 866edb181..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry.png deleted file mode 100644 index bf1011a6e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-left-entry.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-active.png deleted file mode 100644 index 36de53859..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-disabled.png deleted file mode 100644 index f9f1a87d3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-hover.png deleted file mode 100644 index b90709302..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry.png deleted file mode 100644 index 6992de478..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/combo-right-entry.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-active.png deleted file mode 100644 index ffa4b94fb..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-background-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-background-disabled.png deleted file mode 100644 index 50199da84..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-background-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-background.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-background.png deleted file mode 100644 index b541bbcdd..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-background.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-disabled.png deleted file mode 100644 index 30be7d297..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-hover.png deleted file mode 100644 index 99c7b0a92..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry.png deleted file mode 100644 index 281571945..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/entry.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-active.png deleted file mode 100644 index f671a331a..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-disabled.png deleted file mode 100644 index 481dc96e1..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-hover.png deleted file mode 100644 index 09002d7aa..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button.png deleted file mode 100644 index 481dc96e1..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/flat-button.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/focus.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/focus.png deleted file mode 100644 index 1d745e77c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/focus.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame-inline.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame-inline.png deleted file mode 100644 index ea449e8a3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame-inline.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame-notebook.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame-notebook.png deleted file mode 100644 index e73b5437a..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame-notebook.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame.png deleted file mode 100644 index e73b5437a..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/frame.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz-active.png deleted file mode 100644 index 92c51eb27..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz-hover.png deleted file mode 100644 index 3d51d2f52..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz.png deleted file mode 100644 index 7084b6964..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-horz.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert-active.png deleted file mode 100644 index 53bc1a775..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert-hover.png deleted file mode 100644 index 9e9535e79..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert.png deleted file mode 100644 index 768bc88b1..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/handle-vert.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png deleted file mode 100644 index 918bd5956..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-checked.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-checked.png deleted file mode 100644 index 4a3eb8ede..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-checked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png deleted file mode 100644 index b7cb12bff..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-mixed.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-mixed.png deleted file mode 100644 index d473719cd..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-mixed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png deleted file mode 100644 index fc60b565f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png deleted file mode 100644 index 28a476249..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png deleted file mode 100644 index 954e3b2e4..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-checked.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-checked.png deleted file mode 100644 index 2cfc4a56c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-checked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png deleted file mode 100644 index b7cb12bff..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-mixed.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-mixed.png deleted file mode 100644 index d473719cd..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-mixed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png deleted file mode 100644 index fc60b565f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-unchecked.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-unchecked.png deleted file mode 100644 index 28a476249..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/menu-radio-unchecked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-alt-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-alt-disabled.png deleted file mode 100644 index f5a28c64e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-alt-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-alt.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-alt.png deleted file mode 100644 index e1dd8d703..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-alt.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-disabled.png deleted file mode 100644 index 301010711..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down.png deleted file mode 100644 index cf54a1106..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-down.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-alt-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-alt-disabled.png deleted file mode 100644 index ef9eae32d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-alt-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-alt.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-alt.png deleted file mode 100644 index ee684d22f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-alt.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-disabled.png deleted file mode 100644 index f65f8d44d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-semi.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-semi.png deleted file mode 100644 index 8c857b01f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left-semi.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left.png deleted file mode 100644 index fd14eed59..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-left.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-alt-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-alt-disabled.png deleted file mode 100644 index fde3e2be4..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-alt-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-alt.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-alt.png deleted file mode 100644 index 091aecb4f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-alt.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-disabled.png deleted file mode 100644 index 84abb27fe..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-semi.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-semi.png deleted file mode 100644 index 58ca86397..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right-semi.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right.png deleted file mode 100644 index 0910b61bc..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-right.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-alt-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-alt-disabled.png deleted file mode 100644 index da612245d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-alt-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-alt.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-alt.png deleted file mode 100644 index 376945b77..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-alt.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-disabled.png deleted file mode 100644 index 5a35705ab..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up.png deleted file mode 100644 index bd21166e5..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/pan-up.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/progressbar-progress.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/progressbar-progress.png deleted file mode 100644 index c7f27d53d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/progressbar-progress.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/progressbar-trough.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/progressbar-trough.png deleted file mode 100644 index b884aca8e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/progressbar-trough.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-active.png deleted file mode 100644 index e0b5f2224..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-disabled.png deleted file mode 100644 index 3d136316f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-hover.png deleted file mode 100644 index 033354f9d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked.png deleted file mode 100644 index 8a3465efc..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-checked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-active.png deleted file mode 100644 index 70300a113..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-disabled.png deleted file mode 100644 index 4dbf9271c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-hover.png deleted file mode 100644 index cbadcafb3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed.png deleted file mode 100644 index 31a98338b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-mixed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-active.png deleted file mode 100644 index c515eb72d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-disabled.png deleted file mode 100644 index 63516cb76..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-hover.png deleted file mode 100644 index f1e9be57f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked.png deleted file mode 100644 index 900c1a072..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/radio-unchecked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough-active.png deleted file mode 100644 index de3e3c910..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png deleted file mode 100644 index 452a15801..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough.png deleted file mode 100644 index 452181fd8..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-horz-trough.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-active.png deleted file mode 100644 index 5f914fda2..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-disabled.png deleted file mode 100644 index cbef6fd0f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-hover.png deleted file mode 100644 index 1d5ab6f9e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider.png deleted file mode 100644 index 583d46bcc..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-slider.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough-active.png deleted file mode 100644 index df9a64b9d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png deleted file mode 100644 index ccc0b1465..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough.png deleted file mode 100644 index d61b72884..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scale-vert-trough.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png deleted file mode 100644 index 4408c6d37..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png deleted file mode 100644 index f6b9949d7..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png deleted file mode 100644 index 8098d3860..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider.png deleted file mode 100644 index 7131cdc3d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-slider.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-trough.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-trough.png deleted file mode 100644 index 73905be7c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-horz-trough.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png deleted file mode 100644 index 7dfe04de6..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png deleted file mode 100644 index d0ddd54dd..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png deleted file mode 100644 index 8e61baae3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png deleted file mode 100644 index 6ee8a9d8b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png deleted file mode 100644 index e502307c3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png deleted file mode 100644 index edb3e7b3a..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png deleted file mode 100644 index 96dd85cc4..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png deleted file mode 100644 index 70bc77392..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png deleted file mode 100644 index 38bf515ca..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png deleted file mode 100644 index daa169509..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-active.png deleted file mode 100644 index c9b22e909..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png deleted file mode 100644 index e8bfc8909..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-hover.png deleted file mode 100644 index 87541cc9c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down.png deleted file mode 100644 index 647066588..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-down.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-active.png deleted file mode 100644 index d46349161..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png deleted file mode 100644 index b632c27bf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-hover.png deleted file mode 100644 index 47a4a342f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up.png deleted file mode 100644 index 02f6880f2..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-ltr-up.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-active.png deleted file mode 100644 index 852d26724..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png deleted file mode 100644 index fe9f834a8..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-hover.png deleted file mode 100644 index 0fd938729..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down.png deleted file mode 100644 index 192d3b714..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-down.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-active.png deleted file mode 100644 index 632dbe34b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png deleted file mode 100644 index a00638a19..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-hover.png deleted file mode 100644 index 85f3cfeaa..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up.png deleted file mode 100644 index d916a2a8c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/spin-rtl-up.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/tab.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/tab.png deleted file mode 100644 index c62ec85c7..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/tab.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button-active.png deleted file mode 100644 index 05367514f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png deleted file mode 100644 index 15e37e2a3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button.png deleted file mode 100644 index c6741d27d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-ltr-button.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button-active.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button-active.png deleted file mode 100644 index 6c661722a..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png deleted file mode 100644 index b967a0a59..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button.png b/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button.png deleted file mode 100644 index c6741d27d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-2.0/assets/treeview-rtl-button.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic.svg deleted file mode 100644 index c3eedb0d3..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic@2.svg deleted file mode 100644 index 96be359b2..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-checked-symbolic@2.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic.svg deleted file mode 100644 index f016658de..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic@2.svg deleted file mode 100644 index 1bc6987c7..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/checkbox-mixed-symbolic@2.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/close.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/close.svg deleted file mode 100644 index 06201c39d..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/close.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/maximize.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/maximize.svg deleted file mode 100644 index 39316eba5..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/maximize.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/minimize.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/minimize.svg deleted file mode 100644 index f3683b9d7..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/minimize.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic.svg deleted file mode 100644 index d13b0295b..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic@2.svg deleted file mode 100644 index ed8d87adb..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-checked-symbolic@2.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic.svg deleted file mode 120000 index 79b7355c9..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -checkbox-mixed-symbolic.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic@2.svg deleted file mode 120000 index b68859d48..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/radio-mixed-symbolic@2.svg +++ /dev/null @@ -1 +0,0 @@ -checkbox-mixed-symbolic@2.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg deleted file mode 100644 index de0d7899f..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-horz-marks-after-slider-symbolic.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg deleted file mode 100644 index 7f0235f10..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-horz-marks-before-slider-symbolic.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-hover-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-hover-symbolic.svg deleted file mode 100644 index 993f30828..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-hover-symbolic.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-hover-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-hover-symbolic@2.svg deleted file mode 100644 index 740bc8b8a..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-hover-symbolic@2.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic.svg deleted file mode 100644 index 73a1dbe5f..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic@2.svg deleted file mode 100644 index bec2ee43a..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-slider-symbolic@2.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg deleted file mode 100644 index 37d9c04b0..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-vert-marks-after-slider-symbolic.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg deleted file mode 100644 index 1bc5cb6ff..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/scale-vert-marks-before-slider-symbolic.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic.svg deleted file mode 100644 index caed76fa0..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic@2.svg deleted file mode 100644 index 58aa5ffed..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-checked-symbolic@2.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic.svg deleted file mode 100644 index 0e477a9d8..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg deleted file mode 100644 index d0980e258..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-checkbox-mixed-symbolic@2.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic.svg deleted file mode 100644 index 0fdb5302a..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic@2.svg deleted file mode 100644 index 251e2f543..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-checked-symbolic@2.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic.svg deleted file mode 120000 index 86dfcec08..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -small-checkbox-mixed-symbolic.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic@2.svg deleted file mode 120000 index bafb55887..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/small-radio-mixed-symbolic@2.svg +++ /dev/null @@ -1 +0,0 @@ -small-checkbox-mixed-symbolic@2.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/unmaximize.svg b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/unmaximize.svg deleted file mode 100644 index 492d47a23..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/unmaximize.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png deleted file mode 100644 index 1e879bf4c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png deleted file mode 100644 index c1e0e4acb..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png deleted file mode 100644 index f3527b879..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png deleted file mode 100644 index b847a565c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png deleted file mode 100644 index 06220f9ba..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png deleted file mode 100644 index f7699efc9..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png deleted file mode 100644 index f794bee67..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png deleted file mode 100644 index ab0964171..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png deleted file mode 100644 index 3ba15b565..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png deleted file mode 100644 index a9f7d8b51..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png deleted file mode 100644 index 83dd9317d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png deleted file mode 100644 index c5030fc3a..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png deleted file mode 100644 index 51722800b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png deleted file mode 100644 index 40f21e2a5..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png deleted file mode 100644 index 6c425ca3d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png deleted file mode 100644 index 30ea290d4..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png deleted file mode 100644 index 27ab81710..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png deleted file mode 100644 index f66873a5c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png deleted file mode 100644 index 11a3f0833..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png deleted file mode 100644 index 0c6469b04..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png deleted file mode 100644 index 74c30137d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png deleted file mode 100644 index 38e2e0b7c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png deleted file mode 100644 index f13c0995f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png deleted file mode 100644 index 815ea0d98..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png deleted file mode 100644 index 498dd4e23..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png deleted file mode 100644 index bc6ab2361..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png deleted file mode 100644 index 3233becca..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png deleted file mode 100644 index f60ba7a3e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png deleted file mode 100644 index 6a0dc1bd7..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png deleted file mode 100644 index 2fca19075..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png deleted file mode 100644 index 46cd1c0c5..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png deleted file mode 100644 index e6b548f0a..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png deleted file mode 100644 index d606fd638..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png deleted file mode 100644 index 4c39926c4..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png deleted file mode 100644 index 602114ed5..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png deleted file mode 100644 index adca46532..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png deleted file mode 100644 index 166829a65..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png deleted file mode 100644 index c61d2a255..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png deleted file mode 100644 index 5792f1f1b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png deleted file mode 100644 index 01f752309..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/gtk-dark.css b/local/share/themes/Gruvbox-Dark/gtk-3.0/gtk-dark.css deleted file mode 100644 index 3386535b9..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/gtk-dark.css +++ /dev/null @@ -1,8495 +0,0 @@ -@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, #7daea3 0%, transparent 0%); - } - to { - background-image: radial-gradient(circle, #7daea3 100%, transparent 0%); - } -} - -* { - background-clip: padding-box; - -gtktoolbutton-icon-spacing: 0; - -gtktextview-error-underline-color: #c14a4a; - -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: 12px; - -gtk-secondary-caret-color: #7daea3; -} - -*:focus { - outline-color: alpha(currentColor, 0.1); -} - -.thunar .standard-view.frame widget.view:selected, XfdesktopIconView.view:active, calendar.raven-calendar:selected, box.vertical > widget > widget:selected, calendar:selected, modelbutton.flat:selected, -.menuitem.button.flat:selected { - color: #fbf1c7; - background-color: alpha(currentColor, 0.1); -} - -.nautilus-window notebook .view:not(treeview) selection, .nautilus-window notebook .view:not(treeview):selected, .nautilus-window flowboxchild:selected .icon-item-background, flowbox flowboxchild:selected { - color: #7daea3; - background-color: rgba(125, 174, 163, 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 { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -treeview.view:selected, .view:selected { - color: rgba(29, 32, 33, 0.87); - background-color: #fbf1c7; -} - -.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: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: 12px; - border-bottom-left-radius: 12px; -} - -.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: 12px; - border-bottom-right-radius: 12px; -} - -.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: 12px; -} - -.linked.vertical > button, .linked.vertical > spinbutton.vertical, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry { - border-radius: 0; -} - -.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: 12px; - border-top-right-radius: 12px; -} - -.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: 12px; - border-bottom-right-radius: 12px; -} - -.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: 12px; -} - -/*************** - * Base States * - ***************/ -.background { - background-color: #1d2021; - color: #fbf1c7; -} - -.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: #1d2021; - color: #fbf1c7; -} - -.gtkstyle-fallback:hover { - background-color: #111313; - color: #fbf1c7; -} - -.gtkstyle-fallback:active { - background-color: #050606; - color: #fbf1c7; -} - -.gtkstyle-fallback:disabled { - background-color: #1d2021; - color: rgba(251, 241, 199, 0.5); -} - -.gtkstyle-fallback:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.view { - background-color: #1d2021; - color: #fbf1c7; -} - -.view:hover { - color: #7daea3; - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.2); -} - -.view:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.view:selected:hover { - box-shadow: none; -} - -window.background.csd > stack.view { - border-radius: 0 0 12px 12px; -} - -textview text { - background-color: rgba(251, 241, 199, 0.04); -} - -textview border { - background-color: #282524; - color: rgba(251, 241, 199, 0.7); -} - -iconview:hover, iconview:selected { - border-radius: 12px; -} - -.rubberband, -rubberband, -XfdesktopIconView.view .rubberband, -.content-view rubberband, -.content-view .rubberband, -treeview.view rubberband, -flowbox rubberband { - border: 1px solid #7daea3; - background-color: rgba(125, 174, 163, 0.3); -} - -flowbox flowboxchild { - padding: 3px; - border-radius: 12px; - color: #fbf1c7; -} - -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(251, 241, 199, 0.7); -} - -label:disabled { - color: rgba(251, 241, 199, 0.5); -} - -headerbar label:disabled, tab label:disabled, button label:disabled { - color: inherit; -} - -label.osd { - border-radius: 12px; - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; -} - -.dim-label { - color: rgba(251, 241, 199, 0.7); -} - -assistant .sidebar { - padding: 4px 0; -} - -assistant .sidebar label { - min-height: 36px; - padding: 0 12px; - color: rgba(251, 241, 199, 0.5); - font-weight: 500; -} - -assistant .sidebar label.highlight { - color: #fbf1c7; -} - -.osd .scale-popup.background, .app-notification, -.osd { - opacity: 0.9; -} - -/********************* - * 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 * - ****************/ -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry { - background-color: rgba(29, 32, 33, 0.04); - color: rgba(29, 32, 33, 0.87); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus { - color: rgba(29, 32, 33, 0.87); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:drop(active), -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:drop(active), -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:drop(active) { - color: rgba(29, 32, 33, 0.87); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:disabled, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:disabled, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:disabled { - background-color: rgba(29, 32, 33, 0.04); - color: rgba(29, 32, 33, 0.38); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry image, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry image, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry image { - color: rgba(29, 32, 33, 0.6); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry image:disabled, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry image:disabled, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry image:disabled { - color: rgba(29, 32, 33, 0.38); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:hover image, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:hover image, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:hover image, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus image, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus image, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus image { - color: rgba(29, 32, 33, 0.87); -} - -spinbutton.vertical, spinbutton:not(.vertical), -entry { - min-height: 36px; - padding: 0 8px; - border-radius: 12px; - 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(251, 241, 199, 0.08); - color: #fbf1c7; -} - -spinbutton.vertical:focus, spinbutton:focus:not(.vertical), -entry:focus { - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px #7daea3; -} - -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: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); -} - -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(251, 241, 199, 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: #fbf1c7; -} - -spinbutton.vertical image:disabled, spinbutton:not(.vertical) image:disabled, -entry image:disabled { - color: rgba(251, 241, 199, 0.5); -} - -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(251, 241, 199, 0.3) 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(251, 241, 199, 0.3) 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(251, 241, 199, 0.08); - color: #fbf1c7; -} - -spinbutton.error.vertical:focus, spinbutton.error:focus:not(.vertical), -entry.error:focus { - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px #c14a4a; -} - -spinbutton.error.vertical:disabled, spinbutton.error:disabled:not(.vertical), -entry.error:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); -} - -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(251, 241, 199, 0.08); - color: #fbf1c7; -} - -spinbutton.warning.vertical:focus, spinbutton.warning:focus:not(.vertical), -entry.warning:focus { - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px #b47109; -} - -spinbutton.warning.vertical:disabled, spinbutton.warning:disabled:not(.vertical), -entry.warning:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); -} - -spinbutton.vertical progress, spinbutton:not(.vertical) progress, -entry progress { - margin: 2px -8px; - border-bottom: 2px solid #7daea3; - background-color: transparent; -} - -treeview entry.flat, treeview entry { - background-color: #282524; -} - -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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.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(251, 241, 199, 0.7); -} - -/*********** - * Buttons * - ***********/ -@keyframes needs-attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#7daea3), to(transparent)); - } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#7daea3), to(transparent)); - } -} - -.xfce4-panel.background button, .raven-mpris button.image-button, .mate-panel-menu-bar button, infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, .app-notification button:not(.suggested-action):not(.destructive-action), frame.documents-dropdown .linked > button, .app-notification .linked > button, toolbar.osd .linked > button, frame.documents-dropdown button, .osd .scale-popup.background button, .app-notification button, toolbar.osd button { - color: rgba(251, 241, 199, 0.7); -} - -.xfce4-panel.background button:focus, .raven-mpris button.image-button:focus, .mate-panel-menu-bar button:focus, infobar.warning > revealer > box button:focus, .app-notification button:focus:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:focus, .osd .scale-popup.background button:focus, .app-notification button:focus, toolbar.osd button:focus, .xfce4-panel.background button:hover, .raven-mpris button.image-button:hover, .mate-panel-menu-bar button:hover, infobar.warning > revealer > box button:hover, .app-notification button:hover:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:hover, .osd .scale-popup.background button:hover, .app-notification button:hover, toolbar.osd button:hover, .xfce4-panel.background button:active, .raven-mpris button.image-button:active, .mate-panel-menu-bar button:active, infobar.warning > revealer > box button:active, .app-notification button:active:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:active, .osd .scale-popup.background button:active, .app-notification button:active, toolbar.osd button:active, .xfce4-panel.background button:checked, .raven-mpris button.image-button:checked, .mate-panel-menu-bar button:checked, infobar.warning > revealer > box button:checked, .app-notification button:checked:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:checked, .osd .scale-popup.background button:checked, .app-notification button:checked, toolbar.osd button:checked { - color: #fbf1c7; -} - -.xfce4-panel.background button:disabled, .raven-mpris button.image-button:disabled, .mate-panel-menu-bar button:disabled, infobar.warning > revealer > box button:disabled, .app-notification button:disabled:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:disabled, .osd .scale-popup.background button:disabled, .app-notification button:disabled, toolbar.osd button:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.xfce4-panel.background button:checked:disabled, .raven-mpris button.image-button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, infobar.warning > revealer > box button:checked:disabled, frame.documents-dropdown button:checked:disabled, .osd .scale-popup.background button:checked:disabled, .app-notification button:checked:disabled, toolbar.osd button:checked:disabled { - color: rgba(251, 241, 199, 0.5); -} - -actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.combo) { - background-color: #282524; - color: #fbf1c7; -} - -actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.combo) { - background-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat, terminal-window notebook > header > box button.flat, notebook > header > button.flat, notebook > header tab:not(:checked) button.flat { - color: rgba(29, 32, 33, 0.6); -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:hover, terminal-window notebook > header > box button.flat:hover, notebook > header > button.flat:hover, notebook > header tab:not(:checked) button.flat:hover, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:active, terminal-window notebook > header > box button.flat:active, notebook > header > button.flat:active, notebook > header tab:not(:checked) button.flat:active, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:focus, terminal-window notebook > header > box button.flat:focus, notebook > header > button.flat:focus, notebook > header tab:not(:checked) button.flat:focus { - color: rgba(29, 32, 33, 0.87); -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:checked, terminal-window notebook > header > box button.flat:checked, notebook > header > button.flat:checked, notebook > header tab:not(:checked) button.flat:checked { - background-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:disabled, terminal-window notebook > header > box button.flat:disabled, notebook > header > button.flat:disabled, notebook > header tab:not(:checked) button.flat:disabled { - color: rgba(29, 32, 33, 0.3); -} - -button { - 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-color: rgba(251, 241, 199, 0.08); - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - color: #fbf1c7; -} - -button:focus { - box-shadow: 0 0 0 2px rgba(125, 174, 163, 0.35); -} - -button:hover { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); -} - -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; - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); - background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); - background-size: 0% 0%; -} - -button:disabled { - box-shadow: none; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -button:checked { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -button:checked:hover { - box-shadow: inset 0 0 0 9999px transparent; -} - -button:checked:disabled { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.1); - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -.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 > button.flat, notebook > header 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: 12px; - font-weight: 500; -} - -button:drop(active) { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); -} - -.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, tabbox > tab button, 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, modelbutton.flat, -.menuitem.button.flat, spinbutton.vertical button, spinbutton:not(.vertical) button, .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, filechooser #pathbarbox > stack > box > button, messagedialog .dialog-action-box button, -messagedialog .dialog-action-box .linked:not(.vertical) > button, 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), 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); - outline: none; - box-shadow: inset 0 0 0 9999px transparent; - background-color: transparent; - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - color: rgba(251, 241, 199, 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, tabbox > tab button:focus, 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, modelbutton.flat:focus, -.menuitem.button.flat:focus, spinbutton.vertical button:focus, spinbutton:not(.vertical) button: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, filechooser #pathbarbox > stack > box > button:focus, messagedialog .dialog-action-box button:focus, -messagedialog .dialog-action-box .linked:not(.vertical) > button:focus, 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: #fbf1c7; -} - -.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, tabbox > tab button:hover, 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, modelbutton.flat:hover, -.menuitem.button.flat:hover, spinbutton.vertical button:hover, spinbutton:not(.vertical) button: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, filechooser #pathbarbox > stack > box > button:hover, messagedialog .dialog-action-box button:hover, -messagedialog .dialog-action-box .linked:not(.vertical) > button:hover, 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 { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); - color: #fbf1c7; -} - -.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, tabbox > tab button:active, 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, modelbutton.flat:active, -.menuitem.button.flat:active, spinbutton.vertical button:active, spinbutton:not(.vertical) button: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, filechooser #pathbarbox > stack > box > button:active, messagedialog .dialog-action-box button:active, -messagedialog .dialog-action-box .linked:not(.vertical) > button:active, 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; - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); - background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); - background-size: 0% 0%; - color: #fbf1c7; -} - -.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, tabbox > tab button:disabled, 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, modelbutton.flat:disabled, -.menuitem.button.flat:disabled, spinbutton.vertical button:disabled, spinbutton:not(.vertical) button: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, filechooser #pathbarbox > stack > box > button:disabled, messagedialog .dialog-action-box button:disabled, -messagedialog .dialog-action-box .linked:not(.vertical) > button:disabled, 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(251, 241, 199, 0.32); -} - -.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, filechooser #pathbarbox > stack > box > button:checked, messagedialog .dialog-action-box button:checked, -messagedialog .dialog-action-box .linked:not(.vertical) > button:checked, popover.background.menu button:checked, -popover.background button.model:checked, toolbar button:checked, combobox > .linked:not(.vertical) > button:checked:not(:only-child), button.flat:checked, button.flat:checked:hover { - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -.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, filechooser #pathbarbox > stack > box > button:checked:disabled, messagedialog .dialog-action-box button:checked:disabled, 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(251, 241, 199, 0.5); -} - -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: 12px; -} - -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: 12px; -} - -button.osd { - min-width: 24px; - min-width: 24px; - padding: 6px; - background-color: #1d2021; - color: #fbf1c7; -} - -button.osd:focus { - box-shadow: none; -} - -button.osd:hover { - background-color: #3e3f3a; - color: #fbf1c7; -} - -button.osd:active { - background-color: #55544b; - color: #fbf1c7; -} - -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: #45707a; - color: #fbf1c7; - box-shadow: none; -} - -button.suggested-action:disabled { - box-shadow: none; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -button.suggested-action:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(69, 112, 122, 0.2), 0 4px 3px 0 rgba(69, 112, 122, 0.14), 0 1px 6px 0 rgba(69, 112, 122, 0.12); -} - -button.suggested-action:checked { - background-color: #7c9791; -} - -button.suggested-action:checked:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(69, 112, 122, 0.3), 0 2px 3px -1px rgba(69, 112, 122, 0.24), 0 2px 5px 0 rgba(69, 112, 122, 0.12); -} - -button.suggested-action:focus { - box-shadow: 0 0 0 2px rgba(69, 112, 122, 0.35); -} - -button.suggested-action.flat { - background-color: transparent; - color: #45707a; -} - -button.suggested-action.flat:disabled { - box-shadow: none; - background-color: transparent; - color: rgba(251, 241, 199, 0.32); -} - -button.suggested-action.flat:checked { - background-color: rgba(69, 112, 122, 0.3); -} - -button.destructive-action { - background-color: #c14a4a; - color: #fbf1c7; - box-shadow: none; -} - -button.destructive-action:disabled { - box-shadow: none; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -button.destructive-action:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(193, 74, 74, 0.2), 0 4px 3px 0 rgba(193, 74, 74, 0.14), 0 1px 6px 0 rgba(193, 74, 74, 0.12); -} - -button.destructive-action:checked { - background-color: #d27c70; -} - -button.destructive-action:checked:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(193, 74, 74, 0.3), 0 2px 3px -1px rgba(193, 74, 74, 0.24), 0 2px 5px 0 rgba(193, 74, 74, 0.12); -} - -button.destructive-action:focus { - box-shadow: 0 0 0 2px rgba(193, 74, 74, 0.35); -} - -button.destructive-action.flat { - background-color: transparent; - color: #c14a4a; -} - -button.destructive-action.flat:disabled { - box-shadow: none; - background-color: transparent; - color: rgba(251, 241, 199, 0.32); -} - -button.destructive-action.flat:checked { - background-color: rgba(193, 74, 74, 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: 36px; - min-height: 36px; - padding: 0; -} - -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; -} - -button.color { - min-height: 24px; - min-width: 24px; - padding: 6px; -} - -/********* - * Links * - *********/ -*:link { - color: #83b193; -} - -*:visited { - color: #ab62b1; -} - -button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active { - color: #83b193; -} - -button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active { - color: #ab62b1; -} - -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(251, 241, 199, 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(251, 241, 199, 0.5); -} - -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(251, 241, 199, 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: 12px; -} - -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: 12px; -} - -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: 12px; - 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(251, 241, 199, 0.08); - color: #fbf1c7; -} - -button.combo:only-child:focus { - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px rgba(251, 241, 199, 0.3); -} - -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(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px #7daea3; -} - -button.combo:only-child:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); -} - -/************ - * Toolbars * - ************/ -toolbar { - -gtkwidget-window-dragging: true; - padding: 2px 3px; - background-color: #1d2021; -} - -toolbar .linked -> button:not(:hover):not(:active):not(:checked):not(:focus):not( -:disabled -) { - background-color: alpha(currentColor, 0.05); -} - -.osd toolbar { - background-color: transparent; -} - -frame.documents-dropdown, .osd .scale-popup.background, .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(251, 241, 199, 0.1); - background-color: #1d2021; - color: #fbf1c7; -} - -frame.documents-dropdown:backdrop, .osd .scale-popup.background:backdrop, .app-notification:backdrop, toolbar.osd:backdrop { - box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.2), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(251, 241, 199, 0.1); -} - -frame.left.documents-dropdown, .osd .left.scale-popup.background, .left.app-notification, frame.right.documents-dropdown, .osd .right.scale-popup.background, .right.app-notification, frame.top.documents-dropdown, .osd .top.scale-popup.background, .top.app-notification, frame.bottom.documents-dropdown, .osd .bottom.scale-popup.background, .bottom.app-notification, toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { - border-radius: 0; -} - -frame.bottom.documents-dropdown, .osd .bottom.scale-popup.background, .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)); -} - -frame.documents-dropdown entry, .osd .scale-popup.background entry, .app-notification entry, -frame.documents-dropdown button, -.osd .scale-popup.background button, -.app-notification button, toolbar.osd entry, -toolbar.osd button { - border-radius: 12px; -} - -frame.documents-dropdown entry, .osd .scale-popup.background entry, .app-notification entry, toolbar.osd entry { - color: #fbf1c7; -} - -frame.documents-dropdown .linked > button:first-child, .osd .scale-popup.background .linked > button:first-child, .app-notification .linked > button:first-child, toolbar.osd .linked > button:first-child { - border-radius: 12px 0 0 12px; -} - -frame.documents-dropdown .linked > button:last-child, .osd .scale-popup.background .linked > button:last-child, .app-notification .linked > button:last-child, toolbar.osd .linked > button:last-child { - border-radius: 0 12px 12px 0; -} - -toolbar.horizontal > separator { - margin: 2px; -} - -toolbar.vertical > separator { - margin: 2px; -} - -toolbar:not(.inline-toolbar):not(.osd) scale, -toolbar:not(.inline-toolbar):not(.osd) entry, -toolbar:not(.inline-toolbar):not(.osd) spinbutton, -toolbar:not(.inline-toolbar):not(.osd) button { - margin: 2px 1px; -} - -toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), -toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), -toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { - margin-left: 0; -} - -toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), -toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), -toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { - margin-right: 0; -} - -toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, -toolbar:not(.inline-toolbar):not(.osd) spinbutton button { - margin: 0; -} - -toolbar:not(.inline-toolbar):not(.osd) switch { - margin: 8px 2px; -} - -.toolbar { - background-color: #1d2021; -} - -frame .toolbar { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -.inline-toolbar { - padding: 6px; - border-style: solid; - border-width: 0 1px 1px; - border-color: rgba(251, 241, 199, 0.12); - background-color: #282524; - border-radius: 0 0 9px 9px; -} - -.frame .inline-toolbar { - border-width: 1px 0 0; - background-color: transparent; -} - -searchbar > revealer > box, -.location-bar { - padding: 6px; - border: none; - background-color: #1d2021; -} - -searchbar > revealer > box { - margin: -6px; -} - -/*************** - * Header bars * - ***************/ -.nemo-window .primary-toolbar button:not(.text-button), .titlebar button:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); - border-radius: 9999px; -} - -.nemo-window .primary-toolbar .linked > button:not(.text-button), .titlebar .linked > button:not(.suggested-action):not(.destructive-action) { - border-radius: 0; -} - -.nemo-window .primary-toolbar .linked > button:first-child:not(.text-button), .titlebar .linked > button:first-child:not(.suggested-action):not(.destructive-action) { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; -} - -.nemo-window .primary-toolbar .linked > button:last-child:not(.text-button), .titlebar .linked > button:last-child:not(.suggested-action):not(.destructive-action) { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; -} - -.nemo-window .primary-toolbar .linked > button:only-child:not(.text-button), .titlebar .linked > button:only-child:not(.suggested-action):not(.destructive-action) { - border-radius: 9999px; -} - -.nemo-window .primary-toolbar button:hover:not(.text-button), .titlebar button:hover:not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 0 0 9999px rgba(251, 241, 199, 0.12); -} - -.nemo-window .primary-toolbar button:checked:not(.text-button), .titlebar button:checked:not(.suggested-action):not(.destructive-action) { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.nemo-window .primary-toolbar button:checked:hover:not(.text-button), .titlebar button:checked:hover:not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 0 0 9999px rgba(29, 32, 33, 0.04); - color: rgba(29, 32, 33, 0.87); -} - -.nemo-window .primary-toolbar button:checked:focus:not(.text-button), .titlebar button:checked:focus:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.87); - box-shadow: none; -} - -.nemo-window .primary-toolbar button:checked:disabled:not(.text-button), .titlebar button:checked:disabled:not(.suggested-action):not(.destructive-action) { - background-color: rgba(251, 241, 199, 0.5); - color: rgba(29, 32, 33, 0.38); -} - -.nemo-window .primary-toolbar button:focus:not(.text-button), .titlebar button:focus:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:hover:not(.text-button), .titlebar button:hover:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:active:not(.text-button), .titlebar button:active:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; -} - -.nemo-window .primary-toolbar button:disabled:not(.text-button), .titlebar button:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -.nemo-window .primary-toolbar button:backdrop:not(.text-button), .titlebar button:backdrop:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.5); -} - -.nemo-window .primary-toolbar button:backdrop:focus:not(.text-button), .titlebar button:backdrop:focus:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:backdrop:hover:not(.text-button), .titlebar button:backdrop:hover:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:backdrop:active:not(.text-button), .titlebar button:backdrop:active:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); -} - -.nemo-window .primary-toolbar button:backdrop:disabled:not(.text-button), .titlebar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -.nemo-window .primary-toolbar button:backdrop:checked:not(.text-button), .titlebar button:backdrop:checked:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.6); -} - -.nemo-window .primary-toolbar button:backdrop:checked:disabled:not(.text-button), .titlebar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.3); -} - -.nemo-window .primary-toolbar entry, .titlebar entry { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; - border-radius: 9999px; -} - -.nemo-window .primary-toolbar entry:disabled, .titlebar entry:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -.nemo-window .primary-toolbar entry image, .titlebar entry image { - color: rgba(251, 241, 199, 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: #fbf1c7; -} - -.nemo-window .primary-toolbar entry image:disabled, .titlebar entry image:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.titlebar { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #1d2021; - color: #fbf1c7; - border-radius: 12px 12px 0 0; - border: none; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.titlebar:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.titlebar:backdrop { - color: rgba(251, 241, 199, 0.7); -} - -.titlebar:backdrop:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.csd .titlebar:backdrop { - background-color: #1d2021; -} - -.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(251, 241, 199, 0.7); -} - -.titlebar .subtitle:backdrop, -.titlebar .dim-label:backdrop { - color: rgba(251, 241, 199, 0.5); -} - -.titlebar .titlebar, -.titlebar headerbar { - background-color: transparent; - box-shadow: none; -} - -.titlebar + separator, -.titlebar + separator.sidebar { - background-color: #1d2021; - background-image: none; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.titlebar + separator:backdrop, -.titlebar + separator.sidebar:backdrop { - background-color: #1d2021; -} - -.titlebar.selection-mode + separator, .titlebar.selection-mode + separator.sidebar, .selection-mode .titlebar + separator, .selection-mode .titlebar + separator.sidebar { - background-color: #7daea3; -} - -.titlebar.selection-mode + separator:backdrop, .titlebar.selection-mode + separator.sidebar:backdrop, .selection-mode .titlebar + separator:backdrop, .selection-mode .titlebar + separator.sidebar:backdrop { - background-color: #7daea3; -} - -.titlebar button.suggested-action:disabled, -.titlebar button.destructive-action:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -.titlebar stackswitcher { - background-color: rgba(251, 241, 199, 0.04); -} - -.titlebar stackswitcher:checked { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -.titlebar stackswitcher:checked:hover { - background-color: #fefdf7; -} - -.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { - border-radius: 9999px; -} - -.titlebar .path-bar -button:not(.suggested-action):not(.destructive-action).text-button { - 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: #7daea3; - color: rgba(29, 32, 33, 0.87); - box-shadow: inset 0 1px rgba(251, 241, 199, 0.2); -} - -.titlebar.selection-mode:backdrop { - color: rgba(29, 32, 33, 0.6); - background-color: #90bab0; -} - -.titlebar.selection-mode .subtitle:link { - color: rgba(29, 32, 33, 0.87); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.87); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { - color: rgba(29, 32, 33, 0.38); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { - color: rgba(29, 32, 33, 0.87); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { - color: rgba(29, 32, 33, 0.38); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:not(.titlebutton) { - color: rgba(29, 32, 33, 0.6); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { - color: rgba(29, 32, 33, 0.3); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { - color: rgba(29, 32, 33, 0.6); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { - color: rgba(29, 32, 33, 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; - border: none; - background-color: #1d2021; - background-image: none; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.titlebar.default-decoration:backdrop { - background-color: #1d2021; -} - -.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; -} - -.titlebar.default-decoration button.titlebutton.minimize:active, .titlebar.default-decoration button.titlebutton.maximize:active, .titlebar.default-decoration button.titlebutton.close:active { - color: rgba(29, 32, 33, 0.87); - background-image: none; - animation: none; - box-shadow: none; - background-color: rgba(206, 198, 165, 0.9675); -} - -.background.csd .titlebar.default-decoration { - padding: 6px; -} - -.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 headerbar { - background-color: #1d2021; -} - -headerbar entry, -headerbar spinbutton, -headerbar button, -headerbar stackswitcher { - margin-top: 6px; - margin-bottom: 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 { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 0 0 12px 12px; -} - -headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not( -.destructive-action -) { - border-radius: 9px; - margin: 6px 3px; - min-width: 120px; - padding: 0; -} - -headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not( -.destructive-action -):not(:hover):not(:active):not(:checked) { - background-color: transparent; -} - -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 { - 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; - 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: 6px; - margin-left: 1px; - margin-right: 1px; - background-color: alpha(currentColor, 0.08); -} - -.caja-pathbar button:disabled, -.path-bar.linked:not(.vertical) > button:disabled { - background-color: alpha(currentColor, 0.05); -} - -.caja-pathbar button:first-child, -.path-bar.linked:not(.vertical) > button:first-child { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -.caja-pathbar button:last-child, -.path-bar.linked:not(.vertical) > button:last-child { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -.caja-pathbar button:checked, -.path-bar.linked:not(.vertical) > button:checked { - background-color: alpha(currentColor, 0.16); - color: #fbf1c7; -} - -.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(251, 241, 199, 0.12); - border-top-color: rgba(251, 241, 199, 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.separator { - min-height: 6px; - color: rgba(251, 241, 199, 0.12); -} - -treeview.view:drop(active) { - border-style: solid none; - border-width: 9999px; - border-color: alpha(currentColor, 0.08); -} - -treeview.view:drop(active).after { - border-top-style: none; -} - -treeview.view:drop(active).before { - border-bottom-style: none; -} - -treeview.view.expander { - color: rgba(251, 241, 199, 0.7); - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - -gtk-icon-transform: rotate(-90deg); -} - -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: #fbf1c7; -} - -treeview.view.expander:disabled { - color: rgba(251, 241, 199, 0.32); -} - -treeview.view.expander:selected { - color: rgba(29, 32, 33, 0.6); -} - -treeview.view.expander:selected:hover, treeview.view.expander:selected:active { - color: rgba(29, 32, 33, 0.87); -} - -treeview.view.expander:selected:disabled { - color: rgba(29, 32, 33, 0.3); -} - -treeview.view.progressbar { - border: none; - box-shadow: none; - background-color: #7daea3; - background-image: none; - border-radius: 9999px; - color: rgba(29, 32, 33, 0.87); -} - -treeview.view.progressbar:selected, treeview.view.progressbar:selected:hover, treeview.view.progressbar:selected:focus { - box-shadow: none; - background-color: #90b8a8; - color: rgba(29, 32, 33, 0.87); -} - -treeview.view.progressbar:selected:backdrop, treeview.view.progressbar:selected:hover:backdrop, treeview.view.progressbar:selected:focus:backdrop { - color: rgba(29, 32, 33, 0.87); -} - -treeview.view.progressbar:backdrop, treeview.view.progressbar:selected:backdrop { - background-color: rgba(251, 241, 199, 0.3); -} - -treeview.view.trough { - border: none; - box-shadow: none; - background-color: rgba(251, 241, 199, 0.12); - 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(251, 241, 199, 0.12); -} - -treeview.view.trough:backdrop, treeview.view.trough:selected:backdrop { - background-color: rgba(251, 241, 199, 0.12); -} - -treeview.view header button { - padding: 2px 6px; - border: none; - border-right: 1px solid transparent; - border-color: rgba(251, 241, 199, 0.12); - border-radius: 0; - background-clip: border-box; - border-image: linear-gradient(to bottom, transparent 20%, rgba(251, 241, 199, 0.12) 20%, rgba(251, 241, 199, 0.12) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; -} - -treeview.view header button:not(:focus):not(:hover):not(:active) { - color: rgba(251, 241, 199, 0.7); -} - -treeview.view header button, treeview.view header button:disabled { - background-color: #282524; -} - -treeview.view header button:last-child { - border-right: none; - border-image: none; -} - -treeview.view button.dnd, -treeview.view header.button.dnd { - padding: 2px 6px; - border-style: none solid solid; - border-width: 1px; - border-color: rgba(251, 241, 199, 0.12); - border-radius: 0; - box-shadow: none; - background-color: #282524; - background-clip: border-box; - color: #7daea3; -} - -treeview.view acceleditor > label { - background-color: #7daea3; -} - -/********* - * Menus * - *********/ -menubar, -.menubar { - -gtkwidget-window-dragging: true; - padding: 0; - background-color: #1d2021; - color: #fbf1c7; -} - -menubar:backdrop, -.menubar:backdrop { - color: rgba(251, 241, 199, 0.7); - background-color: #1d2021; -} - -.csd menubar, .csd .menubar { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); -} - -menubar > menuitem, -.menubar > menuitem { - transition: none; - min-height: 20px; - padding: 4px 8px; - color: rgba(251, 241, 199, 0.7); - border-radius: 12px; -} - -menubar > menuitem:hover, -.menubar > menuitem:hover { - transition: none; - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -menubar > menuitem:backdrop, -.menubar > menuitem:backdrop { - color: rgba(251, 241, 199, 0.5); -} - -menubar > menuitem:disabled, -.menubar > menuitem:disabled { - color: rgba(251, 241, 199, 0.32); -} - -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 { - margin: 6px; - padding: 6px; - background-color: #141617; - background-clip: border-box; - border-radius: 12px; - border: 1px solid #7daea3; -} - -.csd menu { - border: none; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -menu menuitem { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - min-height: 20px; - min-width: 40px; - padding: 4px 8px; - color: #fbf1c7; - font: initial; - text-shadow: none; - border-radius: 12px; -} - -menu menuitem:hover { - transition: none; - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; -} - -menu menuitem:hover accelerator { - color: #7daea3; -} - -menu menuitem:hover:disabled accelerator { - color: rgba(29, 32, 33, 0.3); -} - -menu menuitem:active { - background-color: alpha(currentColor, 0.12); -} - -menu menuitem:disabled { - color: rgba(251, 241, 199, 0.5); -} - -menu menuitem accelerator { - color: rgba(251, 241, 199, 0.7); -} - -menu menuitem:disabled accelerator { - color: rgba(251, 241, 199, 0.32); -} - -menu menuitem arrow { - min-height: 16px; - min-width: 16px; -} - -menu menuitem arrow:dir(ltr) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - margin-left: 8px; -} - -menu menuitem arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); - margin-right: 8px; -} - -menu menuitem label:dir(rtl), menu menuitem label:dir(ltr) { - color: inherit; -} - -menu .view:selected { - background-color: #3d3934; -} - -menu > arrow { - min-height: 16px; - min-width: 16px; - padding: 4px; - background-color: #141617; - color: rgba(251, 241, 199, 0.7); -} - -menu > arrow.top { - margin-top: 0; - border-radius: 12px; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); -} - -menu > arrow.bottom { - margin-top: 8px; - margin-bottom: -12px; - border-radius: 12px; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -menu > arrow:hover { - background-image: image(alpha(currentColor, 0.08)); - color: #fbf1c7; -} - -menu > arrow:disabled { - border-color: transparent; - background-color: transparent; - color: transparent; -} - -menu separator { - margin: 3px 0; - background-color: transparent; -} - -/************ - * Popovers * - ************/ -popover.background { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - padding: 0; - background-color: #141617; - border-radius: 12px; -} - -popover.background, .csd popover.background { - 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); - 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), inset 0 1px rgba(251, 241, 199, 0.1), 0 0 36px transparent; -} - -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: 0; -} - -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: 12px; - padding: 6px; -} - -popover.background .view:not(:selected), -popover.background toolbar { - background-color: #141617; -} - -popover.background button, -popover.background entry, -popover.background combobox { - border-radius: 12px; -} - -popover.background .linked > button:not(.radio) { - border-radius: 12px; -} - -popover.background .linked > button:not(.radio):first-child { - border-radius: 12px; -} - -popover.background .linked > button:not(.radio):last-child { - border-radius: 12px; -} - -popover.background .linked > button:not(.radio):only-child { - border-radius: 12px; -} - -popover.background.menu button, -popover.background button.model { - min-height: 32px; - padding: 0 8px; - border-radius: 12px; -} - -popover.background separator { - margin: 3px 0; - background-color: transparent; -} - -popover.background list separator { - margin: 0; -} - -modelbutton.flat, -.menuitem.button.flat { - min-height: 28px; - padding: 0 8px; - border-radius: 12px; - color: #fbf1c7; -} - -modelbutton.flat arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); -} - -modelbutton.flat arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); -} - -/************* - * Notebooks * - *************/ -tabbox > tab, notebook > header 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 12px; - border: none; - outline: none; - background-clip: padding-box; - color: #fbf1c7; - font-weight: 500; - border-radius: 9px; -} - -tabbox > tab:hover, notebook > header tab:hover { - background-color: rgba(29, 32, 33, 0.12); - color: #7daea3; -} - -tabbox > tab:disabled, notebook > header tab:disabled { - color: rgba(29, 32, 33, 0.3); -} - -tabbox > tab:checked, notebook > header tab:checked { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #282524; - color: #7daea3; -} - -tabbox > tab:checked:disabled, notebook > header tab:checked:disabled { - color: rgba(251, 241, 199, 0.5); -} - -notebook > header.bottom > tabs > arrow, notebook > header.top > tabs > arrow { - padding-left: 4px; - padding-right: 4px; -} - -notebook > header.bottom > tabs > arrow.down, notebook > header.top > tabs > arrow.down { - margin-left: 0; - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); -} - -notebook > header.bottom > tabs > arrow.up, notebook > header.top > tabs > arrow.up { - margin-right: 0; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); -} - -notebook > header.right > tabs > arrow, notebook > header.left > tabs > arrow { - padding-top: 4px; - padding-bottom: 4px; -} - -notebook > header.right > tabs > arrow.down, notebook > header.left > tabs > arrow.down { - margin-top: 0; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); -} - -notebook > header.right > tabs > arrow.up, notebook > header.left > tabs > arrow.up { - margin-bottom: 0; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -notebook { - background-color: rgba(251, 241, 199, 0.04); -} - -window.background > notebook { - background-color: transparent; -} - -notebook.frame { - border: none; - border-radius: 9px; -} - -notebook.frame scrolledwindow.frame { - border: none; -} - -notebook.frame frame > border { - border: none; - border-radius: 9px; -} - -notebook.frame frame > list row.activatable { - border-radius: 12px; -} - -notebook > header { - border: none; - background-color: rgba(251, 241, 199, 0.04); - padding: 3px; - margin: 3px; - border-radius: 12px; -} - -notebook > header > tabs > arrow { - min-height: 16px; - min-width: 16px; - border-radius: 9px; - color: rgba(29, 32, 33, 0.6); -} - -notebook > header > tabs > arrow:hover, notebook > header > tabs > arrow:active { - color: rgba(29, 32, 33, 0.87); -} - -notebook > header > tabs > arrow:disabled { - color: rgba(29, 32, 33, 0.3); -} - -notebook > header.top > tabs > arrow { - border-top-style: none; -} - -notebook > header.bottom > tabs > arrow { - border-bottom-style: none; -} - -notebook > header.left > tabs > arrow { - border-left-style: none; -} - -notebook > header.right > tabs > arrow { - border-right-style: none; -} - -notebook > header tab > box { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - margin: -6px -12px; - padding: 6px 12px; -} - -notebook > header tab > box:drop(active) { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -notebook > header tab button.flat:last-child { - margin-left: 6px; - margin-right: -6px; -} - -notebook > header tab button.flat:first-child { - margin-left: -6px; - margin-right: 6px; -} - -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 + tab, -notebook > header.top tabs tab + arrow, notebook > header.bottom tabs tab + tab, -notebook > header.bottom tabs tab + arrow { - margin-left: 3px; -} - -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 + tab, -notebook > header.left tabs tab + arrow, notebook > header.right tabs tab + tab, -notebook > header.right tabs tab + arrow { - margin-top: 3px; -} - -notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { - border-style: solid; -} - -notebook > header > button.flat { - padding: 3px; -} - -notebook > stack:not(:only-child) { - background-color: transparent; - border-radius: 12px; -} - -/************** - * Scrollbars * - **************/ -scrollbar { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #282524; -} - -* { - -gtkscrollbar-has-backward-stepper: false; - -gtkscrollbar-has-forward-stepper: false; -} - -scrollbar.top { - border-bottom: 1px solid transparent; -} - -scrollbar.bottom { - border-top: 1px solid transparent; -} - -scrollbar.left { - border-right: 1px solid transparent; -} - -scrollbar.right { - border-left: 1px solid transparent; -} - -scrollbar slider { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - min-width: 8px; - min-height: 8px; - border: 4px solid transparent; - border-radius: 9999px; - background-clip: padding-box; - background-color: rgba(251, 241, 199, 0.5); -} - -scrollbar slider:hover { - background-color: rgba(251, 241, 199, 0.7); -} - -scrollbar slider:active { - background-color: #fbf1c7; -} - -scrollbar slider:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -scrollbar.fine-tune slider { - min-width: 4px; - min-height: 4px; -} - -scrollbar.fine-tune.horizontal slider { - margin: 2px 0; -} - -scrollbar.fine-tune.vertical slider { - margin: 0 2px; -} - -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: 3px; - border: 1px solid rgba(40, 37, 36, 0.3); -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - min-width: 4px; - min-height: 4px; - margin: 3px; - border: 1px solid rgba(40, 37, 36, 0.3); - border-radius: 9999px; - background-color: rgba(251, 241, 199, 0.5); - background-clip: padding-box; - -gtk-icon-source: none; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - min-width: 24px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { - min-width: 8px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - min-height: 24px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { - min-height: 8px; -} - -scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - background-color: transparent; -} - -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(251, 241, 199, 0.32); - background-clip: padding-box; - font-size: 0; - color: transparent; -} - -switch:checked { - background-color: #7daea3; -} - -switch:disabled { - opacity: 0.5; -} - -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: rgba(29, 32, 33, 0.6); - border: none; - color: transparent; -} - -switch:focus slider, switch:hover slider, switch:focus:hover slider { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.12); -} - -/************************* - * Check and Radio items * - *************************/ -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; -} - -actionbar > revealer > box check:not(:checked):not(:indeterminate), -actionbar > revealer > box radio:not(:checked):not(:indeterminate) { - background-color: rgba(29, 32, 33, 0.12); -} - -actionbar > revealer > box check:not(:checked):not(:indeterminate):hover, -actionbar > revealer > box radio:not(:checked):not(:indeterminate):hover { - box-shadow: 0 0 0 6px rgba(29, 32, 33, 0.04); - background-color: rgba(29, 32, 33, 0.15); -} - -actionbar > revealer > box check:not(:checked):not(:indeterminate):active, -actionbar > revealer > box radio:not(:checked):not(:indeterminate):active { - box-shadow: 0 0 0 6px rgba(29, 32, 33, 0.12); - background-color: rgba(29, 32, 33, 0.2); -} - -actionbar > revealer > box check:not(:checked):not(:indeterminate):disabled, -actionbar > revealer > box radio:not(:checked):not(:indeterminate):disabled { - background-color: rgba(29, 32, 33, 0.04); -} - -check, -radio { - min-height: 20px; - min-width: 20px; - margin: 3px; - padding: 0; - border-radius: 9999px; - color: transparent; - background-color: rgba(251, 241, 199, 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(251, 241, 199, 0.04); - background-color: rgba(251, 241, 199, 0.15); -} - -check:active, -radio:active { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.2); -} - -check:disabled, -radio:disabled { - background-color: rgba(251, 241, 199, 0.04); -} - -check:checked, check:indeterminate, -radio:checked, -radio:indeterminate { - color: rgba(29, 32, 33, 0.6); - background-color: #7daea3; -} - -check:checked:hover, check:indeterminate:hover, -radio:checked:hover, -radio:indeterminate:hover { - box-shadow: 0 0 0 6px rgba(125, 174, 163, 0.15); - background-color: #9cc2b9; -} - -check:checked:active, check:indeterminate:active, -radio:checked:active, -radio:indeterminate:active { - box-shadow: 0 0 0 6px rgba(125, 174, 163, 0.2); - background-color: #7daea3; -} - -check:checked:disabled, check:indeterminate:disabled, -radio:checked:disabled, -radio:indeterminate:disabled { - color: rgba(29, 32, 33, 0.3); - background-color: rgba(125, 174, 163, 0.35); -} - -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; - background-image: 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: -3px; -} - -menu menuitem check:dir(rtl), menu menuitem radio:dir(rtl) { - margin-left: 6px; - margin-right: -3px; -} - -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-scaled(-gtk-recolor(url("assets/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/checkbox-checked-symbolic@2.svg"))); -} - - -check:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/checkbox-mixed-symbolic@2.svg"))); -} - - -radio:checked { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/radio-checked-symbolic@2.svg"))); -} - - -radio:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/radio-mixed-symbolic@2.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-scaled(-gtk-recolor(url("assets/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/small-checkbox-checked-symbolic@2.svg"))); -} - -#MozillaGtkWidget > widget > checkbutton > check:indeterminate, -menu menuitem check:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/small-checkbox-mixed-symbolic@2.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-scaled(-gtk-recolor(url("assets/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/small-radio-checked-symbolic@2.svg"))); -} - -#MozillaGtkWidget > widget > radiobutton > radio:indeterminate, -menu menuitem radio:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/small-radio-mixed-symbolic@2.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; - background-color: rgba(251, 241, 199, 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:selected:not(:disabled):not(:checked):not(:indeterminate), -treeview.view check:selected:not(:disabled):not(:checked):not(:indeterminate) { - background-color: rgba(29, 32, 33, 0.12); -} - -treeview.view radio:checked, treeview.view radio:indeterminate, -treeview.view check:checked, -treeview.view check:indeterminate { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - background-image: none; -} - -.view.content-view.check:not(list), -.content-view .tile check:not(list) { - min-height: 40px; - min-width: 40px; - margin: 0; - padding: 0; - border-radius: 9999px; -} - -.view.content-view.check:not(list):not(:checked), -.content-view .tile check:not(list):not(:checked) { - background-image: image(rgba(251, 241, 199, 0.25)); -} - -.view.content-view.check:not(list):hover, .view.content-view.check:not(list):checked, -.content-view .tile check:not(list):hover, -.content-view .tile check:not(list):checked { - box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1); -} - -.view.content-view.check:not(list):checked, -.content-view .tile check:not(list):checked { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/checkbox-checked-symbolic@2.svg"))); -} - -/************ - * GtkScale * - ************/ -scale { - min-height: 2px; - min-width: 2px; -} - -scale.horizontal { - padding: 17px 12px; -} - -scale.vertical { - padding: 12px 17px; -} - -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(251, 241, 199, 0.3); -} - -scale trough:disabled { - background-color: rgba(251, 241, 199, 0.12); -} - -scale highlight { - transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); - background-image: image(#7daea3); -} - -scale highlight:disabled { - background-color: #1d2021; - background-image: image(rgba(251, 241, 199, 0.32)); -} - -scale fill { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.3); -} - -scale fill:disabled { - background-color: transparent; -} - -scale slider { - min-height: 18px; - min-width: 18px; - margin: -8px; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - border-radius: 9999px; - color: #7daea3; - background-color: #282524; - box-shadow: inset 0 0 0 2px #7daea3; -} - -scale slider:hover { - box-shadow: inset 0 0 0 2px #7daea3, 0 0 0 8px rgba(251, 241, 199, 0.12); -} - -scale slider:active { - box-shadow: inset 0 0 0 4px #7daea3, 0 0 0 8px rgba(251, 241, 199, 0.12); -} - -scale slider:disabled { - box-shadow: inset 0 0 0 2px rgba(251, 241, 199, 0.32); -} - -scale marks, -scale value { - color: rgba(251, 241, 199, 0.7); -} - -scale.marks-before:not(.marks-after) slider, scale.marks-after:not(.marks-before) slider { - min-height: 24px; - min-width: 24px; - margin: -11px; - background-color: transparent; - box-shadow: none; - color: #7daea3; -} - -scale.marks-before:not(.marks-after) slider:hover, scale.marks-after:not(.marks-before) slider:hover { - box-shadow: 0 0 0 4px rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.12); -} - -scale.marks-before:not(.marks-after) slider:active, scale.marks-after:not(.marks-before) slider:active { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.12); -} - -scale.marks-before:not(.marks-after) slider:disabled, scale.marks-after:not(.marks-before) slider:disabled { - color: #4d6762; -} - -scale.horizontal.marks-before:not(.marks-after) slider { - -gtk-icon-source: -gtk-recolor(url("assets/scale-horz-marks-before-slider-symbolic.svg")); -} - -scale.horizontal.marks-after:not(.marks-before) slider { - -gtk-icon-source: -gtk-recolor(url("assets/scale-horz-marks-after-slider-symbolic.svg")); -} - -scale.vertical.marks-before:not(.marks-after) slider { - -gtk-icon-source: -gtk-recolor(url("assets/scale-vert-marks-before-slider-symbolic.svg")); -} - -scale.vertical.marks-after:not(.marks-before) slider { - -gtk-icon-source: -gtk-recolor(url("assets/scale-vert-marks-after-slider-symbolic.svg")); -} - -scale indicator { - background-color: rgba(251, 241, 199, 0.3); - color: transparent; -} - -scale.horizontal indicator { - min-height: 8px; - min-width: 1px; -} - -scale.vertical indicator { - min-height: 1px; - min-width: 8px; -} - -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(251, 241, 199, 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: 12px; - background-color: rgba(251, 241, 199, 0.12); -} - -progressbar progress { - border-radius: 12px; - background-color: #7daea3; -} - -progressbar.osd { - min-width: 6px; - min-height: 6px; - background-color: transparent; -} - -progressbar.osd trough { - background-color: transparent; -} - -progressbar.osd progress { - background-color: #7daea3; -} - -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: 12px; -} - -levelbar block.low { - background-color: #b47109; -} - -levelbar block.high, levelbar block:not(.empty) { - background-color: #7daea3; -} - -levelbar block.full { - background-color: #6c782e; -} - -levelbar block.empty { - background-color: rgba(251, 241, 199, 0.12); -} - -/**************** - * Print dialog * -*****************/ -printdialog paper { - padding: 0; - border: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; - color: #fbf1c7; -} - -printdialog .dialog-action-box { - margin: 12px; -} - -/********** - * Frames * - **********/ -frame > border, .frame { - margin: 0; - padding: 0; - border: 1px solid rgba(251, 241, 199, 0.12); - border-radius: 0; - box-shadow: none; -} - -.frame.view { - border-radius: 12px; -} - -.frame.flat { - border-style: none; -} - -frame.flat > border, frame > border.flat, statusbar frame > border { - border: none; -} - -actionbar > revealer > box { - margin: 6px 0 0 0; - padding: 6px; - border: none; - color: #fbf1c7; - background-color: #1d2021; - border-radius: 0 0 12px 12px; -} - -actionbar > revealer > box button { - border-radius: 6px; -} - -actionbar > revealer > box button.combo:only-child { - border-radius: 6px; - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); -} - -actionbar > revealer > box button.combo:only-child:hover, actionbar > revealer > box button.combo:only-child:active { - color: #7daea3; -} - -actionbar > revealer > box button.combo:only-child:disabled { - color: #7daea3; -} - -actionbar > revealer > box stackswitcher { - background-color: rgba(29, 32, 33, 0.04); -} - -actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.6); -} - -actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):hover, actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):active { - color: rgba(29, 32, 33, 0.87); -} - -actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked { - background-color: #282524; - color: #fbf1c7; -} - -actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked:hover { - background-color: #282524; -} - -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(251, 241, 199, 0.12)), to(rgba(251, 241, 199, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(251, 241, 199, 0.07)), to(rgba(251, 241, 199, 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(251, 241, 199, 0.12)), to(rgba(251, 241, 199, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(251, 241, 199, 0.07)), to(rgba(251, 241, 199, 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(251, 241, 199, 0.12)), to(rgba(251, 241, 199, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(251, 241, 199, 0.07)), to(rgba(251, 241, 199, 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(251, 241, 199, 0.12)), to(rgba(251, 241, 199, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(251, 241, 199, 0.07)), to(rgba(251, 241, 199, 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(251, 241, 199, 0.12); - background-color: #282524; -} - -junction:dir(rtl) { - border-style: solid solid none none; -} - -separator { - min-width: 0; - min-height: 0; - background-color: transparent; -} - -preferences stacksidebar.sidebar list 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, list.content:not(.conversation-listbox) { - border-radius: 12px; - box-shadow: none; - border: none; - background-color: transparent; -} - -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, 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, list.content:not(.conversation-listbox) > row { - border-radius: 3px; - background-color: rgba(251, 241, 199, 0.04); -} - -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), list.content:not(.conversation-listbox) > row:not(:first-child) { - margin-top: 3px; -} - -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, list.content:not(.conversation-listbox) > row:first-child { - border-radius: 12px 12px 3px 3px; -} - -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, list.content:not(.conversation-listbox) > row:last-child { - border-radius: 3px 3px 12px 12px; -} - -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, list.content:not(.conversation-listbox) > row:only-child { - border-radius: 12px; -} - -window.background.csd stack stack stack frame > list row:hover, window.background.csd > stack > list row:hover, preferencesgroup list row:hover, -.geary-accounts-editor-pane list row:hover, window.background.csd.unified > deck > deck > deck list row:hover, hdyleaflet list.view row:hover, -hdyleaflet list.frame row:hover, -leaflet list.view row:hover, -leaflet list.frame row:hover, -box.horizontal > stack.background list.view row:hover, -box.horizontal > stack.background list.frame row:hover, hdyleaflet stack.background scrolledwindow > viewport list row:hover, -hdyleaflet overlay scrolledwindow > viewport list row:hover, -leaflet stack.background scrolledwindow > viewport list row:hover, -leaflet overlay scrolledwindow > viewport list row:hover, -box.horizontal > stack.background stack.background scrolledwindow > viewport list row:hover, -box.horizontal > stack.background overlay scrolledwindow > viewport list row:hover, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:hover, -leaflet frame:not(.view) list:not(.contacts-contact-list) row:hover, -box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:hover, list.tweak-group list > row:hover, list.content:not(.conversation-listbox) > row:hover { - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none; -} - -window.background.csd stack stack stack frame > list row:active, window.background.csd > stack > list row:active, preferencesgroup list row:active, -.geary-accounts-editor-pane list row:active, window.background.csd.unified > deck > deck > deck list row:active, hdyleaflet list.view row:active, -hdyleaflet list.frame row:active, -leaflet list.view row:active, -leaflet list.frame row:active, -box.horizontal > stack.background list.view row:active, -box.horizontal > stack.background list.frame row:active, hdyleaflet stack.background scrolledwindow > viewport list row:active, -hdyleaflet overlay scrolledwindow > viewport list row:active, -leaflet stack.background scrolledwindow > viewport list row:active, -leaflet overlay scrolledwindow > viewport list row:active, -box.horizontal > stack.background stack.background scrolledwindow > viewport list row:active, -box.horizontal > stack.background overlay scrolledwindow > viewport list row:active, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:active, -leaflet frame:not(.view) list:not(.contacts-contact-list) row:active, -box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:active, list.tweak-group list > row:active, list.content:not(.conversation-listbox) > row:active { - background-color: alpha(currentColor, 0.12); - box-shadow: none; -} - -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, list.content:not(.conversation-listbox) > row:focus { - box-shadow: none; -} - -list { - border-color: rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.04); -} - -list row { - padding: 3px; -} - -list.navigation-sidebar { - padding: 3px; -} - -list.navigation-sidebar > row { - border-radius: 12px; -} - -paned scrolledwindow > viewport.frame > list { - background-color: transparent; -} - -.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); - color: #fbf1c7; -} - -row:selected button { - color: inherit; -} - -row:selected:disabled { - color: rgba(251, 241, 199, 0.5); -} - -/********************* - * App Notifications * - *********************/ -.app-notification { - margin: 8px; -} - -.app-notification button.text-button:not(.suggested-action):not(.destructive-action):not( -:disabled -) { - color: #7daea3; -} - -.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(251, 241, 199, 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: #fbf1c7; -} - -expander title > arrow:disabled { - color: rgba(251, 241, 199, 0.32); -} - -/************ - * Calendar * - ************/ -calendar { - padding: 1px; - border: 1px solid rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -calendar:disabled { - color: rgba(251, 241, 199, 0.5); -} - -calendar:selected { - border-radius: 13px; -} - -calendar.header { - border-style: none none solid; - border-color: rgba(251, 241, 199, 0.12); - border-radius: 0; -} - -calendar.highlight { - color: rgba(251, 241, 199, 0.7); - font-weight: 500; -} - -calendar:indeterminate { - color: rgba(251, 241, 199, 0.32); -} - -/*********** - * Dialogs * - ***********/ -messagedialog.background { - background-color: #242220; -} - -messagedialog.background .titlebar { - min-height: 12px; -} - -messagedialog.background .titlebar, messagedialog.background .titlebar:backdrop { - background-color: #242220; -} - -messagedialog.background.csd { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -messagedialog .titlebar, messagedialog.background.csd .titlebar { - border: none; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -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: 12px; -} - -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: #45707a; -} - -messagedialog .dialog-action-box button.destructive-action:not(:disabled), -messagedialog .dialog-action-box .linked:not(.vertical) > button.destructive-action:not(:disabled) { - color: #c14a4a; -} - -.csd filechooser { - background-color: #282524; - border-radius: 0 0 12px 12px; -} - -filechooser .dialog-action-box { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -filechooser #pathbarbox { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; -} - -filechooser stack.view { - background-color: transparent; - padding: 4px; -} - -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; - padding: 4px; -} - -filechooser stack.view frame > border { - border: none; -} - -.csd filechooser placessidebar { - background: none; - border-bottom-left-radius: 12px; -} - -/*********** - * 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:not(separator).left { - border-right: 1px solid rgba(251, 241, 199, 0.12); - border-left-style: none; -} - -stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { - border-left: 1px solid rgba(251, 241, 199, 0.12); - border-right-style: none; -} - -.sidebar list, -.sidebar notebook { - 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: 6px; - background-color: #282524; -} - -stacksidebar.sidebar row { - min-height: 32px; - padding: 0 6px; - margin: 0; - border-radius: 6px; -} - -stacksidebar.sidebar row:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - font-weight: 500; -} - -stacksidebar.sidebar row:selected label, -stacksidebar.sidebar row:selected image { - color: rgba(29, 32, 33, 0.87); -} - -stacksidebar.sidebar row + row { - margin-top: 3px; -} - -stacksidebar.sidebar row > label { - padding-left: 6px; - padding-right: 6px; - color: inherit; -} - -/**************** - * File chooser * - ****************/ -placessidebar.sidebar { - margin: 6px; - padding: 0; -} - -placessidebar.sidebar > viewport.frame { - border-style: none; -} - -placessidebar.sidebar list { - background-color: transparent; - color: #fbf1c7; -} - -placessidebar.sidebar row { - min-height: 32px; - margin: 0; - padding: 0; - color: #fbf1c7; - border-radius: 6px; -} - -placessidebar.sidebar row:hover, placessidebar.sidebar row:active { - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; -} - -placessidebar.sidebar row > revealer { - padding: 0 8px 0 16px; -} - -placessidebar.sidebar row:selected { - color: #7daea3; - background-color: rgba(251, 241, 199, 0.04); - font-weight: 500; -} - -placessidebar.sidebar row:disabled { - color: rgba(29, 32, 33, 0.3); -} - -placessidebar.sidebar row image.sidebar-icon { - transition: color 75ms cubic-bezier(0, 0, 0.2, 1); -} - -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: #7daea3; -} - -placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { - color: #7daea3; -} - -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); - box-shadow: inset 0 0 0 9999px 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: #282524; - background-image: image(rgba(251, 241, 199, 0.12)); - background-size: 1px 1px; - background-clip: content-box; -} - -paned > separator.wide { - min-width: 6px; - min-height: 6px; - background-color: #1d2021; - background-image: image(rgba(251, 241, 199, 0.12)), image(rgba(251, 241, 199, 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: #282524; -} - -infobar.info > revealer > box, -infobar.info > revealer > box flowboxchild, infobar.info:hover > revealer > box, -infobar.info:hover > revealer > box flowboxchild, infobar.info:backdrop > revealer > box, -infobar.info:backdrop > revealer > box flowboxchild { - color: #fbf1c7; -} - -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: #7daea3; -} - -infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box { - background-color: #7daea3; -} - -infobar.action > revealer > box, -infobar.action > revealer > box link:link, -infobar.action > revealer > box flowboxchild, infobar.action:backdrop > revealer > box, -infobar.action:backdrop > revealer > box link:link, -infobar.action:backdrop > revealer > box flowboxchild, infobar.question > revealer > box, -infobar.question > revealer > box link:link, -infobar.question > revealer > box flowboxchild, infobar.question:backdrop > revealer > box, -infobar.question:backdrop > revealer > box link:link, -infobar.question:backdrop > revealer > box flowboxchild { - color: rgba(29, 32, 33, 0.87); -} - -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: rgba(29, 32, 33, 0.87); -} - -infobar.action:hover > revealer > box, infobar.question:hover > revealer > box { - background-color: #6da498; -} - -infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box { - background-color: #b47109; -} - -infobar.warning > revealer > box, -infobar.warning > revealer > box link:link, -infobar.warning > revealer > box flowboxchild, infobar.warning:backdrop > revealer > box, -infobar.warning:backdrop > revealer > box link:link, -infobar.warning:backdrop > revealer > box flowboxchild { - color: #fbf1c7; -} - -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: #fbf1c7; -} - -infobar.warning:hover > revealer > box { - background-color: #9c6208; -} - -infobar.error > revealer > box, infobar.error:backdrop > revealer > box { - background-color: #c14a4a; - color: #fbf1c7; -} - -infobar.error > revealer > box, -infobar.error > revealer > box link:link, -infobar.error > revealer > box flowboxchild, infobar.error:backdrop > revealer > box, -infobar.error:backdrop > revealer > box link:link, -infobar.error:backdrop > revealer > box flowboxchild { - color: #fbf1c7; -} - -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: #fbf1c7; -} - -infobar.error:hover > revealer > box { - background-color: #b43e3e; -} - -/************ - * Tooltips * - ************/ -tooltip { - box-shadow: none; -} - -tooltip.background { - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; - border-radius: 12px; -} - -tooltip.background.csd { - border-radius: 12px; - 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: 12px; - border-top-right-radius: 12px; -} - -colorswatch.top overlay { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -colorswatch.bottom { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.bottom overlay { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.dark { - color: #fbf1c7; -} - -colorswatch.light { - color: rgba(29, 32, 33, 0.87); -} - -colorswatch overlay { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); -} - -colorswatch overlay:hover { - box-shadow: 0 0 0 2px #7daea3; -} - -colorswatch#add-color-button { - border-radius: 12px 0 0 12px; -} - -colorswatch#add-color-button:only-child { - border-radius: 12px; -} - -colorswatch#add-color-button overlay { - background-color: rgba(251, 241, 199, 0.04); -} - -colorswatch#add-color-button overlay:hover { - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none; -} - -colorswatch#add-color-button overlay:active { - background-color: rgba(251, 241, 199, 0.3); -} - -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.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.17); -} - -colorchooser .popover.osd { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - 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(251, 241, 199, 0.1); - background-color: #242220; -} - -colorchooser .popover.osd:backdrop { - box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.2), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(251, 241, 199, 0.1); -} - -/******** - * Misc * - ********/ -.content-view { - background-color: #1d2021; -} - -.scale-popup.background { - padding: 3px 0; -} - -/********************** - * Window Decorations * - **********************/ -decoration { - transition: none; - 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: 10px; -} - -decoration:backdrop { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - 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; -} - -.tiled decoration, .tiled-top decoration, .tiled-right decoration, .tiled-bottom decoration, .tiled-left decoration { - border-radius: 0; -} - -.maximized decoration, .fullscreen decoration { - border-radius: 0; - box-shadow: none; -} - -.popup decoration { - box-shadow: none; - border: none; -} - -.ssd decoration { - border: none; - border-radius: 12px 12px 0 0; - box-shadow: none; -} - -.ssd decoration:backdrop { - 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 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12); -} - -tooltip.csd decoration { - border-radius: 12px; - box-shadow: none; - border: none; -} - -messagedialog.background.csd decoration { - border-radius: 12px; -} - -.solid-csd decoration { - margin: 0; - padding: 2px; - border-radius: 0; - box-shadow: none; - background-color: #1d2021; - border: 1px solid #423f3e; -} - -.solid-csd decoration:backdrop { - background-color: #1d2021; -} - -button.titlebutton:not(.suggested-action):not(.destructive-action) { - min-height: 22px; - min-width: 22px; - padding: 0; - margin: 0 2px; - border-radius: 9999px; -} - -button.minimize.titlebutton:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:not(.suggested-action):not(.destructive-action), button.close.titlebutton:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); - background-color: alpha(currentColor, 0.1); -} - -button.minimize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.close.titlebutton:hover:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; - background-color: alpha(currentColor, 0.15); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px rgba(251, 241, 199, 0.1); -} - -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) { - color: #fbf1c7; - background-color: alpha(currentColor, 0.2); -} - -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; -} - -.monospace { - font-family: monospace; -} - -/********************** - * Touch Copy & Paste * - **********************/ -cursor-handle { - color: #7daea3; - -gtk-icon-source: -gtk-recolor(url("assets/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(251, 241, 199, 0.12); - border-radius: 13px; - box-shadow: inset 0 -2px rgba(251, 241, 199, 0.12); - background-color: #242220; - color: #fbf1c7; - font-size: smaller; -} - -:not(decoration):not(window):drop(active) { - caret-color: #7daea3; -} - -stackswitcher { - min-height: 0; - padding: 0; - border-radius: 15px; - background-color: rgba(251, 241, 199, 0.04); - border: none; -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { - margin: 0; - background-color: transparent; - border-radius: 9999px; -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button { - min-width: 100px; -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus:not(:hover):not(:checked) { - box-shadow: none; -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked:hover { - box-shadow: none; - background-color: #fefdf7; -} - -stackswitcher button.text-button { - min-width: 100px; -} - -stackswitcher button.circular, -stackswitcher 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(251, 241, 199, 0.12); - border-image: none; - border-radius: 0; - box-shadow: none; - background-color: transparent; -} - -popover.emoji-picker scrolledwindow { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -button.emoji-section { - margin: 4px; -} - -button.emoji-section:checked { - color: #7daea3; -} - -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: 12px; -} - -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: #282524; -} - -.nautilus-window.background.csd:backdrop { - background-color: #282524; -} - -.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: #282524; - 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 #282524; - background-color: #282524; - background-image: image(#423f3e); -} - -.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: 12px; - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - 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: rgba(29, 32, 33, 0.87); -} - -.nautilus-canvas-item.dim-label, -.nautilus-list-dim-label { - color: rgba(251, 241, 199, 0.7); -} - -.nemo-desktop.nemo-canvas-item, .caja-desktop.caja-canvas-item, -.nautilus-desktop.nautilus-canvas-item { - color: #fbf1c7; -} - -@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: 12px; -} - -.path-bar-box button { - margin: 0; -} - -.path-bar-box.width-maximized { - background-color: rgba(251, 241, 199, 0.04); -} - -.path-bar-box.background.frame { - border-style: none; - background-color: rgba(251, 241, 199, 0.04); -} - -.path-bar-box .path-bar button label:not(:only-child):first-child { - margin-left: 0; -} - -.path-bar-box .path-bar button label:not(:only-child):last-child { - margin-right: 0; -} - -.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:not(.suggested-action):not(.destructive-action).text-button { - min-width: 0; -} - -.path-bar-box .linked.nautilus-path-bar -button:not(.suggested-action):not(.destructive-action).text-button.image-button 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(251, 241, 199, 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(251, 241, 199, 0.5); -} - -.windowhandle .linked.nautilus-path-bar { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - margin: 6px 0; -} - -.windowhandle .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) { - margin-top: 0; - margin-bottom: 0; -} - -.windowhandle .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).current-dir { - color: #fbf1c7; -} - -.windowhandle .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).current-dir:hover, .windowhandle .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).current-dir:active { - background: none; - box-shadow: none; -} - -.disk-space-display.unknown { - background-color: rgba(251, 241, 199, 0.3); - color: rgba(251, 241, 199, 0.3); -} - -.disk-space-display.used { - background-color: #7daea3; - color: #7daea3; -} - -.disk-space-display.free { - background-color: rgba(251, 241, 199, 0.12); - color: rgba(251, 241, 199, 0.12); -} - -.search-information { - padding: 2px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; - color: #fbf1c7; -} - -.conflict-row:not(:selected) { - background-color: #523c1c; -} - -.nautilus-window flowboxchild .icon-item-background { - padding: 4px; - border-radius: 6px; -} - -.nautilus-window flowboxchild:selected { - background-color: transparent; -} - -.nautilus-window notebook :not(treeview).view { - 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(251, 241, 199, 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(251, 241, 199, 0.7); -} - -.nautilus-window paned > separator { - background-color: #282524; -} - -/********* - * 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(251, 241, 199, 0.7); - font-size: smaller; -} - -.open-document-selector-match { - background-color: #b47109; - color: #fbf1c7; -} - -.gedit-document-panel { - background-color: #282524; -} - -.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(251, 241, 199, 0.12); -} - -.gedit-side-panel-paned statusbar { - border-top: 1px solid rgba(251, 241, 199, 0.12); - border-radius: 0 0 12px 12px; -} - -.gedit-search-slider { - margin: 0 6px 10px; - padding: 6px; - background-color: #242220; - border-radius: 0 0 12px 12px; - box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05), 0 4px 6px 0 rgba(0, 0, 0, 0.06), 0 1px 10px 0 rgba(0, 0, 0, 0.05); -} - -.gedit-search-slider .linked:not(.vertical) > entry .gedit-search-entry-occurrences-tag { - all: unset; - color: rgba(251, 241, 199, 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: #242220; -} - -.gedit-search-slider .linked:not(.vertical) > entry.error ~ button { - color: rgba(251, 241, 199, 0.7); -} - -.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:hover, .gedit-search-slider .linked:not(.vertical) > entry.error ~ button:active { - color: #fbf1c7; -} - -.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:disabled { - color: rgba(251, 241, 199, 0.32); -} - -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 * - **********/ -leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame { - background-color: #1d2021; - color: #fbf1c7; - border-radius: 12px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider { - background-color: rgba(29, 32, 33, 0.38); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider:hover, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider:hover, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider:hover { - background-color: rgba(29, 32, 33, 0.6); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider:active, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider:active, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider:active { - background-color: rgba(29, 32, 33, 0.87); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider:disabled, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider:disabled, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider:disabled { - background-color: rgba(29, 32, 33, 0.3); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - background-color: rgba(29, 32, 33, 0.38); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { - background-color: rgba(29, 32, 33, 0.3); -} - -leaflet.unfolded > box.vertical:last-child > scrolledwindow > viewport.frame, -leaflet.unfolded > box.vertical:last-child > stack > scrolledwindow > viewport.frame { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - margin: 6px; -} - -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, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list { - padding: 6px; -} - -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, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > separator { - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row { - padding: 0; - margin: -1px; - color: #fbf1c7; - border-radius: 6px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:hover, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:hover, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:hover, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:hover, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:active, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:active, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:active, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:active, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:focus, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:focus, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:focus, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:focus { - color: #fbf1c7; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected { - font-weight: 500; - background-color: rgba(251, 241, 199, 0.04); - border-radius: 9px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected, -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected label, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected label, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected label, -leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected label, -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected image, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected image, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected image, -leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected image { - color: #7daea3; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:hover, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:hover, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:hover, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected:hover, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:focus, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:focus, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:focus, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected:focus { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row + row, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row + row, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row + row, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row + row { - margin-top: 3px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar { - border: none; - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar trough, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar trough, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar trough { - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider { - border: 4px solid transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering), -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering), -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) { - border-color: transparent; - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - border: none; - margin: 1px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - border: none; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.dragging, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.dragging, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.dragging, window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.hovering, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.hovering, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.hovering { - background-color: transparent; -} - -.tweak { - padding: 3px; -} - -.tweak.title:hover { - box-shadow: none; -} - -.tweak-group-startup { - border: 1px solid rgba(251, 241, 199, 0.12); -} - -.tweak-group-startup > row:not(:first-child) { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -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); -} - -leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list { - background-color: transparent; - margin: 0; -} - -/************************ - * 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: #282524; - 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: 12px; - 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: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list { - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar { - margin: 6px; -} - -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: 12px 12px 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 12px 12px; -} - -window.background.csd hdycolumn stack frame.view > stack > stack list > separator { - background-color: rgba(251, 241, 199, 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; -} - -/************************ - * Gnome system monitor * - ************************/ -window#gnome-system-monitor.background.csd > box.vertical > stack { - background-color: #282524; - 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) * - ************************/ -tabbox { - border: none; - background-color: rgba(251, 241, 199, 0.04); - padding: 3px; - margin: 3px; - border-radius: 12px; -} - -tabbox > tab button { - min-height: 24px; - min-width: 24px; - border-radius: 9999px; - border: none; - padding: 0; - margin-right: -6px; -} - -/***************** - * 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.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; - margin: 0; -} - -.sidebar-paned .inline-toolbar.horizontal.sidebar-toolbar { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.12); -} - -.sidebar-paned .inline-toolbar.horizontal.sidebar-toolbar button.image-button { - border-radius: 9999px; -} - -.sidebar-paned .inline-toolbar.horizontal.sidebar-toolbar button.image-button:not(:first-child), .sidebar-paned .inline-toolbar.horizontal.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 .inline-toolbar.horizontal.sidebar-toolbar button.image-button.image-button:not(.text-button):first-child { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; -} - -.sidebar-paned .inline-toolbar.horizontal.sidebar-toolbar button.image-button.image-button:not(.text-button):last-child { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; -} - -.sidebar-paned .inline-toolbar.horizontal.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(251, 241, 199, 0.12); - box-shadow: none; - background-color: transparent; -} - -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 { - margin: 6px 0; -} - -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 12px 0 6px; -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised { - 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-color: rgba(251, 241, 199, 0.08); - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - color: #fbf1c7; -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised:hover { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised: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; - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); - background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); - background-size: 0% 0%; -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised:disabled { - box-shadow: none; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised:checked { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised > widget > box > image { - padding: 0 3px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > grid > grid > grid, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > grid > grid > grid, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > notebook > stack > grid > grid > grid { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - padding: 6px; - margin: -6px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > grid > grid > box, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > grid > grid > box, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > notebook > stack > grid > grid > box { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - padding: 0 6px 6px; - margin: 0 -6px -6px 0; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > grid > paned > box > scrolledwindow:not(:last-child), -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > notebook > stack > grid > paned > box > scrolledwindow:not(:last-child) { - border-right: 1px solid rgba(251, 241, 199, 0.12); - margin-right: -1px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > grid > grid > grid, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > box > grid > grid > grid, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > notebook > stack > grid > grid > grid { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - padding: 3px; - margin: -1px -6px -6px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > grid > paned > box > scrolledwindow:not(:last-child), -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > box > grid > paned > box > scrolledwindow:not(:last-child), -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > notebook > stack > grid > paned > box > scrolledwindow:not(:last-child) { - border-right: 1px solid rgba(251, 241, 199, 0.12); - margin-right: -1px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > paned > box:first-child > box { - padding: 0 6px 6px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -/********** - * Polari * - **********/ -.polari-room-list .sidebar { - background: none; -} - -.polari-room-list .sidebar > row.activatable:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -stack.view.polari-entry-area { - background-color: #1d2021; - border-top: 1px solid rgba(251, 241, 199, 0.12); - border-bottom-right-radius: 12px; -} - -stack:disabled.view.polari-entry-area { - background-image: image(#1d2021); -} - -/*********** - * Builder * - ***********/ -layouttabbar { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #1d2021; -} - -layouttabbar > box > button { - margin: 2px 0; -} - -layouttab { - margin: 0 8px; - border-style: none solid; - border-width: 1px; - border-color: rgba(29, 32, 33, 0.2); - box-shadow: inset 0 -2px #7daea3; - background-color: #282524; -} - -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(29, 32, 33, 0.2); - -pnldockbin-handle-size: 1; -} - -entry.search-missing { - background-color: #c14a4a; - color: #fbf1c7; -} - -window.workbench treeview.image { - color: rgba(251, 241, 199, 0.7); -} - -popover.popover-selector list { - padding: 6px; -} - -popover.popover-selector list row { - border-radius: 12px; -} - -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: 12px; -} - -omnibar:not(:hover):not(:active) entry { - color: rgba(251, 241, 199, 0.7); -} - -popover.omnibar list row:not(:last-child) { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -entry.preferences-search { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - box-shadow: none; - background-color: #282524; -} - -preferences stacksidebar.sidebar list { - background-color: #282524; -} - -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(251, 241, 199, 0.12); -} - -preferences > box > box:dir(rtl) { - border-left: 1px solid rgba(251, 241, 199, 0.12); -} - -popover.messagepopover.background { - padding: 0; -} - -popover.messagepopover .popover-action-area button { - padding: 8px 16px; - border-top: 1px solid rgba(251, 241, 199, 0.12); - border-radius: 0; -} - -popover.messagepopover .popover-action-area button:first-child { - border-bottom-left-radius: 12px; -} - -popover.messagepopover .popover-action-area button:last-child { - border-bottom-right-radius: 12px; -} - -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(251, 241, 199, 0.12); -} - -popover.transfers list row > box { - padding: 10px; -} - -dockbin { - border: 1px solid rgba(29, 32, 33, 0.2); - -pnldockbin-handle-size: 1; -} - -dockpaned { - border: 1px solid rgba(29, 32, 33, 0.2); -} - -eggsearchbar box.search-bar { - padding: 0 8px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #1d2021; -} - -docktabstrip { - padding: 0 8px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #1d2021; -} - -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, #7daea3 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 0% 0%; - color: rgba(251, 241, 199, 0.7); - font-weight: 500; -} - -docktab:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -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 #7daea3; - background-color: transparent; - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-size: 1000% 1000%; - color: #fbf1c7; -} - -dockoverlayedge { - background-color: #1d2021; -} - -dockoverlayedge docktabstrip { - padding: 0; - border: none; -} - -dockoverlayedge.left-edge docktab:checked { - box-shadow: inset -2px 0 #7daea3; -} - -dockoverlayedge.right-edge docktab:checked { - box-shadow: inset 2px 0 #7daea3; -} - -pillbox { - background-color: #1d2021; - border-radius: 12px; -} - -layoutpane entry.search { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - box-shadow: none; - background-color: #282524; -} - -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: #fbf1c7; - font-weight: normal; -} - -button.dzlmenubuttonitem:disabled { - color: rgba(251, 241, 199, 0.5); -} - -idelayoutstackheader { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -idelayoutstackheader button:checked { - color: #fbf1c7; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher { - padding: 8px 0; - background-color: #1d2021; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { - border-right: 1px solid rgba(251, 241, 199, 0.12); -} - -ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { - border-left: 1px solid rgba(251, 241, 199, 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(125, 174, 163, 0.7) 10%, transparent 0%); -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { - background-color: transparent; - color: #fbf1c7; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { - margin-right: -1px; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { - box-shadow: inset -2px 0 #7daea3; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { - margin-left: -1px; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { - box-shadow: inset 2px 0 #7daea3; -} - -ideeditorsidebar notebook header { - background: transparent; -} - -popover.messagepopover list { - border: 1px solid rgba(251, 241, 199, 0.12); -} - -popover.messagepopover list row:not(:last-child) { - border-bottom: 1px solid rgba(251, 241, 199, 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: #7daea3; - color: rgba(29, 32, 33, 0.87); - 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: #fbf1c7; - font-weight: normal; -} - -button.photos-filter-preview:checked { - background-color: alpha(currentColor, 0.06); - color: #fbf1c7; -} - -button.photos-filter-preview:checked image { - color: #fbf1c7; -} - -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(251, 241, 199, 0.12); -} - -.side-panel:dir(rtl) { - border-style: solid; - border-color: rgba(251, 241, 199, 0.12); -} - -.side-panel .view { - background-image: image(#282524); -} - -.side-panel .view:hover { - background-image: image(#393531); -} - -.side-panel .view:selected { - background-image: image(#7daea3); -} - -.side-panel .view:selected:hover { - background-image: image(rgba(119, 165, 155, 0.9896)); -} - -.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(251, 241, 199, 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: #282524; -} - -.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: #282524; -} - -.background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow { - border-radius: 0 0 0 12px; - background-color: #1d2021; -} - -/************ - * 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.flat { - min-height: 24px; - min-width: 24px; - padding: 3px; - border-radius: 9px; -} - -window.background > box.vertical > box.horizontal > frame > border { - border: none; -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list { - border-radius: 12px; - margin: 0 6px 6px; - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list > row, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list > row:hover, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list > row:active, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list > row:selected { - color: rgba(29, 32, 33, 0.87); -} - -window.background > box.vertical > box.horizontal > stack > widget > notebook.frame { - margin: 0 6px 6px 0; -} - -.terminal-window { - background-color: #1d2021; -} - -.terminal-window tabbar tabbox { - background-color: #282524; - margin: 0; - border-radius: 0; - border-bottom: 1px solid rgba(251, 241, 199, 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(29, 32, 33, 0.2); -} - -list.categories { - background-image: image(#282524); -} - -/********* - * Boxes * - *********/ -.transparent-bg + stack overlay > label { - min-height: 24px; - padding: 0 4px; - border-radius: 12px; - background-color: #242220; - color: #fbf1c7; -} - -/************** - * 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: #fbf1c7; - background-color: #1d2021; - box-shadow: none; - border-bottom: 1px solid rgba(29, 32, 33, 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: #282524; -} - -.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: #1d2021; - 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: #1d2021; -} - -.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > box.vertical + separator.sidebar { - min-width: 1px; - background-color: rgba(251, 241, 199, 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: 12px; - 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: 12px; - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.geary-main-window.unified separator.geary-sidebar-pane-separator { - min-width: 1px; - background-color: rgba(251, 241, 199, 0.12); -} - -.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content > row.activatable { - border: 1px solid rgba(251, 241, 199, 0.12); - border-bottom-width: 0; - background-color: #282524; -} - -.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: #282524; -} - -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: 12px; -} - -dialog.background.csd stack scrolledwindow.frame textview.view { - border-radius: 12px; -} - -dialog.background.csd stack scrolledwindow.frame textview.view > text { - background: none; -} - -dialog.background.csd stack scrolledwindow viewport.frame.view { - border-radius: 12px; -} - -window.background.csd.unified { - background-color: #1d2021; -} - -window.background.csd.unified headerbar { - box-shadow: none; -} - -window.background.csd.unified > decoration-overlay { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -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(#242220); -} - -.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: #1d2021; -} - -.terminator-terminal-window notebook.frame { - border-style: none; -} - -/************* - * Ubitquity * - *************/ -#live_installer .menubar progressbar trough { - border-radius: 4px; - background-color: rgba(251, 241, 199, 0.12); -} - -/********* - * Meld * - ********/ -.meld-notebook, -.meld-notebook > stack { - background: none; - border-radius: 0 0 12px 12px; -} - -.meld-notebook-child { - background-color: #282524; - 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: 12px; -} - -/************ - * Chromium * - ************/ -window.background.chromium { - background-color: #504945; -} - -window.background.chromium entry, -window.background.chromium > button { - border: 1px solid #423f3e; -} - -window.background.chromium > button { - color: #7daea3; -} - -window.background.chromium > button:disabled { - color: rgba(251, 241, 199, 0.32); -} - -window.background.chromium menubar, -window.background.chromium headerbar { - color: rgba(251, 241, 199, 0.7); -} - -window.background.chromium headerbar.titlebar { - padding: 0 12px; -} - -window.background.chromium headerbar.titlebar button:active { - background-color: alpha(currentColor, 0.12); -} - -window.background.chromium spinner { - color: #7daea3; -} - -window.background.chromium textview.view { - background-color: transparent; -} - -window.background.chromium treeview.view.cell:selected:focus { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -window.background.chromium treeview.view button { - border: 1px solid rgba(251, 241, 199, 0.3); - background-color: #282524; -} - -window.background.chromium menu { - border-color: #434a4c; -} - -window.background.chromium menu menuitem { - border-radius: 0; -} - -tooltip.background.chromium { - background-color: #161819; -} - -/*********** - * Firefox * - ***********/ -#MozillaGtkWidget decoration { - border: none; -} - -#MozillaGtkWidget > widget text { - background-color: #1d2021; -} - -#MozillaGtkWidget > widget text:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -#MozillaGtkWidget > widget > separator { - color: #423f3e; -} - -#MozillaGtkWidget > widget > scrollbar { - background-clip: border-box; -} - -#MozillaGtkWidget > widget > frame > border { - border-color: #423f3e; -} - -#MozillaGtkWidget > widget > entry, -#MozillaGtkWidget > widget > button > button { - border: 1px solid #423f3e; - border-radius: 12px; - box-shadow: none; -} - -#MozillaGtkWidget > widget > entry:disabled, -#MozillaGtkWidget > widget > button > button:disabled { - border-color: rgba(251, 241, 199, 0.12); -} - -#MozillaGtkWidget > widget > entry { - min-height: 30px; - background-color: #282524; -} - -#MozillaGtkWidget > widget > entry:focus { - border-color: #7daea3; - box-shadow: inset 0 0 0 1px #7daea3; -} - -#MozillaGtkWidget > widget > entry:disabled { - background-color: #282524; -} - -#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: #504945; -} - -#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: #7c6f64; -} - -#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):disabled, -#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):disabled { - color: rgba(80, 73, 69, 0.5); -} - -#MozillaGtkWidget menu { - border: none; -} - -#MozillaGtkWidget > widget > menubar { - color: rgba(251, 241, 199, 0.7); -} - -#MozillaGtkWidget > widget > menubar:hover { - color: #fbf1c7; -} - -#MozillaGtkWidget > widget > menubar:disabled { - color: rgba(251, 241, 199, 0.32); -} - -#MozillaGtkWidget > widget > frame { - color: #423f3e; -} - -#MozillaGtkWidget menu > separator { - color: #423f3e; -} - -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(251, 241, 199, 0.12); -} - -#CanvasTable #VerticalScrollbar:dir(ltr) { - border-left: 1px solid rgba(251, 241, 199, 0.12); -} - -#CanvasTable #VerticalScrollbar:dir(rtl) { - border-right: 1px solid rgba(251, 241, 199, 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; -} - -#InKscapeCanvas { - background-color: #282524; - border-radius: 12px; -} - -/*********** - * Synapse * - ***********/ -/*************** - * Libreoffice * - ***************/ -window.background > grid -> widget -> widget -> scrolledwindow -> viewport -> grid -> box -> box -> frame -> box { - background-color: #1d2021; -} - -/********* - * 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: 12px; -} - -/********* - * 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: #7daea3; - -unitydecoration-title-indent: 4px; - -unitydecoration-title-fade: 32px; - -unitydecoration-title-alignment: 0; -} - -UnityDecoration .top { - padding: 0 2px; - border-style: none; - border-radius: 12px 12px 0 0; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #1d2021; - color: #fbf1c7; -} - -UnityDecoration .top:backdrop { - background-color: #1d2021; - color: rgba(251, 241, 199, 0.7); -} - -UnityDecoration .menuitem { - color: rgba(251, 241, 199, 0.7); -} - -UnityDecoration .menuitem:hover { - box-shadow: inset 0 -2px #fbf1c7; - background-color: transparent; - color: #fbf1c7; -} - -.background:not(.csd) headerbar:not(.titlebar) { - border-radius: 0; - box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.17); -} - -.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { - border-style: none; -} - -UnityPanelWidget, -.unity-panel { - background-color: #1d2021; - color: #fbf1c7; -} - -UnityPanelWidget:backdrop, -.unity-panel:backdrop { - color: rgba(251, 241, 199, 0.7); -} - -.unity-panel.menuitem, -.unity-panel .menuitem { - color: rgba(251, 241, 199, 0.7); -} - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - box-shadow: inset 0 -2px #fbf1c7; - background-color: transparent; - color: #fbf1c7; -} - -.menu IdoPlaybackMenuItem.menuitem:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: spin 1s linear infinite; - color: #7daea3; -} - -/************** - * Mate-Panel * - **************/ -.mate-panel-menu-bar menubar, -#PanelApplet-window-menu-applet-button { - background-color: transparent; -} - -.mate-panel-menu-bar { - background-color: rgba(29, 32, 33, 0.6); - color: rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -MatePanelAppletFrameDBus { - border-style: solid; - border-color: rgba(251, 241, 199, 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(251, 241, 199, 0.7); -} - -.mate-panel-menu-bar menubar > menuitem:hover { - color: #fbf1c7; -} - -.mate-panel-menu-bar menubar > menuitem:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.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: #7daea3; -} - -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: #7daea3; -} - -.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(29, 32, 33, 0.2); - border-radius: 13px; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; -} - -#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(251, 241, 199, 0.12); -} - -#MatePanelPopupWindow expander > title { - min-height: 32px; -} - -#MatePanelPopupWindow button { - padding: 4px 16px; -} - -#MatePanelPopupWindow > frame > box > box > box > widget { - color: rgba(251, 241, 199, 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(29, 32, 33, 0.2); - border-radius: 13px; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; -} - -.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: #fbf1c7; -} - -#mate-menu { - border: 1px solid rgba(29, 32, 33, 0.2); - background-color: #242220; -} - -#mate-menu button { - min-height: 24px; - min-width: 24px; - padding: 4px 0; - color: #fbf1c7; - 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(251, 241, 199, 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(251, 241, 199, 0.1); - background-color: #242220; -} - -.brisk-menu entry { - margin-bottom: -2px; - border-bottom: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -.brisk-menu entry + box > box:dir(rtl) { - margin-left: -2px; - border-left: 1px solid rgba(251, 241, 199, 0.12); -} - -.brisk-menu .categories-list { - padding-top: 4px; -} - -.brisk-menu .categories-list button { - margin: 0 4px; -} - -.brisk-menu .categories-list button:checked { - color: #7daea3; -} - -.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: #fbf1c7; - font-weight: normal; -} - -/********************* - * CAJA File manager * - *********************/ -.caja-navigation-window button.toggle.image-button { - border-radius: 12px; -} - -.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: #282524; -} - -.caja-side-pane notebook, -.caja-notebook { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -.caja-side-pane notebook .frame, -.caja-notebook .frame { - border-style: none; -} - -.caja-canvas-item { - border-radius: 12px; -} - -.caja-desktop.view .entry, -.caja-navigation-window .view .entry { - border: none; - border-radius: 12px; - background-color: rgba(251, 241, 199, 0.04); - background-image: none; - color: #fbf1c7; -} - -.caja-desktop.view .entry:selected, -.caja-navigation-window .view .entry:selected { - background-color: alpha(currentColor, 0.06); -} - -.caja-desktop.view .entry { - background-color: #282524; - color: #fbf1c7; - 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(251, 241, 199, 0.12); -} - -.caja-notebook frame > border { - border-style: none; -} - -#caja-extra-view-widget { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; -} - -#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(251, 241, 199, 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(251, 241, 199, 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(251, 241, 199, 0.12); -} - -.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { - border-bottom: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -/* mate-screensaver lock dialog */ -.lock-dialog { - border: 1px solid rgba(29, 32, 33, 0.2); - border-radius: 13px; - 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(251, 241, 199, 0.1); - background-color: #242220; -} - -.lock-dialog frame > border { - border-style: none; -} - -.lock-dialog button:not(:disabled) { - color: #7daea3; -} - -/* multimedia OSD */ -MsdOsdWindow.background.osd { - border-radius: 12px; - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; -} - -MsdOsdWindow.background.osd .trough { - border-radius: 0; - background-color: rgba(251, 241, 199, 0.12); -} - -MsdOsdWindow.background.osd .progressbar { - border-radius: 0; - background-color: #7daea3; -} - -/****************** - * 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: 12px; -} - -.budgie-popover { - border: none; - 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: #242220; - border-radius: 12px; -} - -.budgie-popover frame.container { - padding: 6px; - border: none; -} - -.budgie-popover frame.container .container { - padding: 0; -} - -.budgie-popover list, -.budgie-popover row { - padding: 0; -} - -.budgie-popover 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(251, 241, 199, 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(251, 241, 199, 0.12); -} - -.budgie-popover.bottom > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack { - border-top: none; - border-bottom: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.12); - border-image: none; - border-radius: 0; - box-shadow: none; - font-size: 120%; -} - -.budgie-popover.budgie-menu scrolledwindow.sidebar.categories { - background-color: rgba(251, 241, 199, 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; - background-color: #282524; - padding: 6px; - margin: 6px; - border: none; - 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); -} - -.budgie-popover.budgie-menu list.left-overlay-menu > row.activatable { - border-radius: 12px; -} - -.budgie-popover.budgie-menu list.left-overlay-menu > row.activatable:not(:last-child) { - margin-bottom: 3px; -} - -.budgie-popover.budgie-menu list.left-overlay-menu > row.activatable button.menuitem { - border-radius: 12px; -} - -.budgie-popover.budgie-menu .budgie-menu-footer { - border-top: 1px solid rgba(251, 241, 199, 0.12); - padding: 6px; -} - -.budgie-popover.budgie-menu .budgie-menu-footer button.flat { - padding: 3px; - border-radius: 12px; -} - -.budgie-popover.budgie-menu .budgie-menu-footer button.flat.image-button { - border-radius: 9999px; - padding: 6px; - min-height: 16px; - min-width: 16px; - margin-left: 6px; - background-clip: border-box; -} - -.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: 12px; -} - -.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child button.indicator-item { - transition: none; - animation: none; -} - -.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(251, 241, 199, 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(251, 241, 199, 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(251, 241, 199, 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: 12px; -} - -.budgie-panel { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(29, 32, 33, 0.6); - color: rgba(251, 241, 199, 0.7); - font-weight: 500; -} - -.budgie-panel.transparent { - background-color: rgba(29, 32, 33, 0.75); -} - -.budgie-panel .icon-tasklist button.launcher:checked, .budgie-panel .icon-tasklist button.launcher:active { - color: #fbf1c7; -} - -.top .budgie-panel.dock-mode { - border-radius: 0 0 12px 12px; -} - -.bottom .budgie-panel.dock-mode { - border-radius: 12px 12px 0 0; -} - -.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 .launcher:first-child { - border-top-right-radius: 12px; -} - -.left .budgie-panel.dock-mode .icon-tasklist .launcher:last-child { - border-bottom-right-radius: 12px; -} - -.right .budgie-panel.dock-mode { - border-radius: 12px 0 0 12px; -} - -.right .budgie-panel.dock-mode .icon-tasklist .launcher:first-child { - border-top-left-radius: 12px; -} - -.right .budgie-panel.dock-mode .icon-tasklist .launcher:last-child { - border-bottom-left-radius: 12px; -} - -.budgie-panel button { - color: rgba(251, 241, 199, 0.7); - min-height: 24px; - min-width: 24px; - padding: 0; - border-radius: 0; -} - -.budgie-panel button:hover { - color: #fbf1c7; -} - -.budgie-panel button:active { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel button.budgie-menu-launcher { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel button.budgie-menu-launcher:focus { - box-shadow: none; - border: none; - color: #fbf1c7; -} - -.budgie-panel button.raven-trigger { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel.horizontal button { - padding: 0 4px; -} - -.budgie-panel.vertical button { - padding: 4px 0; -} - -.budgie-panel separator { - background-color: rgba(251, 241, 199, 0.12); -} - -.budgie-panel .alert { - color: #c14a4a; -} - -.budgie-panel > box > widget > widget > image, -.budgie-panel > box > widget > widget > stack > image, -.budgie-panel > box > widget > widget > box > image { - margin-left: 6px; - margin-right: 6px; -} - -.budgie-panel > box > widget > widget > box > image + label { - margin-left: -4px; -} - -.budgie-panel > box > widget > widget > box > widget > image { - margin-left: 6px; -} - -.budgie-panel > box > widget > widget > box > stack > widget > label { - margin-right: 6px; -} - -.budgie-panel > box > widget > widget > box > widget > widget > image { - margin-left: 2px; - margin-right: 2px; -} - -.budgie-panel .budgie-clock-applet > widget > box, -.budgie-panel .budgie-calendar-applet > widget > box { - padding-left: 3px; - padding-right: 3px; -} - -.budgie-panel .titlebar:not(headerbar) { - min-height: 0; - padding: 0; - box-shadow: none; - background-color: transparent; - color: #fbf1c7; -} - -.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 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: #fbf1c7; -} - -.budgie-panel menubar, -.budgie-panel .menubar { - color: rgba(251, 241, 199, 0.7); - box-shadow: none; - border: none; -} - -.budgie-panel menubar > menuitem, -.budgie-panel .menubar > menuitem { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel menubar > menuitem:hover, .budgie-panel menubar > menuitem:active, -.budgie-panel .menubar > menuitem:hover, -.budgie-panel .menubar > menuitem:active { - color: #fbf1c7; -} - -.budgie-panel menubar menu separator, -.budgie-panel .menubar menu separator { - background-color: rgba(251, 241, 199, 0.12); -} - -.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(251, 241, 199, 0.5); -} - -.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel button.flat.launcher:not(:checked):disabled { - color: rgba(251, 241, 199, 0.32); -} - -.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: #242220; - 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(251, 241, 199, 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(251, 241, 199, 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(251, 241, 199, 0.12); - background-color: #282524; -} - -.raven .raven-background > overlay > widget > image { - color: rgba(251, 241, 199, 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.devices-list.sound-devices > row.activatable:selected, .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked { - background-color: rgba(251, 241, 199, 0.06); - color: #fbf1c7; -} - -.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: #fbf1c7; -} - -.raven .audio-widget list.devices-list.sound-devices > row.activatable label { - padding-left: 12px; -} - -.raven levelbar, -.raven levelbar trough, -.raven levelbar block { - border-radius: 9999px; -} - -calendar.raven-calendar { - border-style: none; - background-color: transparent; -} - -calendar.raven-calendar:selected { - border-radius: 12px; -} - -.raven-mpris { - background-color: #242220; - color: #fbf1c7; -} - -.raven-mpris label { - min-height: 24px; -} - -.raven-mpris button.image-button { - padding: 12px; -} - -image.raven-mpris { - background-color: rgba(251, 241, 199, 0.12); - color: rgba(251, 241, 199, 0.7); - border-radius: 12px; -} - -.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: 12px; - background-color: rgba(251, 241, 199, 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(251, 241, 199, 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; -} - -.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(251, 241, 199, 0.7); -} - -.budgie-osd .budgie-osd-text { - font-size: 120%; -} - -.budgie-panel .lock-keys image:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.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(251, 241, 199, 0.1); - background-color: #242220; -} - -.drop-shadow .linked > button { - border-radius: 12px; -} - -.budgie-session-dialog, -.budgie-polkit-dialog, -.budgie-run-dialog { - background-color: #242220; - border: none; - padding: 0; -} - -.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), 0 0 0 1px rgba(29, 32, 33, 0.75); -} - -.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(251, 241, 199, 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(251, 241, 199, 0.7); -} - -.budgie-polkit-dialog .failure { - color: #c14a4a; -} - -.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: #fbf1c7; -} - -.budgie-run-dialog scrolledwindow { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -/************** - * Xfce4 Apps * - **************/ -.XfceHeading { - background-color: #282524; -} - -/*************** - * xfce4-panel * - ***************/ -.xfce4-panel.background { - border: none; - background-color: rgba(29, 32, 33, 0.6); - color: rgba(251, 241, 199, 0.7); - font-weight: 500; -} - -.xfce4-panel.background button { - min-height: 16px; - min-width: 16px; - padding: 0 6px; - border-radius: 0; -} - -.xfce4-panel.background button.flat.toggle { - padding: 0 6px; -} - -.xfce4-panel.background .tasklist button image { - padding: 4px; -} - -wnck-pager:hover { - background-color: alpha(currentColor, 0.08); -} - -wnck-pager:active { - background-color: alpha(currentColor, 0.12); -} - -wnck-pager:selected { - background-color: #7daea3; -} - -#xfce4-mpc-plugin-26 > frame > border { - border: none; -} - -#xfce-panel-button { - -gtk-icon-style: symbolic; -} - -XfdesktopIconView.view { - border-radius: 12px; - background-color: transparent; - color: #fbf1c7; -} - -XfdesktopIconView.view:active { - box-shadow: none; -} - -XfdesktopIconView.view .rubberband { - border-radius: 0; -} - -window#whiskermenu-window { - border-radius: 12px; - background-color: transparent; - border: none; -} - -window#whiskermenu-window entry.search:focus { - background-color: #282524; -} - -window#whiskermenu-window > frame > border { - border-radius: 12px; - padding: 6px 8px 6px 9px; - margin: 6px; - border: none; - background-color: #242220; - 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(251, 241, 199, 0.1); -} - -window#whiskermenu-window box.categories > button.radio { - padding: 3px 6px; - margin: 1px 0; -} - -window#whiskermenu-window box.categories > button.radio:hover { - background-color: rgba(251, 241, 199, 0.12); -} - -window#whiskermenu-window box.categories > button.radio:checked, window#whiskermenu-window box.categories > button.radio:active { - background-color: rgba(251, 241, 199, 0.3); - color: #fbf1c7; -} - -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: #282524; - border-radius: 12px; -} - -window#whiskermenu-window scrolledwindow.frame treeview.view { - border-radius: 12px; -} - -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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -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(251, 241, 199, 0.3); - color: #fbf1c7; -} - -#XfceNotifyWindow { - background-color: #282524; - border-radius: 12px; - border: none; - box-shadow: none; -} - -#XfceNotifyWindow buttonbox { - padding: 0; -} - -#XfceNotifyWindow label#summary { - font-weight: bold; -} - -dialog.xfsm-logout-dialog { - border-radius: 12px; - background-color: rgba(36, 34, 32, 0.97); - border: none; - box-shadow: none; -} - -#xfwm-tabwin { - padding: 12px; - border-radius: 12px; - -xfwmtabwinwidget-icon-size: 64px; - -xfwmtabwinwidget-preview-size: 64px; -} - -/********** - * Thunar * - **********/ -.thunar toolbar { - box-shadow: inset 0 -1px rgba(251, 241, 199, 0.12); -} - -.thunar .standard-view.frame { - border: none; -} - -.thunar scrolledwindow.frame.sidebar { - border-top: none; -} - -.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(251, 241, 199, 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(251, 241, 199, 0.7); - font-weight: normal; -} - -menubar.-vala-panel-appmenu-private > menuitem:hover, -menubar.-vala-panel-background > menuitem:hover { - color: #fbf1c7; - border-radius: 0; -} - -menubar.-vala-panel-appmenu-private > menuitem:disabled, -menubar.-vala-panel-background > menuitem:disabled { - color: rgba(251, 241, 199, 0.32); -} - -/************************ - * LightDM GTK+ Greeter * - ************************/ -#panel_window { - background-color: #282524; - color: #fbf1c7; -} - -#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(251, 241, 199, 0.7); -} - -#panel_window menubar > menuitem:hover { - color: #fbf1c7; -} - -#panel_window menubar > menuitem:disabled label { - color: rgba(251, 241, 199, 0.32); -} - -#login_window, -#shutdown_dialog, -#restart_dialog { - margin: 8px; - 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(251, 241, 199, 0.1); - background-color: #242220; -} - -#content_frame { - padding-bottom: 16px; -} - -#buttonbox_frame { - padding-top: 24px; -} - -#buttonbox_frame > box, -#buttonbox_frame > buttonbox { - margin: -16px; -} - -#buttonbox_frame button:not(:disabled) { - color: #7daea3; -} - -/******** - * Nemo * - ********/ -.nemo-window .primary-toolbar { - background-color: #1d2021; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -.nemo-window .primary-toolbar entry { - min-height: 0; - margin: 0; -} - -.nemo-window .primary-toolbar > toolitem > .linked > button.image-button { - margin-left: 1px; - margin-right: 1px; -} - -.nemo-window .primary-toolbar button.text-button { - padding-left: 8px; - padding-right: 8px; - color: rgba(251, 241, 199, 0.7); -} - -.nemo-window .primary-toolbar button.text-button:hover, .nemo-window .primary-toolbar button.text-button:active, .nemo-window .primary-toolbar button.text-button:checked { - color: #fbf1c7; -} - -.nemo-window .primary-toolbar button.text-button:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.nemo-window .primary-toolbar button.text-button:backdrop { - color: rgba(251, 241, 199, 0.5); -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button { - margin-left: 1px; - margin-right: 1px; -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button:checked { - box-shadow: none; -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button { - border-radius: 6px; -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button:first-child { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button:last-child { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -.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: #282524; -} - -.nemo-window .nemo-window-pane widget.entry { - border-radius: 6px; - background-color: rgba(251, 241, 199, 0.04); -} - -.nemo-window .nemo-window-pane > notebook { - border-radius: 0; -} - -.places-treeview { - -nemoplacestreeview-disk-full-bg-color: #605f53; - -nemoplacestreeview-disk-full-fg-color: #7daea3; - -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 #fbf1c7; -/* text color for entries, views and content in general */ -@define-color theme_text_color #fbf1c7; -/* widget base background color */ -@define-color theme_bg_color #1d2021; -/* text widgets and the like base background color */ -@define-color theme_base_color #282524; -/* base background color of selections */ -@define-color theme_selected_bg_color #7daea3; -/* text/foreground color of selections */ -@define-color theme_selected_fg_color rgba(29, 32, 33, 0.87); -/* base background color of insensitive widgets */ -@define-color insensitive_bg_color #1d2021; -/* text foreground color of insensitive widgets */ -@define-color insensitive_fg_color rgba(251, 241, 199, 0.5); -/* insensitive text widgets and the like base background color */ -@define-color insensitive_base_color #282524; -/* widget text/foreground color on backdrop windows */ -@define-color theme_unfocused_fg_color #fbf1c7; -/* text color for entries, views and content in general on backdrop windows */ -@define-color theme_unfocused_text_color #fbf1c7; -/* widget base background color on backdrop windows */ -@define-color theme_unfocused_bg_color #1d2021; -/* text widgets and the like base background color on backdrop windows */ -@define-color theme_unfocused_base_color #282524; -/* base background color of selections on backdrop windows */ -@define-color theme_unfocused_selected_bg_color #7daea3; -/* text/foreground color of selections on backdrop windows */ -@define-color theme_unfocused_selected_fg_color rgba(29, 32, 33, 0.87); -/* insensitive color on backdrop windows */ -@define-color unfocused_insensitive_color rgba(251, 241, 199, 0.5); -/* widgets main borders color */ -@define-color borders rgba(251, 241, 199, 0.12); -/* widgets main borders color on backdrop windows */ -@define-color unfocused_borders rgba(251, 241, 199, 0.12); -/* these are pretty self explicative */ -@define-color warning_color #b47109; -@define-color error_color #c14a4a; -@define-color success_color #6c782e; -/* 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_focused_title #fbf1c7; -@define-color wm_unfocused_title rgba(251, 241, 199, 0.7); -@define-color wm_highlight rgba(251, 241, 199, 0.1); -@define-color wm_border #080707; -@define-color wm_focused_bg #1d2021; -@define-color wm_unfocused_bg #1d2021; -@define-color wm_button_icon #fbf1c7; -@define-color wm_button_focused_bg rgba(251, 241, 199, 0.04); -@define-color wm_button_unfocused_bg rgba(251, 241, 199, 0.04); -@define-color wm_button_hover_fg rgba(29, 32, 33, 0.87); -@define-color wm_button_active_fg rgba(29, 32, 33, 0.87); -@define-color wm_button_hover_bg #fbf1c7; -@define-color wm_button_active_bg #fbf1c7; -/* FIXME this is really an API */ -@define-color content_view_bg #282524; -@define-color placeholder_text_color #bcb496; -/* Very contrasty background for text views (@theme_text_color foreground) */ -@define-color text_view_bg #282524; -@define-color budgie_tasklist_indicator_color rgba(251, 241, 199, 0.3); -@define-color budgie_tasklist_indicator_color_active #7daea3; -@define-color budgie_tasklist_indicator_color_active_window rgba(99, 136, 128, 0.816); -@define-color budgie_tasklist_indicator_color_attention #b47109; -@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/local/share/themes/Gruvbox-Dark/gtk-3.0/gtk.css b/local/share/themes/Gruvbox-Dark/gtk-3.0/gtk.css deleted file mode 100644 index 3386535b9..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-3.0/gtk.css +++ /dev/null @@ -1,8495 +0,0 @@ -@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, #7daea3 0%, transparent 0%); - } - to { - background-image: radial-gradient(circle, #7daea3 100%, transparent 0%); - } -} - -* { - background-clip: padding-box; - -gtktoolbutton-icon-spacing: 0; - -gtktextview-error-underline-color: #c14a4a; - -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: 12px; - -gtk-secondary-caret-color: #7daea3; -} - -*:focus { - outline-color: alpha(currentColor, 0.1); -} - -.thunar .standard-view.frame widget.view:selected, XfdesktopIconView.view:active, calendar.raven-calendar:selected, box.vertical > widget > widget:selected, calendar:selected, modelbutton.flat:selected, -.menuitem.button.flat:selected { - color: #fbf1c7; - background-color: alpha(currentColor, 0.1); -} - -.nautilus-window notebook .view:not(treeview) selection, .nautilus-window notebook .view:not(treeview):selected, .nautilus-window flowboxchild:selected .icon-item-background, flowbox flowboxchild:selected { - color: #7daea3; - background-color: rgba(125, 174, 163, 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 { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -treeview.view:selected, .view:selected { - color: rgba(29, 32, 33, 0.87); - background-color: #fbf1c7; -} - -.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: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: 12px; - border-bottom-left-radius: 12px; -} - -.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: 12px; - border-bottom-right-radius: 12px; -} - -.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: 12px; -} - -.linked.vertical > button, .linked.vertical > spinbutton.vertical, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry { - border-radius: 0; -} - -.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: 12px; - border-top-right-radius: 12px; -} - -.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: 12px; - border-bottom-right-radius: 12px; -} - -.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: 12px; -} - -/*************** - * Base States * - ***************/ -.background { - background-color: #1d2021; - color: #fbf1c7; -} - -.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: #1d2021; - color: #fbf1c7; -} - -.gtkstyle-fallback:hover { - background-color: #111313; - color: #fbf1c7; -} - -.gtkstyle-fallback:active { - background-color: #050606; - color: #fbf1c7; -} - -.gtkstyle-fallback:disabled { - background-color: #1d2021; - color: rgba(251, 241, 199, 0.5); -} - -.gtkstyle-fallback:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.view { - background-color: #1d2021; - color: #fbf1c7; -} - -.view:hover { - color: #7daea3; - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.2); -} - -.view:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.view:selected:hover { - box-shadow: none; -} - -window.background.csd > stack.view { - border-radius: 0 0 12px 12px; -} - -textview text { - background-color: rgba(251, 241, 199, 0.04); -} - -textview border { - background-color: #282524; - color: rgba(251, 241, 199, 0.7); -} - -iconview:hover, iconview:selected { - border-radius: 12px; -} - -.rubberband, -rubberband, -XfdesktopIconView.view .rubberband, -.content-view rubberband, -.content-view .rubberband, -treeview.view rubberband, -flowbox rubberband { - border: 1px solid #7daea3; - background-color: rgba(125, 174, 163, 0.3); -} - -flowbox flowboxchild { - padding: 3px; - border-radius: 12px; - color: #fbf1c7; -} - -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(251, 241, 199, 0.7); -} - -label:disabled { - color: rgba(251, 241, 199, 0.5); -} - -headerbar label:disabled, tab label:disabled, button label:disabled { - color: inherit; -} - -label.osd { - border-radius: 12px; - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; -} - -.dim-label { - color: rgba(251, 241, 199, 0.7); -} - -assistant .sidebar { - padding: 4px 0; -} - -assistant .sidebar label { - min-height: 36px; - padding: 0 12px; - color: rgba(251, 241, 199, 0.5); - font-weight: 500; -} - -assistant .sidebar label.highlight { - color: #fbf1c7; -} - -.osd .scale-popup.background, .app-notification, -.osd { - opacity: 0.9; -} - -/********************* - * 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 * - ****************/ -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry { - background-color: rgba(29, 32, 33, 0.04); - color: rgba(29, 32, 33, 0.87); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus { - color: rgba(29, 32, 33, 0.87); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:drop(active), -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:drop(active), -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:drop(active) { - color: rgba(29, 32, 33, 0.87); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:disabled, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:disabled, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:disabled { - background-color: rgba(29, 32, 33, 0.04); - color: rgba(29, 32, 33, 0.38); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry image, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry image, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry image { - color: rgba(29, 32, 33, 0.6); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry image:disabled, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry image:disabled, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry image:disabled { - color: rgba(29, 32, 33, 0.38); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:hover image, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:hover image, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:hover image, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus image, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus image, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack entry:focus image { - color: rgba(29, 32, 33, 0.87); -} - -spinbutton.vertical, spinbutton:not(.vertical), -entry { - min-height: 36px; - padding: 0 8px; - border-radius: 12px; - 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(251, 241, 199, 0.08); - color: #fbf1c7; -} - -spinbutton.vertical:focus, spinbutton:focus:not(.vertical), -entry:focus { - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px #7daea3; -} - -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: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); -} - -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(251, 241, 199, 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: #fbf1c7; -} - -spinbutton.vertical image:disabled, spinbutton:not(.vertical) image:disabled, -entry image:disabled { - color: rgba(251, 241, 199, 0.5); -} - -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(251, 241, 199, 0.3) 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(251, 241, 199, 0.3) 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(251, 241, 199, 0.08); - color: #fbf1c7; -} - -spinbutton.error.vertical:focus, spinbutton.error:focus:not(.vertical), -entry.error:focus { - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px #c14a4a; -} - -spinbutton.error.vertical:disabled, spinbutton.error:disabled:not(.vertical), -entry.error:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); -} - -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(251, 241, 199, 0.08); - color: #fbf1c7; -} - -spinbutton.warning.vertical:focus, spinbutton.warning:focus:not(.vertical), -entry.warning:focus { - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px #b47109; -} - -spinbutton.warning.vertical:disabled, spinbutton.warning:disabled:not(.vertical), -entry.warning:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); -} - -spinbutton.vertical progress, spinbutton:not(.vertical) progress, -entry progress { - margin: 2px -8px; - border-bottom: 2px solid #7daea3; - background-color: transparent; -} - -treeview entry.flat, treeview entry { - background-color: #282524; -} - -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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.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(251, 241, 199, 0.7); -} - -/*********** - * Buttons * - ***********/ -@keyframes needs-attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#7daea3), to(transparent)); - } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#7daea3), to(transparent)); - } -} - -.xfce4-panel.background button, .raven-mpris button.image-button, .mate-panel-menu-bar button, infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, .app-notification button:not(.suggested-action):not(.destructive-action), frame.documents-dropdown .linked > button, .app-notification .linked > button, toolbar.osd .linked > button, frame.documents-dropdown button, .osd .scale-popup.background button, .app-notification button, toolbar.osd button { - color: rgba(251, 241, 199, 0.7); -} - -.xfce4-panel.background button:focus, .raven-mpris button.image-button:focus, .mate-panel-menu-bar button:focus, infobar.warning > revealer > box button:focus, .app-notification button:focus:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:focus, .osd .scale-popup.background button:focus, .app-notification button:focus, toolbar.osd button:focus, .xfce4-panel.background button:hover, .raven-mpris button.image-button:hover, .mate-panel-menu-bar button:hover, infobar.warning > revealer > box button:hover, .app-notification button:hover:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:hover, .osd .scale-popup.background button:hover, .app-notification button:hover, toolbar.osd button:hover, .xfce4-panel.background button:active, .raven-mpris button.image-button:active, .mate-panel-menu-bar button:active, infobar.warning > revealer > box button:active, .app-notification button:active:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:active, .osd .scale-popup.background button:active, .app-notification button:active, toolbar.osd button:active, .xfce4-panel.background button:checked, .raven-mpris button.image-button:checked, .mate-panel-menu-bar button:checked, infobar.warning > revealer > box button:checked, .app-notification button:checked:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:checked, .osd .scale-popup.background button:checked, .app-notification button:checked, toolbar.osd button:checked { - color: #fbf1c7; -} - -.xfce4-panel.background button:disabled, .raven-mpris button.image-button:disabled, .mate-panel-menu-bar button:disabled, infobar.warning > revealer > box button:disabled, .app-notification button:disabled:not(.suggested-action):not(.destructive-action), frame.documents-dropdown button:disabled, .osd .scale-popup.background button:disabled, .app-notification button:disabled, toolbar.osd button:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.xfce4-panel.background button:checked:disabled, .raven-mpris button.image-button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, infobar.warning > revealer > box button:checked:disabled, frame.documents-dropdown button:checked:disabled, .osd .scale-popup.background button:checked:disabled, .app-notification button:checked:disabled, toolbar.osd button:checked:disabled { - color: rgba(251, 241, 199, 0.5); -} - -actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.combo) { - background-color: #282524; - color: #fbf1c7; -} - -actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.combo) { - background-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat, terminal-window notebook > header > box button.flat, notebook > header > button.flat, notebook > header tab:not(:checked) button.flat { - color: rgba(29, 32, 33, 0.6); -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:hover, terminal-window notebook > header > box button.flat:hover, notebook > header > button.flat:hover, notebook > header tab:not(:checked) button.flat:hover, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:active, terminal-window notebook > header > box button.flat:active, notebook > header > button.flat:active, notebook > header tab:not(:checked) button.flat:active, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:focus, terminal-window notebook > header > box button.flat:focus, notebook > header > button.flat:focus, notebook > header tab:not(:checked) button.flat:focus { - color: rgba(29, 32, 33, 0.87); -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:checked, terminal-window notebook > header > box button.flat:checked, notebook > header > button.flat:checked, notebook > header tab:not(:checked) button.flat:checked { - background-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list button.flat:disabled, terminal-window notebook > header > box button.flat:disabled, notebook > header > button.flat:disabled, notebook > header tab:not(:checked) button.flat:disabled { - color: rgba(29, 32, 33, 0.3); -} - -button { - 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-color: rgba(251, 241, 199, 0.08); - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - color: #fbf1c7; -} - -button:focus { - box-shadow: 0 0 0 2px rgba(125, 174, 163, 0.35); -} - -button:hover { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); -} - -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; - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); - background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); - background-size: 0% 0%; -} - -button:disabled { - box-shadow: none; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -button:checked { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -button:checked:hover { - box-shadow: inset 0 0 0 9999px transparent; -} - -button:checked:disabled { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.1); - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -.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 > button.flat, notebook > header 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: 12px; - font-weight: 500; -} - -button:drop(active) { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); -} - -.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, tabbox > tab button, 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, modelbutton.flat, -.menuitem.button.flat, spinbutton.vertical button, spinbutton:not(.vertical) button, .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, filechooser #pathbarbox > stack > box > button, messagedialog .dialog-action-box button, -messagedialog .dialog-action-box .linked:not(.vertical) > button, 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), 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); - outline: none; - box-shadow: inset 0 0 0 9999px transparent; - background-color: transparent; - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - color: rgba(251, 241, 199, 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, tabbox > tab button:focus, 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, modelbutton.flat:focus, -.menuitem.button.flat:focus, spinbutton.vertical button:focus, spinbutton:not(.vertical) button: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, filechooser #pathbarbox > stack > box > button:focus, messagedialog .dialog-action-box button:focus, -messagedialog .dialog-action-box .linked:not(.vertical) > button:focus, 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: #fbf1c7; -} - -.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, tabbox > tab button:hover, 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, modelbutton.flat:hover, -.menuitem.button.flat:hover, spinbutton.vertical button:hover, spinbutton:not(.vertical) button: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, filechooser #pathbarbox > stack > box > button:hover, messagedialog .dialog-action-box button:hover, -messagedialog .dialog-action-box .linked:not(.vertical) > button:hover, 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 { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); - color: #fbf1c7; -} - -.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, tabbox > tab button:active, 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, modelbutton.flat:active, -.menuitem.button.flat:active, spinbutton.vertical button:active, spinbutton:not(.vertical) button: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, filechooser #pathbarbox > stack > box > button:active, messagedialog .dialog-action-box button:active, -messagedialog .dialog-action-box .linked:not(.vertical) > button:active, 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; - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); - background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); - background-size: 0% 0%; - color: #fbf1c7; -} - -.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, tabbox > tab button:disabled, 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, modelbutton.flat:disabled, -.menuitem.button.flat:disabled, spinbutton.vertical button:disabled, spinbutton:not(.vertical) button: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, filechooser #pathbarbox > stack > box > button:disabled, messagedialog .dialog-action-box button:disabled, -messagedialog .dialog-action-box .linked:not(.vertical) > button:disabled, 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(251, 241, 199, 0.32); -} - -.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, filechooser #pathbarbox > stack > box > button:checked, messagedialog .dialog-action-box button:checked, -messagedialog .dialog-action-box .linked:not(.vertical) > button:checked, popover.background.menu button:checked, -popover.background button.model:checked, toolbar button:checked, combobox > .linked:not(.vertical) > button:checked:not(:only-child), button.flat:checked, button.flat:checked:hover { - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -.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, filechooser #pathbarbox > stack > box > button:checked:disabled, messagedialog .dialog-action-box button:checked:disabled, 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(251, 241, 199, 0.5); -} - -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: 12px; -} - -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: 12px; -} - -button.osd { - min-width: 24px; - min-width: 24px; - padding: 6px; - background-color: #1d2021; - color: #fbf1c7; -} - -button.osd:focus { - box-shadow: none; -} - -button.osd:hover { - background-color: #3e3f3a; - color: #fbf1c7; -} - -button.osd:active { - background-color: #55544b; - color: #fbf1c7; -} - -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: #45707a; - color: #fbf1c7; - box-shadow: none; -} - -button.suggested-action:disabled { - box-shadow: none; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -button.suggested-action:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(69, 112, 122, 0.2), 0 4px 3px 0 rgba(69, 112, 122, 0.14), 0 1px 6px 0 rgba(69, 112, 122, 0.12); -} - -button.suggested-action:checked { - background-color: #7c9791; -} - -button.suggested-action:checked:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(69, 112, 122, 0.3), 0 2px 3px -1px rgba(69, 112, 122, 0.24), 0 2px 5px 0 rgba(69, 112, 122, 0.12); -} - -button.suggested-action:focus { - box-shadow: 0 0 0 2px rgba(69, 112, 122, 0.35); -} - -button.suggested-action.flat { - background-color: transparent; - color: #45707a; -} - -button.suggested-action.flat:disabled { - box-shadow: none; - background-color: transparent; - color: rgba(251, 241, 199, 0.32); -} - -button.suggested-action.flat:checked { - background-color: rgba(69, 112, 122, 0.3); -} - -button.destructive-action { - background-color: #c14a4a; - color: #fbf1c7; - box-shadow: none; -} - -button.destructive-action:disabled { - box-shadow: none; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -button.destructive-action:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(193, 74, 74, 0.2), 0 4px 3px 0 rgba(193, 74, 74, 0.14), 0 1px 6px 0 rgba(193, 74, 74, 0.12); -} - -button.destructive-action:checked { - background-color: #d27c70; -} - -button.destructive-action:checked:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(193, 74, 74, 0.3), 0 2px 3px -1px rgba(193, 74, 74, 0.24), 0 2px 5px 0 rgba(193, 74, 74, 0.12); -} - -button.destructive-action:focus { - box-shadow: 0 0 0 2px rgba(193, 74, 74, 0.35); -} - -button.destructive-action.flat { - background-color: transparent; - color: #c14a4a; -} - -button.destructive-action.flat:disabled { - box-shadow: none; - background-color: transparent; - color: rgba(251, 241, 199, 0.32); -} - -button.destructive-action.flat:checked { - background-color: rgba(193, 74, 74, 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: 36px; - min-height: 36px; - padding: 0; -} - -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; -} - -button.color { - min-height: 24px; - min-width: 24px; - padding: 6px; -} - -/********* - * Links * - *********/ -*:link { - color: #83b193; -} - -*:visited { - color: #ab62b1; -} - -button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active { - color: #83b193; -} - -button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active { - color: #ab62b1; -} - -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(251, 241, 199, 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(251, 241, 199, 0.5); -} - -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(251, 241, 199, 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: 12px; -} - -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: 12px; -} - -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: 12px; - 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(251, 241, 199, 0.08); - color: #fbf1c7; -} - -button.combo:only-child:focus { - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px rgba(251, 241, 199, 0.3); -} - -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(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px #7daea3; -} - -button.combo:only-child:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); -} - -/************ - * Toolbars * - ************/ -toolbar { - -gtkwidget-window-dragging: true; - padding: 2px 3px; - background-color: #1d2021; -} - -toolbar .linked -> button:not(:hover):not(:active):not(:checked):not(:focus):not( -:disabled -) { - background-color: alpha(currentColor, 0.05); -} - -.osd toolbar { - background-color: transparent; -} - -frame.documents-dropdown, .osd .scale-popup.background, .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(251, 241, 199, 0.1); - background-color: #1d2021; - color: #fbf1c7; -} - -frame.documents-dropdown:backdrop, .osd .scale-popup.background:backdrop, .app-notification:backdrop, toolbar.osd:backdrop { - box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.2), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(251, 241, 199, 0.1); -} - -frame.left.documents-dropdown, .osd .left.scale-popup.background, .left.app-notification, frame.right.documents-dropdown, .osd .right.scale-popup.background, .right.app-notification, frame.top.documents-dropdown, .osd .top.scale-popup.background, .top.app-notification, frame.bottom.documents-dropdown, .osd .bottom.scale-popup.background, .bottom.app-notification, toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { - border-radius: 0; -} - -frame.bottom.documents-dropdown, .osd .bottom.scale-popup.background, .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)); -} - -frame.documents-dropdown entry, .osd .scale-popup.background entry, .app-notification entry, -frame.documents-dropdown button, -.osd .scale-popup.background button, -.app-notification button, toolbar.osd entry, -toolbar.osd button { - border-radius: 12px; -} - -frame.documents-dropdown entry, .osd .scale-popup.background entry, .app-notification entry, toolbar.osd entry { - color: #fbf1c7; -} - -frame.documents-dropdown .linked > button:first-child, .osd .scale-popup.background .linked > button:first-child, .app-notification .linked > button:first-child, toolbar.osd .linked > button:first-child { - border-radius: 12px 0 0 12px; -} - -frame.documents-dropdown .linked > button:last-child, .osd .scale-popup.background .linked > button:last-child, .app-notification .linked > button:last-child, toolbar.osd .linked > button:last-child { - border-radius: 0 12px 12px 0; -} - -toolbar.horizontal > separator { - margin: 2px; -} - -toolbar.vertical > separator { - margin: 2px; -} - -toolbar:not(.inline-toolbar):not(.osd) scale, -toolbar:not(.inline-toolbar):not(.osd) entry, -toolbar:not(.inline-toolbar):not(.osd) spinbutton, -toolbar:not(.inline-toolbar):not(.osd) button { - margin: 2px 1px; -} - -toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), -toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), -toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { - margin-left: 0; -} - -toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), -toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), -toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { - margin-right: 0; -} - -toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, -toolbar:not(.inline-toolbar):not(.osd) spinbutton button { - margin: 0; -} - -toolbar:not(.inline-toolbar):not(.osd) switch { - margin: 8px 2px; -} - -.toolbar { - background-color: #1d2021; -} - -frame .toolbar { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -.inline-toolbar { - padding: 6px; - border-style: solid; - border-width: 0 1px 1px; - border-color: rgba(251, 241, 199, 0.12); - background-color: #282524; - border-radius: 0 0 9px 9px; -} - -.frame .inline-toolbar { - border-width: 1px 0 0; - background-color: transparent; -} - -searchbar > revealer > box, -.location-bar { - padding: 6px; - border: none; - background-color: #1d2021; -} - -searchbar > revealer > box { - margin: -6px; -} - -/*************** - * Header bars * - ***************/ -.nemo-window .primary-toolbar button:not(.text-button), .titlebar button:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); - border-radius: 9999px; -} - -.nemo-window .primary-toolbar .linked > button:not(.text-button), .titlebar .linked > button:not(.suggested-action):not(.destructive-action) { - border-radius: 0; -} - -.nemo-window .primary-toolbar .linked > button:first-child:not(.text-button), .titlebar .linked > button:first-child:not(.suggested-action):not(.destructive-action) { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; -} - -.nemo-window .primary-toolbar .linked > button:last-child:not(.text-button), .titlebar .linked > button:last-child:not(.suggested-action):not(.destructive-action) { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; -} - -.nemo-window .primary-toolbar .linked > button:only-child:not(.text-button), .titlebar .linked > button:only-child:not(.suggested-action):not(.destructive-action) { - border-radius: 9999px; -} - -.nemo-window .primary-toolbar button:hover:not(.text-button), .titlebar button:hover:not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 0 0 9999px rgba(251, 241, 199, 0.12); -} - -.nemo-window .primary-toolbar button:checked:not(.text-button), .titlebar button:checked:not(.suggested-action):not(.destructive-action) { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.nemo-window .primary-toolbar button:checked:hover:not(.text-button), .titlebar button:checked:hover:not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 0 0 9999px rgba(29, 32, 33, 0.04); - color: rgba(29, 32, 33, 0.87); -} - -.nemo-window .primary-toolbar button:checked:focus:not(.text-button), .titlebar button:checked:focus:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.87); - box-shadow: none; -} - -.nemo-window .primary-toolbar button:checked:disabled:not(.text-button), .titlebar button:checked:disabled:not(.suggested-action):not(.destructive-action) { - background-color: rgba(251, 241, 199, 0.5); - color: rgba(29, 32, 33, 0.38); -} - -.nemo-window .primary-toolbar button:focus:not(.text-button), .titlebar button:focus:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:hover:not(.text-button), .titlebar button:hover:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:active:not(.text-button), .titlebar button:active:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; -} - -.nemo-window .primary-toolbar button:disabled:not(.text-button), .titlebar button:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -.nemo-window .primary-toolbar button:backdrop:not(.text-button), .titlebar button:backdrop:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.5); -} - -.nemo-window .primary-toolbar button:backdrop:focus:not(.text-button), .titlebar button:backdrop:focus:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:backdrop:hover:not(.text-button), .titlebar button:backdrop:hover:not(.suggested-action):not(.destructive-action), .nemo-window .primary-toolbar button:backdrop:active:not(.text-button), .titlebar button:backdrop:active:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); -} - -.nemo-window .primary-toolbar button:backdrop:disabled:not(.text-button), .titlebar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -.nemo-window .primary-toolbar button:backdrop:checked:not(.text-button), .titlebar button:backdrop:checked:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.6); -} - -.nemo-window .primary-toolbar button:backdrop:checked:disabled:not(.text-button), .titlebar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.3); -} - -.nemo-window .primary-toolbar entry, .titlebar entry { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; - border-radius: 9999px; -} - -.nemo-window .primary-toolbar entry:disabled, .titlebar entry:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -.nemo-window .primary-toolbar entry image, .titlebar entry image { - color: rgba(251, 241, 199, 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: #fbf1c7; -} - -.nemo-window .primary-toolbar entry image:disabled, .titlebar entry image:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.titlebar { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #1d2021; - color: #fbf1c7; - border-radius: 12px 12px 0 0; - border: none; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.titlebar:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.titlebar:backdrop { - color: rgba(251, 241, 199, 0.7); -} - -.titlebar:backdrop:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.csd .titlebar:backdrop { - background-color: #1d2021; -} - -.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(251, 241, 199, 0.7); -} - -.titlebar .subtitle:backdrop, -.titlebar .dim-label:backdrop { - color: rgba(251, 241, 199, 0.5); -} - -.titlebar .titlebar, -.titlebar headerbar { - background-color: transparent; - box-shadow: none; -} - -.titlebar + separator, -.titlebar + separator.sidebar { - background-color: #1d2021; - background-image: none; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.titlebar + separator:backdrop, -.titlebar + separator.sidebar:backdrop { - background-color: #1d2021; -} - -.titlebar.selection-mode + separator, .titlebar.selection-mode + separator.sidebar, .selection-mode .titlebar + separator, .selection-mode .titlebar + separator.sidebar { - background-color: #7daea3; -} - -.titlebar.selection-mode + separator:backdrop, .titlebar.selection-mode + separator.sidebar:backdrop, .selection-mode .titlebar + separator:backdrop, .selection-mode .titlebar + separator.sidebar:backdrop { - background-color: #7daea3; -} - -.titlebar button.suggested-action:disabled, -.titlebar button.destructive-action:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -.titlebar stackswitcher { - background-color: rgba(251, 241, 199, 0.04); -} - -.titlebar stackswitcher:checked { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -.titlebar stackswitcher:checked:hover { - background-color: #fefdf7; -} - -.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { - border-radius: 9999px; -} - -.titlebar .path-bar -button:not(.suggested-action):not(.destructive-action).text-button { - 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: #7daea3; - color: rgba(29, 32, 33, 0.87); - box-shadow: inset 0 1px rgba(251, 241, 199, 0.2); -} - -.titlebar.selection-mode:backdrop { - color: rgba(29, 32, 33, 0.6); - background-color: #90bab0; -} - -.titlebar.selection-mode .subtitle:link { - color: rgba(29, 32, 33, 0.87); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.87); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { - color: rgba(29, 32, 33, 0.38); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { - color: rgba(29, 32, 33, 0.87); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { - color: rgba(29, 32, 33, 0.38); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:not(.titlebutton) { - color: rgba(29, 32, 33, 0.6); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { - color: rgba(29, 32, 33, 0.3); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { - color: rgba(29, 32, 33, 0.6); -} - -.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { - color: rgba(29, 32, 33, 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; - border: none; - background-color: #1d2021; - background-image: none; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.titlebar.default-decoration:backdrop { - background-color: #1d2021; -} - -.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; -} - -.titlebar.default-decoration button.titlebutton.minimize:active, .titlebar.default-decoration button.titlebutton.maximize:active, .titlebar.default-decoration button.titlebutton.close:active { - color: rgba(29, 32, 33, 0.87); - background-image: none; - animation: none; - box-shadow: none; - background-color: rgba(206, 198, 165, 0.9675); -} - -.background.csd .titlebar.default-decoration { - padding: 6px; -} - -.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 headerbar { - background-color: #1d2021; -} - -headerbar entry, -headerbar spinbutton, -headerbar button, -headerbar stackswitcher { - margin-top: 6px; - margin-bottom: 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 { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 0 0 12px 12px; -} - -headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not( -.destructive-action -) { - border-radius: 9px; - margin: 6px 3px; - min-width: 120px; - padding: 0; -} - -headerbar.windowhandle viewswitcher button:not(.titlebutton):not(.suggested-action):not( -.destructive-action -):not(:hover):not(:active):not(:checked) { - background-color: transparent; -} - -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 { - 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; - 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: 6px; - margin-left: 1px; - margin-right: 1px; - background-color: alpha(currentColor, 0.08); -} - -.caja-pathbar button:disabled, -.path-bar.linked:not(.vertical) > button:disabled { - background-color: alpha(currentColor, 0.05); -} - -.caja-pathbar button:first-child, -.path-bar.linked:not(.vertical) > button:first-child { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -.caja-pathbar button:last-child, -.path-bar.linked:not(.vertical) > button:last-child { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -.caja-pathbar button:checked, -.path-bar.linked:not(.vertical) > button:checked { - background-color: alpha(currentColor, 0.16); - color: #fbf1c7; -} - -.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(251, 241, 199, 0.12); - border-top-color: rgba(251, 241, 199, 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.separator { - min-height: 6px; - color: rgba(251, 241, 199, 0.12); -} - -treeview.view:drop(active) { - border-style: solid none; - border-width: 9999px; - border-color: alpha(currentColor, 0.08); -} - -treeview.view:drop(active).after { - border-top-style: none; -} - -treeview.view:drop(active).before { - border-bottom-style: none; -} - -treeview.view.expander { - color: rgba(251, 241, 199, 0.7); - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - -gtk-icon-transform: rotate(-90deg); -} - -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: #fbf1c7; -} - -treeview.view.expander:disabled { - color: rgba(251, 241, 199, 0.32); -} - -treeview.view.expander:selected { - color: rgba(29, 32, 33, 0.6); -} - -treeview.view.expander:selected:hover, treeview.view.expander:selected:active { - color: rgba(29, 32, 33, 0.87); -} - -treeview.view.expander:selected:disabled { - color: rgba(29, 32, 33, 0.3); -} - -treeview.view.progressbar { - border: none; - box-shadow: none; - background-color: #7daea3; - background-image: none; - border-radius: 9999px; - color: rgba(29, 32, 33, 0.87); -} - -treeview.view.progressbar:selected, treeview.view.progressbar:selected:hover, treeview.view.progressbar:selected:focus { - box-shadow: none; - background-color: #90b8a8; - color: rgba(29, 32, 33, 0.87); -} - -treeview.view.progressbar:selected:backdrop, treeview.view.progressbar:selected:hover:backdrop, treeview.view.progressbar:selected:focus:backdrop { - color: rgba(29, 32, 33, 0.87); -} - -treeview.view.progressbar:backdrop, treeview.view.progressbar:selected:backdrop { - background-color: rgba(251, 241, 199, 0.3); -} - -treeview.view.trough { - border: none; - box-shadow: none; - background-color: rgba(251, 241, 199, 0.12); - 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(251, 241, 199, 0.12); -} - -treeview.view.trough:backdrop, treeview.view.trough:selected:backdrop { - background-color: rgba(251, 241, 199, 0.12); -} - -treeview.view header button { - padding: 2px 6px; - border: none; - border-right: 1px solid transparent; - border-color: rgba(251, 241, 199, 0.12); - border-radius: 0; - background-clip: border-box; - border-image: linear-gradient(to bottom, transparent 20%, rgba(251, 241, 199, 0.12) 20%, rgba(251, 241, 199, 0.12) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; -} - -treeview.view header button:not(:focus):not(:hover):not(:active) { - color: rgba(251, 241, 199, 0.7); -} - -treeview.view header button, treeview.view header button:disabled { - background-color: #282524; -} - -treeview.view header button:last-child { - border-right: none; - border-image: none; -} - -treeview.view button.dnd, -treeview.view header.button.dnd { - padding: 2px 6px; - border-style: none solid solid; - border-width: 1px; - border-color: rgba(251, 241, 199, 0.12); - border-radius: 0; - box-shadow: none; - background-color: #282524; - background-clip: border-box; - color: #7daea3; -} - -treeview.view acceleditor > label { - background-color: #7daea3; -} - -/********* - * Menus * - *********/ -menubar, -.menubar { - -gtkwidget-window-dragging: true; - padding: 0; - background-color: #1d2021; - color: #fbf1c7; -} - -menubar:backdrop, -.menubar:backdrop { - color: rgba(251, 241, 199, 0.7); - background-color: #1d2021; -} - -.csd menubar, .csd .menubar { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); -} - -menubar > menuitem, -.menubar > menuitem { - transition: none; - min-height: 20px; - padding: 4px 8px; - color: rgba(251, 241, 199, 0.7); - border-radius: 12px; -} - -menubar > menuitem:hover, -.menubar > menuitem:hover { - transition: none; - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -menubar > menuitem:backdrop, -.menubar > menuitem:backdrop { - color: rgba(251, 241, 199, 0.5); -} - -menubar > menuitem:disabled, -.menubar > menuitem:disabled { - color: rgba(251, 241, 199, 0.32); -} - -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 { - margin: 6px; - padding: 6px; - background-color: #141617; - background-clip: border-box; - border-radius: 12px; - border: 1px solid #7daea3; -} - -.csd menu { - border: none; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -menu menuitem { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - min-height: 20px; - min-width: 40px; - padding: 4px 8px; - color: #fbf1c7; - font: initial; - text-shadow: none; - border-radius: 12px; -} - -menu menuitem:hover { - transition: none; - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; -} - -menu menuitem:hover accelerator { - color: #7daea3; -} - -menu menuitem:hover:disabled accelerator { - color: rgba(29, 32, 33, 0.3); -} - -menu menuitem:active { - background-color: alpha(currentColor, 0.12); -} - -menu menuitem:disabled { - color: rgba(251, 241, 199, 0.5); -} - -menu menuitem accelerator { - color: rgba(251, 241, 199, 0.7); -} - -menu menuitem:disabled accelerator { - color: rgba(251, 241, 199, 0.32); -} - -menu menuitem arrow { - min-height: 16px; - min-width: 16px; -} - -menu menuitem arrow:dir(ltr) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - margin-left: 8px; -} - -menu menuitem arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); - margin-right: 8px; -} - -menu menuitem label:dir(rtl), menu menuitem label:dir(ltr) { - color: inherit; -} - -menu .view:selected { - background-color: #3d3934; -} - -menu > arrow { - min-height: 16px; - min-width: 16px; - padding: 4px; - background-color: #141617; - color: rgba(251, 241, 199, 0.7); -} - -menu > arrow.top { - margin-top: 0; - border-radius: 12px; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); -} - -menu > arrow.bottom { - margin-top: 8px; - margin-bottom: -12px; - border-radius: 12px; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -menu > arrow:hover { - background-image: image(alpha(currentColor, 0.08)); - color: #fbf1c7; -} - -menu > arrow:disabled { - border-color: transparent; - background-color: transparent; - color: transparent; -} - -menu separator { - margin: 3px 0; - background-color: transparent; -} - -/************ - * Popovers * - ************/ -popover.background { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - padding: 0; - background-color: #141617; - border-radius: 12px; -} - -popover.background, .csd popover.background { - 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); - 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), inset 0 1px rgba(251, 241, 199, 0.1), 0 0 36px transparent; -} - -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: 0; -} - -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: 12px; - padding: 6px; -} - -popover.background .view:not(:selected), -popover.background toolbar { - background-color: #141617; -} - -popover.background button, -popover.background entry, -popover.background combobox { - border-radius: 12px; -} - -popover.background .linked > button:not(.radio) { - border-radius: 12px; -} - -popover.background .linked > button:not(.radio):first-child { - border-radius: 12px; -} - -popover.background .linked > button:not(.radio):last-child { - border-radius: 12px; -} - -popover.background .linked > button:not(.radio):only-child { - border-radius: 12px; -} - -popover.background.menu button, -popover.background button.model { - min-height: 32px; - padding: 0 8px; - border-radius: 12px; -} - -popover.background separator { - margin: 3px 0; - background-color: transparent; -} - -popover.background list separator { - margin: 0; -} - -modelbutton.flat, -.menuitem.button.flat { - min-height: 28px; - padding: 0 8px; - border-radius: 12px; - color: #fbf1c7; -} - -modelbutton.flat arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); -} - -modelbutton.flat arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); -} - -/************* - * Notebooks * - *************/ -tabbox > tab, notebook > header 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 12px; - border: none; - outline: none; - background-clip: padding-box; - color: #fbf1c7; - font-weight: 500; - border-radius: 9px; -} - -tabbox > tab:hover, notebook > header tab:hover { - background-color: rgba(29, 32, 33, 0.12); - color: #7daea3; -} - -tabbox > tab:disabled, notebook > header tab:disabled { - color: rgba(29, 32, 33, 0.3); -} - -tabbox > tab:checked, notebook > header tab:checked { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #282524; - color: #7daea3; -} - -tabbox > tab:checked:disabled, notebook > header tab:checked:disabled { - color: rgba(251, 241, 199, 0.5); -} - -notebook > header.bottom > tabs > arrow, notebook > header.top > tabs > arrow { - padding-left: 4px; - padding-right: 4px; -} - -notebook > header.bottom > tabs > arrow.down, notebook > header.top > tabs > arrow.down { - margin-left: 0; - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); -} - -notebook > header.bottom > tabs > arrow.up, notebook > header.top > tabs > arrow.up { - margin-right: 0; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); -} - -notebook > header.right > tabs > arrow, notebook > header.left > tabs > arrow { - padding-top: 4px; - padding-bottom: 4px; -} - -notebook > header.right > tabs > arrow.down, notebook > header.left > tabs > arrow.down { - margin-top: 0; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); -} - -notebook > header.right > tabs > arrow.up, notebook > header.left > tabs > arrow.up { - margin-bottom: 0; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -notebook { - background-color: rgba(251, 241, 199, 0.04); -} - -window.background > notebook { - background-color: transparent; -} - -notebook.frame { - border: none; - border-radius: 9px; -} - -notebook.frame scrolledwindow.frame { - border: none; -} - -notebook.frame frame > border { - border: none; - border-radius: 9px; -} - -notebook.frame frame > list row.activatable { - border-radius: 12px; -} - -notebook > header { - border: none; - background-color: rgba(251, 241, 199, 0.04); - padding: 3px; - margin: 3px; - border-radius: 12px; -} - -notebook > header > tabs > arrow { - min-height: 16px; - min-width: 16px; - border-radius: 9px; - color: rgba(29, 32, 33, 0.6); -} - -notebook > header > tabs > arrow:hover, notebook > header > tabs > arrow:active { - color: rgba(29, 32, 33, 0.87); -} - -notebook > header > tabs > arrow:disabled { - color: rgba(29, 32, 33, 0.3); -} - -notebook > header.top > tabs > arrow { - border-top-style: none; -} - -notebook > header.bottom > tabs > arrow { - border-bottom-style: none; -} - -notebook > header.left > tabs > arrow { - border-left-style: none; -} - -notebook > header.right > tabs > arrow { - border-right-style: none; -} - -notebook > header tab > box { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - margin: -6px -12px; - padding: 6px 12px; -} - -notebook > header tab > box:drop(active) { - background-color: rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -notebook > header tab button.flat:last-child { - margin-left: 6px; - margin-right: -6px; -} - -notebook > header tab button.flat:first-child { - margin-left: -6px; - margin-right: 6px; -} - -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 + tab, -notebook > header.top tabs tab + arrow, notebook > header.bottom tabs tab + tab, -notebook > header.bottom tabs tab + arrow { - margin-left: 3px; -} - -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 + tab, -notebook > header.left tabs tab + arrow, notebook > header.right tabs tab + tab, -notebook > header.right tabs tab + arrow { - margin-top: 3px; -} - -notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { - border-style: solid; -} - -notebook > header > button.flat { - padding: 3px; -} - -notebook > stack:not(:only-child) { - background-color: transparent; - border-radius: 12px; -} - -/************** - * Scrollbars * - **************/ -scrollbar { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #282524; -} - -* { - -gtkscrollbar-has-backward-stepper: false; - -gtkscrollbar-has-forward-stepper: false; -} - -scrollbar.top { - border-bottom: 1px solid transparent; -} - -scrollbar.bottom { - border-top: 1px solid transparent; -} - -scrollbar.left { - border-right: 1px solid transparent; -} - -scrollbar.right { - border-left: 1px solid transparent; -} - -scrollbar slider { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - min-width: 8px; - min-height: 8px; - border: 4px solid transparent; - border-radius: 9999px; - background-clip: padding-box; - background-color: rgba(251, 241, 199, 0.5); -} - -scrollbar slider:hover { - background-color: rgba(251, 241, 199, 0.7); -} - -scrollbar slider:active { - background-color: #fbf1c7; -} - -scrollbar slider:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -scrollbar.fine-tune slider { - min-width: 4px; - min-height: 4px; -} - -scrollbar.fine-tune.horizontal slider { - margin: 2px 0; -} - -scrollbar.fine-tune.vertical slider { - margin: 0 2px; -} - -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: 3px; - border: 1px solid rgba(40, 37, 36, 0.3); -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - min-width: 4px; - min-height: 4px; - margin: 3px; - border: 1px solid rgba(40, 37, 36, 0.3); - border-radius: 9999px; - background-color: rgba(251, 241, 199, 0.5); - background-clip: padding-box; - -gtk-icon-source: none; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - min-width: 24px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { - min-width: 8px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - min-height: 24px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { - min-height: 8px; -} - -scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - background-color: transparent; -} - -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(251, 241, 199, 0.32); - background-clip: padding-box; - font-size: 0; - color: transparent; -} - -switch:checked { - background-color: #7daea3; -} - -switch:disabled { - opacity: 0.5; -} - -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: rgba(29, 32, 33, 0.6); - border: none; - color: transparent; -} - -switch:focus slider, switch:hover slider, switch:focus:hover slider { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.12); -} - -/************************* - * Check and Radio items * - *************************/ -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; -} - -actionbar > revealer > box check:not(:checked):not(:indeterminate), -actionbar > revealer > box radio:not(:checked):not(:indeterminate) { - background-color: rgba(29, 32, 33, 0.12); -} - -actionbar > revealer > box check:not(:checked):not(:indeterminate):hover, -actionbar > revealer > box radio:not(:checked):not(:indeterminate):hover { - box-shadow: 0 0 0 6px rgba(29, 32, 33, 0.04); - background-color: rgba(29, 32, 33, 0.15); -} - -actionbar > revealer > box check:not(:checked):not(:indeterminate):active, -actionbar > revealer > box radio:not(:checked):not(:indeterminate):active { - box-shadow: 0 0 0 6px rgba(29, 32, 33, 0.12); - background-color: rgba(29, 32, 33, 0.2); -} - -actionbar > revealer > box check:not(:checked):not(:indeterminate):disabled, -actionbar > revealer > box radio:not(:checked):not(:indeterminate):disabled { - background-color: rgba(29, 32, 33, 0.04); -} - -check, -radio { - min-height: 20px; - min-width: 20px; - margin: 3px; - padding: 0; - border-radius: 9999px; - color: transparent; - background-color: rgba(251, 241, 199, 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(251, 241, 199, 0.04); - background-color: rgba(251, 241, 199, 0.15); -} - -check:active, -radio:active { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.2); -} - -check:disabled, -radio:disabled { - background-color: rgba(251, 241, 199, 0.04); -} - -check:checked, check:indeterminate, -radio:checked, -radio:indeterminate { - color: rgba(29, 32, 33, 0.6); - background-color: #7daea3; -} - -check:checked:hover, check:indeterminate:hover, -radio:checked:hover, -radio:indeterminate:hover { - box-shadow: 0 0 0 6px rgba(125, 174, 163, 0.15); - background-color: #9cc2b9; -} - -check:checked:active, check:indeterminate:active, -radio:checked:active, -radio:indeterminate:active { - box-shadow: 0 0 0 6px rgba(125, 174, 163, 0.2); - background-color: #7daea3; -} - -check:checked:disabled, check:indeterminate:disabled, -radio:checked:disabled, -radio:indeterminate:disabled { - color: rgba(29, 32, 33, 0.3); - background-color: rgba(125, 174, 163, 0.35); -} - -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; - background-image: 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: -3px; -} - -menu menuitem check:dir(rtl), menu menuitem radio:dir(rtl) { - margin-left: 6px; - margin-right: -3px; -} - -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-scaled(-gtk-recolor(url("assets/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/checkbox-checked-symbolic@2.svg"))); -} - - -check:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/checkbox-mixed-symbolic@2.svg"))); -} - - -radio:checked { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/radio-checked-symbolic@2.svg"))); -} - - -radio:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/radio-mixed-symbolic@2.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-scaled(-gtk-recolor(url("assets/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/small-checkbox-checked-symbolic@2.svg"))); -} - -#MozillaGtkWidget > widget > checkbutton > check:indeterminate, -menu menuitem check:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/small-checkbox-mixed-symbolic@2.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-scaled(-gtk-recolor(url("assets/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/small-radio-checked-symbolic@2.svg"))); -} - -#MozillaGtkWidget > widget > radiobutton > radio:indeterminate, -menu menuitem radio:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/small-radio-mixed-symbolic@2.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; - background-color: rgba(251, 241, 199, 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:selected:not(:disabled):not(:checked):not(:indeterminate), -treeview.view check:selected:not(:disabled):not(:checked):not(:indeterminate) { - background-color: rgba(29, 32, 33, 0.12); -} - -treeview.view radio:checked, treeview.view radio:indeterminate, -treeview.view check:checked, -treeview.view check:indeterminate { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - background-image: none; -} - -.view.content-view.check:not(list), -.content-view .tile check:not(list) { - min-height: 40px; - min-width: 40px; - margin: 0; - padding: 0; - border-radius: 9999px; -} - -.view.content-view.check:not(list):not(:checked), -.content-view .tile check:not(list):not(:checked) { - background-image: image(rgba(251, 241, 199, 0.25)); -} - -.view.content-view.check:not(list):hover, .view.content-view.check:not(list):checked, -.content-view .tile check:not(list):hover, -.content-view .tile check:not(list):checked { - box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1); -} - -.view.content-view.check:not(list):checked, -.content-view .tile check:not(list):checked { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/checkbox-checked-symbolic@2.svg"))); -} - -/************ - * GtkScale * - ************/ -scale { - min-height: 2px; - min-width: 2px; -} - -scale.horizontal { - padding: 17px 12px; -} - -scale.vertical { - padding: 12px 17px; -} - -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(251, 241, 199, 0.3); -} - -scale trough:disabled { - background-color: rgba(251, 241, 199, 0.12); -} - -scale highlight { - transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); - background-image: image(#7daea3); -} - -scale highlight:disabled { - background-color: #1d2021; - background-image: image(rgba(251, 241, 199, 0.32)); -} - -scale fill { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.3); -} - -scale fill:disabled { - background-color: transparent; -} - -scale slider { - min-height: 18px; - min-width: 18px; - margin: -8px; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - border-radius: 9999px; - color: #7daea3; - background-color: #282524; - box-shadow: inset 0 0 0 2px #7daea3; -} - -scale slider:hover { - box-shadow: inset 0 0 0 2px #7daea3, 0 0 0 8px rgba(251, 241, 199, 0.12); -} - -scale slider:active { - box-shadow: inset 0 0 0 4px #7daea3, 0 0 0 8px rgba(251, 241, 199, 0.12); -} - -scale slider:disabled { - box-shadow: inset 0 0 0 2px rgba(251, 241, 199, 0.32); -} - -scale marks, -scale value { - color: rgba(251, 241, 199, 0.7); -} - -scale.marks-before:not(.marks-after) slider, scale.marks-after:not(.marks-before) slider { - min-height: 24px; - min-width: 24px; - margin: -11px; - background-color: transparent; - box-shadow: none; - color: #7daea3; -} - -scale.marks-before:not(.marks-after) slider:hover, scale.marks-after:not(.marks-before) slider:hover { - box-shadow: 0 0 0 4px rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.12); -} - -scale.marks-before:not(.marks-after) slider:active, scale.marks-after:not(.marks-before) slider:active { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.12); -} - -scale.marks-before:not(.marks-after) slider:disabled, scale.marks-after:not(.marks-before) slider:disabled { - color: #4d6762; -} - -scale.horizontal.marks-before:not(.marks-after) slider { - -gtk-icon-source: -gtk-recolor(url("assets/scale-horz-marks-before-slider-symbolic.svg")); -} - -scale.horizontal.marks-after:not(.marks-before) slider { - -gtk-icon-source: -gtk-recolor(url("assets/scale-horz-marks-after-slider-symbolic.svg")); -} - -scale.vertical.marks-before:not(.marks-after) slider { - -gtk-icon-source: -gtk-recolor(url("assets/scale-vert-marks-before-slider-symbolic.svg")); -} - -scale.vertical.marks-after:not(.marks-before) slider { - -gtk-icon-source: -gtk-recolor(url("assets/scale-vert-marks-after-slider-symbolic.svg")); -} - -scale indicator { - background-color: rgba(251, 241, 199, 0.3); - color: transparent; -} - -scale.horizontal indicator { - min-height: 8px; - min-width: 1px; -} - -scale.vertical indicator { - min-height: 1px; - min-width: 8px; -} - -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(251, 241, 199, 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: 12px; - background-color: rgba(251, 241, 199, 0.12); -} - -progressbar progress { - border-radius: 12px; - background-color: #7daea3; -} - -progressbar.osd { - min-width: 6px; - min-height: 6px; - background-color: transparent; -} - -progressbar.osd trough { - background-color: transparent; -} - -progressbar.osd progress { - background-color: #7daea3; -} - -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: 12px; -} - -levelbar block.low { - background-color: #b47109; -} - -levelbar block.high, levelbar block:not(.empty) { - background-color: #7daea3; -} - -levelbar block.full { - background-color: #6c782e; -} - -levelbar block.empty { - background-color: rgba(251, 241, 199, 0.12); -} - -/**************** - * Print dialog * -*****************/ -printdialog paper { - padding: 0; - border: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; - color: #fbf1c7; -} - -printdialog .dialog-action-box { - margin: 12px; -} - -/********** - * Frames * - **********/ -frame > border, .frame { - margin: 0; - padding: 0; - border: 1px solid rgba(251, 241, 199, 0.12); - border-radius: 0; - box-shadow: none; -} - -.frame.view { - border-radius: 12px; -} - -.frame.flat { - border-style: none; -} - -frame.flat > border, frame > border.flat, statusbar frame > border { - border: none; -} - -actionbar > revealer > box { - margin: 6px 0 0 0; - padding: 6px; - border: none; - color: #fbf1c7; - background-color: #1d2021; - border-radius: 0 0 12px 12px; -} - -actionbar > revealer > box button { - border-radius: 6px; -} - -actionbar > revealer > box button.combo:only-child { - border-radius: 6px; - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); -} - -actionbar > revealer > box button.combo:only-child:hover, actionbar > revealer > box button.combo:only-child:active { - color: #7daea3; -} - -actionbar > revealer > box button.combo:only-child:disabled { - color: #7daea3; -} - -actionbar > revealer > box stackswitcher { - background-color: rgba(29, 32, 33, 0.04); -} - -actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.6); -} - -actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):hover, actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):active { - color: rgba(29, 32, 33, 0.87); -} - -actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked { - background-color: #282524; - color: #fbf1c7; -} - -actionbar > revealer > box stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked:hover { - background-color: #282524; -} - -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(251, 241, 199, 0.12)), to(rgba(251, 241, 199, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(251, 241, 199, 0.07)), to(rgba(251, 241, 199, 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(251, 241, 199, 0.12)), to(rgba(251, 241, 199, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(251, 241, 199, 0.07)), to(rgba(251, 241, 199, 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(251, 241, 199, 0.12)), to(rgba(251, 241, 199, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(251, 241, 199, 0.07)), to(rgba(251, 241, 199, 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(251, 241, 199, 0.12)), to(rgba(251, 241, 199, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(251, 241, 199, 0.07)), to(rgba(251, 241, 199, 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(251, 241, 199, 0.12); - background-color: #282524; -} - -junction:dir(rtl) { - border-style: solid solid none none; -} - -separator { - min-width: 0; - min-height: 0; - background-color: transparent; -} - -preferences stacksidebar.sidebar list 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, list.content:not(.conversation-listbox) { - border-radius: 12px; - box-shadow: none; - border: none; - background-color: transparent; -} - -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, 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, list.content:not(.conversation-listbox) > row { - border-radius: 3px; - background-color: rgba(251, 241, 199, 0.04); -} - -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), list.content:not(.conversation-listbox) > row:not(:first-child) { - margin-top: 3px; -} - -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, list.content:not(.conversation-listbox) > row:first-child { - border-radius: 12px 12px 3px 3px; -} - -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, list.content:not(.conversation-listbox) > row:last-child { - border-radius: 3px 3px 12px 12px; -} - -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, list.content:not(.conversation-listbox) > row:only-child { - border-radius: 12px; -} - -window.background.csd stack stack stack frame > list row:hover, window.background.csd > stack > list row:hover, preferencesgroup list row:hover, -.geary-accounts-editor-pane list row:hover, window.background.csd.unified > deck > deck > deck list row:hover, hdyleaflet list.view row:hover, -hdyleaflet list.frame row:hover, -leaflet list.view row:hover, -leaflet list.frame row:hover, -box.horizontal > stack.background list.view row:hover, -box.horizontal > stack.background list.frame row:hover, hdyleaflet stack.background scrolledwindow > viewport list row:hover, -hdyleaflet overlay scrolledwindow > viewport list row:hover, -leaflet stack.background scrolledwindow > viewport list row:hover, -leaflet overlay scrolledwindow > viewport list row:hover, -box.horizontal > stack.background stack.background scrolledwindow > viewport list row:hover, -box.horizontal > stack.background overlay scrolledwindow > viewport list row:hover, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:hover, -leaflet frame:not(.view) list:not(.contacts-contact-list) row:hover, -box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:hover, list.tweak-group list > row:hover, list.content:not(.conversation-listbox) > row:hover { - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none; -} - -window.background.csd stack stack stack frame > list row:active, window.background.csd > stack > list row:active, preferencesgroup list row:active, -.geary-accounts-editor-pane list row:active, window.background.csd.unified > deck > deck > deck list row:active, hdyleaflet list.view row:active, -hdyleaflet list.frame row:active, -leaflet list.view row:active, -leaflet list.frame row:active, -box.horizontal > stack.background list.view row:active, -box.horizontal > stack.background list.frame row:active, hdyleaflet stack.background scrolledwindow > viewport list row:active, -hdyleaflet overlay scrolledwindow > viewport list row:active, -leaflet stack.background scrolledwindow > viewport list row:active, -leaflet overlay scrolledwindow > viewport list row:active, -box.horizontal > stack.background stack.background scrolledwindow > viewport list row:active, -box.horizontal > stack.background overlay scrolledwindow > viewport list row:active, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row:active, -leaflet frame:not(.view) list:not(.contacts-contact-list) row:active, -box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row:active, list.tweak-group list > row:active, list.content:not(.conversation-listbox) > row:active { - background-color: alpha(currentColor, 0.12); - box-shadow: none; -} - -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, list.content:not(.conversation-listbox) > row:focus { - box-shadow: none; -} - -list { - border-color: rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.04); -} - -list row { - padding: 3px; -} - -list.navigation-sidebar { - padding: 3px; -} - -list.navigation-sidebar > row { - border-radius: 12px; -} - -paned scrolledwindow > viewport.frame > list { - background-color: transparent; -} - -.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); - color: #fbf1c7; -} - -row:selected button { - color: inherit; -} - -row:selected:disabled { - color: rgba(251, 241, 199, 0.5); -} - -/********************* - * App Notifications * - *********************/ -.app-notification { - margin: 8px; -} - -.app-notification button.text-button:not(.suggested-action):not(.destructive-action):not( -:disabled -) { - color: #7daea3; -} - -.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(251, 241, 199, 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: #fbf1c7; -} - -expander title > arrow:disabled { - color: rgba(251, 241, 199, 0.32); -} - -/************ - * Calendar * - ************/ -calendar { - padding: 1px; - border: 1px solid rgba(251, 241, 199, 0.12); - color: #fbf1c7; -} - -calendar:disabled { - color: rgba(251, 241, 199, 0.5); -} - -calendar:selected { - border-radius: 13px; -} - -calendar.header { - border-style: none none solid; - border-color: rgba(251, 241, 199, 0.12); - border-radius: 0; -} - -calendar.highlight { - color: rgba(251, 241, 199, 0.7); - font-weight: 500; -} - -calendar:indeterminate { - color: rgba(251, 241, 199, 0.32); -} - -/*********** - * Dialogs * - ***********/ -messagedialog.background { - background-color: #242220; -} - -messagedialog.background .titlebar { - min-height: 12px; -} - -messagedialog.background .titlebar, messagedialog.background .titlebar:backdrop { - background-color: #242220; -} - -messagedialog.background.csd { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -messagedialog .titlebar, messagedialog.background.csd .titlebar { - border: none; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -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: 12px; -} - -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: #45707a; -} - -messagedialog .dialog-action-box button.destructive-action:not(:disabled), -messagedialog .dialog-action-box .linked:not(.vertical) > button.destructive-action:not(:disabled) { - color: #c14a4a; -} - -.csd filechooser { - background-color: #282524; - border-radius: 0 0 12px 12px; -} - -filechooser .dialog-action-box { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -filechooser #pathbarbox { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; -} - -filechooser stack.view { - background-color: transparent; - padding: 4px; -} - -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; - padding: 4px; -} - -filechooser stack.view frame > border { - border: none; -} - -.csd filechooser placessidebar { - background: none; - border-bottom-left-radius: 12px; -} - -/*********** - * 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:not(separator).left { - border-right: 1px solid rgba(251, 241, 199, 0.12); - border-left-style: none; -} - -stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { - border-left: 1px solid rgba(251, 241, 199, 0.12); - border-right-style: none; -} - -.sidebar list, -.sidebar notebook { - 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: 6px; - background-color: #282524; -} - -stacksidebar.sidebar row { - min-height: 32px; - padding: 0 6px; - margin: 0; - border-radius: 6px; -} - -stacksidebar.sidebar row:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - font-weight: 500; -} - -stacksidebar.sidebar row:selected label, -stacksidebar.sidebar row:selected image { - color: rgba(29, 32, 33, 0.87); -} - -stacksidebar.sidebar row + row { - margin-top: 3px; -} - -stacksidebar.sidebar row > label { - padding-left: 6px; - padding-right: 6px; - color: inherit; -} - -/**************** - * File chooser * - ****************/ -placessidebar.sidebar { - margin: 6px; - padding: 0; -} - -placessidebar.sidebar > viewport.frame { - border-style: none; -} - -placessidebar.sidebar list { - background-color: transparent; - color: #fbf1c7; -} - -placessidebar.sidebar row { - min-height: 32px; - margin: 0; - padding: 0; - color: #fbf1c7; - border-radius: 6px; -} - -placessidebar.sidebar row:hover, placessidebar.sidebar row:active { - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; -} - -placessidebar.sidebar row > revealer { - padding: 0 8px 0 16px; -} - -placessidebar.sidebar row:selected { - color: #7daea3; - background-color: rgba(251, 241, 199, 0.04); - font-weight: 500; -} - -placessidebar.sidebar row:disabled { - color: rgba(29, 32, 33, 0.3); -} - -placessidebar.sidebar row image.sidebar-icon { - transition: color 75ms cubic-bezier(0, 0, 0.2, 1); -} - -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: #7daea3; -} - -placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { - color: #7daea3; -} - -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); - box-shadow: inset 0 0 0 9999px 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: #282524; - background-image: image(rgba(251, 241, 199, 0.12)); - background-size: 1px 1px; - background-clip: content-box; -} - -paned > separator.wide { - min-width: 6px; - min-height: 6px; - background-color: #1d2021; - background-image: image(rgba(251, 241, 199, 0.12)), image(rgba(251, 241, 199, 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: #282524; -} - -infobar.info > revealer > box, -infobar.info > revealer > box flowboxchild, infobar.info:hover > revealer > box, -infobar.info:hover > revealer > box flowboxchild, infobar.info:backdrop > revealer > box, -infobar.info:backdrop > revealer > box flowboxchild { - color: #fbf1c7; -} - -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: #7daea3; -} - -infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box { - background-color: #7daea3; -} - -infobar.action > revealer > box, -infobar.action > revealer > box link:link, -infobar.action > revealer > box flowboxchild, infobar.action:backdrop > revealer > box, -infobar.action:backdrop > revealer > box link:link, -infobar.action:backdrop > revealer > box flowboxchild, infobar.question > revealer > box, -infobar.question > revealer > box link:link, -infobar.question > revealer > box flowboxchild, infobar.question:backdrop > revealer > box, -infobar.question:backdrop > revealer > box link:link, -infobar.question:backdrop > revealer > box flowboxchild { - color: rgba(29, 32, 33, 0.87); -} - -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: rgba(29, 32, 33, 0.87); -} - -infobar.action:hover > revealer > box, infobar.question:hover > revealer > box { - background-color: #6da498; -} - -infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box { - background-color: #b47109; -} - -infobar.warning > revealer > box, -infobar.warning > revealer > box link:link, -infobar.warning > revealer > box flowboxchild, infobar.warning:backdrop > revealer > box, -infobar.warning:backdrop > revealer > box link:link, -infobar.warning:backdrop > revealer > box flowboxchild { - color: #fbf1c7; -} - -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: #fbf1c7; -} - -infobar.warning:hover > revealer > box { - background-color: #9c6208; -} - -infobar.error > revealer > box, infobar.error:backdrop > revealer > box { - background-color: #c14a4a; - color: #fbf1c7; -} - -infobar.error > revealer > box, -infobar.error > revealer > box link:link, -infobar.error > revealer > box flowboxchild, infobar.error:backdrop > revealer > box, -infobar.error:backdrop > revealer > box link:link, -infobar.error:backdrop > revealer > box flowboxchild { - color: #fbf1c7; -} - -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: #fbf1c7; -} - -infobar.error:hover > revealer > box { - background-color: #b43e3e; -} - -/************ - * Tooltips * - ************/ -tooltip { - box-shadow: none; -} - -tooltip.background { - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; - border-radius: 12px; -} - -tooltip.background.csd { - border-radius: 12px; - 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: 12px; - border-top-right-radius: 12px; -} - -colorswatch.top overlay { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -colorswatch.bottom { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.bottom overlay { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.dark { - color: #fbf1c7; -} - -colorswatch.light { - color: rgba(29, 32, 33, 0.87); -} - -colorswatch overlay { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); -} - -colorswatch overlay:hover { - box-shadow: 0 0 0 2px #7daea3; -} - -colorswatch#add-color-button { - border-radius: 12px 0 0 12px; -} - -colorswatch#add-color-button:only-child { - border-radius: 12px; -} - -colorswatch#add-color-button overlay { - background-color: rgba(251, 241, 199, 0.04); -} - -colorswatch#add-color-button overlay:hover { - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none; -} - -colorswatch#add-color-button overlay:active { - background-color: rgba(251, 241, 199, 0.3); -} - -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.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.17); -} - -colorchooser .popover.osd { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - 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(251, 241, 199, 0.1); - background-color: #242220; -} - -colorchooser .popover.osd:backdrop { - box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.2), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(251, 241, 199, 0.1); -} - -/******** - * Misc * - ********/ -.content-view { - background-color: #1d2021; -} - -.scale-popup.background { - padding: 3px 0; -} - -/********************** - * Window Decorations * - **********************/ -decoration { - transition: none; - 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: 10px; -} - -decoration:backdrop { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - 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; -} - -.tiled decoration, .tiled-top decoration, .tiled-right decoration, .tiled-bottom decoration, .tiled-left decoration { - border-radius: 0; -} - -.maximized decoration, .fullscreen decoration { - border-radius: 0; - box-shadow: none; -} - -.popup decoration { - box-shadow: none; - border: none; -} - -.ssd decoration { - border: none; - border-radius: 12px 12px 0 0; - box-shadow: none; -} - -.ssd decoration:backdrop { - 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 3px 0 rgba(0, 0, 0, 0.18), 0 1px 6px 0 rgba(0, 0, 0, 0.12); -} - -tooltip.csd decoration { - border-radius: 12px; - box-shadow: none; - border: none; -} - -messagedialog.background.csd decoration { - border-radius: 12px; -} - -.solid-csd decoration { - margin: 0; - padding: 2px; - border-radius: 0; - box-shadow: none; - background-color: #1d2021; - border: 1px solid #423f3e; -} - -.solid-csd decoration:backdrop { - background-color: #1d2021; -} - -button.titlebutton:not(.suggested-action):not(.destructive-action) { - min-height: 22px; - min-width: 22px; - padding: 0; - margin: 0 2px; - border-radius: 9999px; -} - -button.minimize.titlebutton:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:not(.suggested-action):not(.destructive-action), button.close.titlebutton:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); - background-color: alpha(currentColor, 0.1); -} - -button.minimize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.maximize.titlebutton:hover:not(.suggested-action):not(.destructive-action), button.close.titlebutton:hover:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; - background-color: alpha(currentColor, 0.15); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px rgba(251, 241, 199, 0.1); -} - -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) { - color: #fbf1c7; - background-color: alpha(currentColor, 0.2); -} - -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; -} - -.monospace { - font-family: monospace; -} - -/********************** - * Touch Copy & Paste * - **********************/ -cursor-handle { - color: #7daea3; - -gtk-icon-source: -gtk-recolor(url("assets/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(251, 241, 199, 0.12); - border-radius: 13px; - box-shadow: inset 0 -2px rgba(251, 241, 199, 0.12); - background-color: #242220; - color: #fbf1c7; - font-size: smaller; -} - -:not(decoration):not(window):drop(active) { - caret-color: #7daea3; -} - -stackswitcher { - min-height: 0; - padding: 0; - border-radius: 15px; - background-color: rgba(251, 241, 199, 0.04); - border: none; -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { - margin: 0; - background-color: transparent; - border-radius: 9999px; -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button { - min-width: 100px; -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus:not(:hover):not(:checked) { - box-shadow: none; -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked:hover { - box-shadow: none; - background-color: #fefdf7; -} - -stackswitcher button.text-button { - min-width: 100px; -} - -stackswitcher button.circular, -stackswitcher 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(251, 241, 199, 0.12); - border-image: none; - border-radius: 0; - box-shadow: none; - background-color: transparent; -} - -popover.emoji-picker scrolledwindow { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -button.emoji-section { - margin: 4px; -} - -button.emoji-section:checked { - color: #7daea3; -} - -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: 12px; -} - -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: #282524; -} - -.nautilus-window.background.csd:backdrop { - background-color: #282524; -} - -.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: #282524; - 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 #282524; - background-color: #282524; - background-image: image(#423f3e); -} - -.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: 12px; - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - 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: rgba(29, 32, 33, 0.87); -} - -.nautilus-canvas-item.dim-label, -.nautilus-list-dim-label { - color: rgba(251, 241, 199, 0.7); -} - -.nemo-desktop.nemo-canvas-item, .caja-desktop.caja-canvas-item, -.nautilus-desktop.nautilus-canvas-item { - color: #fbf1c7; -} - -@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: 12px; -} - -.path-bar-box button { - margin: 0; -} - -.path-bar-box.width-maximized { - background-color: rgba(251, 241, 199, 0.04); -} - -.path-bar-box.background.frame { - border-style: none; - background-color: rgba(251, 241, 199, 0.04); -} - -.path-bar-box .path-bar button label:not(:only-child):first-child { - margin-left: 0; -} - -.path-bar-box .path-bar button label:not(:only-child):last-child { - margin-right: 0; -} - -.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:not(.suggested-action):not(.destructive-action).text-button { - min-width: 0; -} - -.path-bar-box .linked.nautilus-path-bar -button:not(.suggested-action):not(.destructive-action).text-button.image-button 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(251, 241, 199, 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(251, 241, 199, 0.5); -} - -.windowhandle .linked.nautilus-path-bar { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - margin: 6px 0; -} - -.windowhandle .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) { - margin-top: 0; - margin-bottom: 0; -} - -.windowhandle .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).current-dir { - color: #fbf1c7; -} - -.windowhandle .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).current-dir:hover, .windowhandle .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).current-dir:active { - background: none; - box-shadow: none; -} - -.disk-space-display.unknown { - background-color: rgba(251, 241, 199, 0.3); - color: rgba(251, 241, 199, 0.3); -} - -.disk-space-display.used { - background-color: #7daea3; - color: #7daea3; -} - -.disk-space-display.free { - background-color: rgba(251, 241, 199, 0.12); - color: rgba(251, 241, 199, 0.12); -} - -.search-information { - padding: 2px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; - color: #fbf1c7; -} - -.conflict-row:not(:selected) { - background-color: #523c1c; -} - -.nautilus-window flowboxchild .icon-item-background { - padding: 4px; - border-radius: 6px; -} - -.nautilus-window flowboxchild:selected { - background-color: transparent; -} - -.nautilus-window notebook :not(treeview).view { - 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(251, 241, 199, 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(251, 241, 199, 0.7); -} - -.nautilus-window paned > separator { - background-color: #282524; -} - -/********* - * 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(251, 241, 199, 0.7); - font-size: smaller; -} - -.open-document-selector-match { - background-color: #b47109; - color: #fbf1c7; -} - -.gedit-document-panel { - background-color: #282524; -} - -.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(251, 241, 199, 0.12); -} - -.gedit-side-panel-paned statusbar { - border-top: 1px solid rgba(251, 241, 199, 0.12); - border-radius: 0 0 12px 12px; -} - -.gedit-search-slider { - margin: 0 6px 10px; - padding: 6px; - background-color: #242220; - border-radius: 0 0 12px 12px; - box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05), 0 4px 6px 0 rgba(0, 0, 0, 0.06), 0 1px 10px 0 rgba(0, 0, 0, 0.05); -} - -.gedit-search-slider .linked:not(.vertical) > entry .gedit-search-entry-occurrences-tag { - all: unset; - color: rgba(251, 241, 199, 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: #242220; -} - -.gedit-search-slider .linked:not(.vertical) > entry.error ~ button { - color: rgba(251, 241, 199, 0.7); -} - -.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:hover, .gedit-search-slider .linked:not(.vertical) > entry.error ~ button:active { - color: #fbf1c7; -} - -.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:disabled { - color: rgba(251, 241, 199, 0.32); -} - -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 * - **********/ -leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame { - background-color: #1d2021; - color: #fbf1c7; - border-radius: 12px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider { - background-color: rgba(29, 32, 33, 0.38); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider:hover, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider:hover, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider:hover { - background-color: rgba(29, 32, 33, 0.6); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider:active, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider:active, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider:active { - background-color: rgba(29, 32, 33, 0.87); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider:disabled, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider:disabled, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider:disabled { - background-color: rgba(29, 32, 33, 0.3); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - background-color: rgba(29, 32, 33, 0.38); -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { - background-color: rgba(29, 32, 33, 0.3); -} - -leaflet.unfolded > box.vertical:last-child > scrolledwindow > viewport.frame, -leaflet.unfolded > box.vertical:last-child > stack > scrolledwindow > viewport.frame { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - margin: 6px; -} - -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, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list { - padding: 6px; -} - -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, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > separator { - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row { - padding: 0; - margin: -1px; - color: #fbf1c7; - border-radius: 6px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:hover, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:hover, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:hover, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:hover, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:active, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:active, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:active, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:active, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:focus, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:focus, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:focus, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:focus { - color: #fbf1c7; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected { - font-weight: 500; - background-color: rgba(251, 241, 199, 0.04); - border-radius: 9px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected, -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected label, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected label, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected label, -leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected label, -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected image, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected image, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected image, -leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected image { - color: #7daea3; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:hover, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:hover, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:hover, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected:hover, window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:focus, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:focus, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row:selected:focus, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row:selected:focus { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row + row, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list > row + row, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list > row + row, leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list > row + row { - margin-top: 3px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar { - border: none; - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar trough, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar trough, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar trough { - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar slider, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar slider, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar slider { - border: 4px solid transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering), -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering), -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) { - border-color: transparent; - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - border: none; - margin: 1px; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - border: none; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.dragging, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.dragging, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.dragging, window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.hovering, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.hovering, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar.overlay-indicator.hovering { - background-color: transparent; -} - -.tweak { - padding: 3px; -} - -.tweak.title:hover { - box-shadow: none; -} - -.tweak-group-startup { - border: 1px solid rgba(251, 241, 199, 0.12); -} - -.tweak-group-startup > row:not(:first-child) { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -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); -} - -leaflet.unfolded > box.vertical:first-child > scrolledwindow > viewport.frame > list { - background-color: transparent; - margin: 0; -} - -/************************ - * 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: #282524; - 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: 12px; - 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: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, -window.background.csd > leaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list { - background-color: transparent; -} - -window.background.csd > leaflet > box.vertical > scrolledwindow.view scrollbar, -window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view scrollbar, -window.background.csd > box.horizontal > box.vertical > scrolledwindow.view scrollbar { - margin: 6px; -} - -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: 12px 12px 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 12px 12px; -} - -window.background.csd hdycolumn stack frame.view > stack > stack list > separator { - background-color: rgba(251, 241, 199, 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; -} - -/************************ - * Gnome system monitor * - ************************/ -window#gnome-system-monitor.background.csd > box.vertical > stack { - background-color: #282524; - 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) * - ************************/ -tabbox { - border: none; - background-color: rgba(251, 241, 199, 0.04); - padding: 3px; - margin: 3px; - border-radius: 12px; -} - -tabbox > tab button { - min-height: 24px; - min-width: 24px; - border-radius: 9999px; - border: none; - padding: 0; - margin-right: -6px; -} - -/***************** - * 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.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; - margin: 0; -} - -.sidebar-paned .inline-toolbar.horizontal.sidebar-toolbar { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.12); -} - -.sidebar-paned .inline-toolbar.horizontal.sidebar-toolbar button.image-button { - border-radius: 9999px; -} - -.sidebar-paned .inline-toolbar.horizontal.sidebar-toolbar button.image-button:not(:first-child), .sidebar-paned .inline-toolbar.horizontal.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 .inline-toolbar.horizontal.sidebar-toolbar button.image-button.image-button:not(.text-button):first-child { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; -} - -.sidebar-paned .inline-toolbar.horizontal.sidebar-toolbar button.image-button.image-button:not(.text-button):last-child { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; -} - -.sidebar-paned .inline-toolbar.horizontal.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(251, 241, 199, 0.12); - box-shadow: none; - background-color: transparent; -} - -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 { - margin: 6px 0; -} - -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 12px 0 6px; -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised { - 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-color: rgba(251, 241, 199, 0.08); - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - color: #fbf1c7; -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised:hover { - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised: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; - box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); - background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); - background-size: 0% 0%; -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised:disabled { - box-shadow: none; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised:checked { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -window.background > box.vertical > toolbar.primary-toolbar > toolitem > .linked > button.image-button.raised > widget > box > image { - padding: 0 3px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > grid > grid > grid, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > grid > grid > grid, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > notebook > stack > grid > grid > grid { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - padding: 6px; - margin: -6px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > grid > grid > box, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > grid > grid > box, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > notebook > stack > grid > grid > box { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - padding: 0 6px 6px; - margin: 0 -6px -6px 0; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > grid > paned > box > scrolledwindow:not(:last-child), -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > notebook > stack > grid > paned > box > scrolledwindow:not(:last-child) { - border-right: 1px solid rgba(251, 241, 199, 0.12); - margin-right: -1px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > grid > grid > grid, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > box > grid > grid > grid, -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > notebook > stack > grid > grid > grid { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - padding: 3px; - margin: -1px -6px -6px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > grid > paned > box > scrolledwindow:not(:last-child), -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > box > grid > paned > box > scrolledwindow:not(:last-child), -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > notebook > stack > grid > paned > box > scrolledwindow:not(:last-child) { - border-right: 1px solid rgba(251, 241, 199, 0.12); - margin-right: -1px; -} - -window.background > box > .sidebar-paned > paned > box > notebook > stack > box > box > paned > box:first-child > box { - padding: 0 6px 6px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -/********** - * Polari * - **********/ -.polari-room-list .sidebar { - background: none; -} - -.polari-room-list .sidebar > row.activatable:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -stack.view.polari-entry-area { - background-color: #1d2021; - border-top: 1px solid rgba(251, 241, 199, 0.12); - border-bottom-right-radius: 12px; -} - -stack:disabled.view.polari-entry-area { - background-image: image(#1d2021); -} - -/*********** - * Builder * - ***********/ -layouttabbar { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #1d2021; -} - -layouttabbar > box > button { - margin: 2px 0; -} - -layouttab { - margin: 0 8px; - border-style: none solid; - border-width: 1px; - border-color: rgba(29, 32, 33, 0.2); - box-shadow: inset 0 -2px #7daea3; - background-color: #282524; -} - -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(29, 32, 33, 0.2); - -pnldockbin-handle-size: 1; -} - -entry.search-missing { - background-color: #c14a4a; - color: #fbf1c7; -} - -window.workbench treeview.image { - color: rgba(251, 241, 199, 0.7); -} - -popover.popover-selector list { - padding: 6px; -} - -popover.popover-selector list row { - border-radius: 12px; -} - -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: 12px; -} - -omnibar:not(:hover):not(:active) entry { - color: rgba(251, 241, 199, 0.7); -} - -popover.omnibar list row:not(:last-child) { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -entry.preferences-search { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - box-shadow: none; - background-color: #282524; -} - -preferences stacksidebar.sidebar list { - background-color: #282524; -} - -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(251, 241, 199, 0.12); -} - -preferences > box > box:dir(rtl) { - border-left: 1px solid rgba(251, 241, 199, 0.12); -} - -popover.messagepopover.background { - padding: 0; -} - -popover.messagepopover .popover-action-area button { - padding: 8px 16px; - border-top: 1px solid rgba(251, 241, 199, 0.12); - border-radius: 0; -} - -popover.messagepopover .popover-action-area button:first-child { - border-bottom-left-radius: 12px; -} - -popover.messagepopover .popover-action-area button:last-child { - border-bottom-right-radius: 12px; -} - -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(251, 241, 199, 0.12); -} - -popover.transfers list row > box { - padding: 10px; -} - -dockbin { - border: 1px solid rgba(29, 32, 33, 0.2); - -pnldockbin-handle-size: 1; -} - -dockpaned { - border: 1px solid rgba(29, 32, 33, 0.2); -} - -eggsearchbar box.search-bar { - padding: 0 8px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #1d2021; -} - -docktabstrip { - padding: 0 8px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #1d2021; -} - -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, #7daea3 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 0% 0%; - color: rgba(251, 241, 199, 0.7); - font-weight: 500; -} - -docktab:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -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 #7daea3; - background-color: transparent; - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-size: 1000% 1000%; - color: #fbf1c7; -} - -dockoverlayedge { - background-color: #1d2021; -} - -dockoverlayedge docktabstrip { - padding: 0; - border: none; -} - -dockoverlayedge.left-edge docktab:checked { - box-shadow: inset -2px 0 #7daea3; -} - -dockoverlayedge.right-edge docktab:checked { - box-shadow: inset 2px 0 #7daea3; -} - -pillbox { - background-color: #1d2021; - border-radius: 12px; -} - -layoutpane entry.search { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - box-shadow: none; - background-color: #282524; -} - -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: #fbf1c7; - font-weight: normal; -} - -button.dzlmenubuttonitem:disabled { - color: rgba(251, 241, 199, 0.5); -} - -idelayoutstackheader { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -idelayoutstackheader button:checked { - color: #fbf1c7; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher { - padding: 8px 0; - background-color: #1d2021; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { - border-right: 1px solid rgba(251, 241, 199, 0.12); -} - -ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { - border-left: 1px solid rgba(251, 241, 199, 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(125, 174, 163, 0.7) 10%, transparent 0%); -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { - background-color: transparent; - color: #fbf1c7; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { - margin-right: -1px; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { - box-shadow: inset -2px 0 #7daea3; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { - margin-left: -1px; -} - -ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { - box-shadow: inset 2px 0 #7daea3; -} - -ideeditorsidebar notebook header { - background: transparent; -} - -popover.messagepopover list { - border: 1px solid rgba(251, 241, 199, 0.12); -} - -popover.messagepopover list row:not(:last-child) { - border-bottom: 1px solid rgba(251, 241, 199, 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: #7daea3; - color: rgba(29, 32, 33, 0.87); - 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: #fbf1c7; - font-weight: normal; -} - -button.photos-filter-preview:checked { - background-color: alpha(currentColor, 0.06); - color: #fbf1c7; -} - -button.photos-filter-preview:checked image { - color: #fbf1c7; -} - -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(251, 241, 199, 0.12); -} - -.side-panel:dir(rtl) { - border-style: solid; - border-color: rgba(251, 241, 199, 0.12); -} - -.side-panel .view { - background-image: image(#282524); -} - -.side-panel .view:hover { - background-image: image(#393531); -} - -.side-panel .view:selected { - background-image: image(#7daea3); -} - -.side-panel .view:selected:hover { - background-image: image(rgba(119, 165, 155, 0.9896)); -} - -.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(251, 241, 199, 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: #282524; -} - -.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: #282524; -} - -.background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow { - border-radius: 0 0 0 12px; - background-color: #1d2021; -} - -/************ - * 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.flat { - min-height: 24px; - min-width: 24px; - padding: 3px; - border-radius: 9px; -} - -window.background > box.vertical > box.horizontal > frame > border { - border: none; -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list { - border-radius: 12px; - margin: 0 6px 6px; - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list > row, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list > row:hover, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list > row:active, window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list > row:selected { - color: rgba(29, 32, 33, 0.87); -} - -window.background > box.vertical > box.horizontal > stack > widget > notebook.frame { - margin: 0 6px 6px 0; -} - -.terminal-window { - background-color: #1d2021; -} - -.terminal-window tabbar tabbox { - background-color: #282524; - margin: 0; - border-radius: 0; - border-bottom: 1px solid rgba(251, 241, 199, 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(29, 32, 33, 0.2); -} - -list.categories { - background-image: image(#282524); -} - -/********* - * Boxes * - *********/ -.transparent-bg + stack overlay > label { - min-height: 24px; - padding: 0 4px; - border-radius: 12px; - background-color: #242220; - color: #fbf1c7; -} - -/************** - * 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: #fbf1c7; - background-color: #1d2021; - box-shadow: none; - border-bottom: 1px solid rgba(29, 32, 33, 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: #282524; -} - -.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: #1d2021; - 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: #1d2021; -} - -.geary-main-window.unified > deck > overlay > .geary-main-layout > leaflet > leaflet > box.vertical + separator.sidebar { - min-width: 1px; - background-color: rgba(251, 241, 199, 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: 12px; - 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: 12px; - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.geary-main-window.unified separator.geary-sidebar-pane-separator { - min-width: 1px; - background-color: rgba(251, 241, 199, 0.12); -} - -.geary-main-window.unified geary-conversation-viewer#conversation_viewer list.background.conversation-listbox.content > row.activatable { - border: 1px solid rgba(251, 241, 199, 0.12); - border-bottom-width: 0; - background-color: #282524; -} - -.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: #282524; -} - -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: 12px; -} - -dialog.background.csd stack scrolledwindow.frame textview.view { - border-radius: 12px; -} - -dialog.background.csd stack scrolledwindow.frame textview.view > text { - background: none; -} - -dialog.background.csd stack scrolledwindow viewport.frame.view { - border-radius: 12px; -} - -window.background.csd.unified { - background-color: #1d2021; -} - -window.background.csd.unified headerbar { - box-shadow: none; -} - -window.background.csd.unified > decoration-overlay { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -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(#242220); -} - -.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: #1d2021; -} - -.terminator-terminal-window notebook.frame { - border-style: none; -} - -/************* - * Ubitquity * - *************/ -#live_installer .menubar progressbar trough { - border-radius: 4px; - background-color: rgba(251, 241, 199, 0.12); -} - -/********* - * Meld * - ********/ -.meld-notebook, -.meld-notebook > stack { - background: none; - border-radius: 0 0 12px 12px; -} - -.meld-notebook-child { - background-color: #282524; - 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: 12px; -} - -/************ - * Chromium * - ************/ -window.background.chromium { - background-color: #504945; -} - -window.background.chromium entry, -window.background.chromium > button { - border: 1px solid #423f3e; -} - -window.background.chromium > button { - color: #7daea3; -} - -window.background.chromium > button:disabled { - color: rgba(251, 241, 199, 0.32); -} - -window.background.chromium menubar, -window.background.chromium headerbar { - color: rgba(251, 241, 199, 0.7); -} - -window.background.chromium headerbar.titlebar { - padding: 0 12px; -} - -window.background.chromium headerbar.titlebar button:active { - background-color: alpha(currentColor, 0.12); -} - -window.background.chromium spinner { - color: #7daea3; -} - -window.background.chromium textview.view { - background-color: transparent; -} - -window.background.chromium treeview.view.cell:selected:focus { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -window.background.chromium treeview.view button { - border: 1px solid rgba(251, 241, 199, 0.3); - background-color: #282524; -} - -window.background.chromium menu { - border-color: #434a4c; -} - -window.background.chromium menu menuitem { - border-radius: 0; -} - -tooltip.background.chromium { - background-color: #161819; -} - -/*********** - * Firefox * - ***********/ -#MozillaGtkWidget decoration { - border: none; -} - -#MozillaGtkWidget > widget text { - background-color: #1d2021; -} - -#MozillaGtkWidget > widget text:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -#MozillaGtkWidget > widget > separator { - color: #423f3e; -} - -#MozillaGtkWidget > widget > scrollbar { - background-clip: border-box; -} - -#MozillaGtkWidget > widget > frame > border { - border-color: #423f3e; -} - -#MozillaGtkWidget > widget > entry, -#MozillaGtkWidget > widget > button > button { - border: 1px solid #423f3e; - border-radius: 12px; - box-shadow: none; -} - -#MozillaGtkWidget > widget > entry:disabled, -#MozillaGtkWidget > widget > button > button:disabled { - border-color: rgba(251, 241, 199, 0.12); -} - -#MozillaGtkWidget > widget > entry { - min-height: 30px; - background-color: #282524; -} - -#MozillaGtkWidget > widget > entry:focus { - border-color: #7daea3; - box-shadow: inset 0 0 0 1px #7daea3; -} - -#MozillaGtkWidget > widget > entry:disabled { - background-color: #282524; -} - -#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: #504945; -} - -#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: #7c6f64; -} - -#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):disabled, -#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):disabled { - color: rgba(80, 73, 69, 0.5); -} - -#MozillaGtkWidget menu { - border: none; -} - -#MozillaGtkWidget > widget > menubar { - color: rgba(251, 241, 199, 0.7); -} - -#MozillaGtkWidget > widget > menubar:hover { - color: #fbf1c7; -} - -#MozillaGtkWidget > widget > menubar:disabled { - color: rgba(251, 241, 199, 0.32); -} - -#MozillaGtkWidget > widget > frame { - color: #423f3e; -} - -#MozillaGtkWidget menu > separator { - color: #423f3e; -} - -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(251, 241, 199, 0.12); -} - -#CanvasTable #VerticalScrollbar:dir(ltr) { - border-left: 1px solid rgba(251, 241, 199, 0.12); -} - -#CanvasTable #VerticalScrollbar:dir(rtl) { - border-right: 1px solid rgba(251, 241, 199, 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; -} - -#InKscapeCanvas { - background-color: #282524; - border-radius: 12px; -} - -/*********** - * Synapse * - ***********/ -/*************** - * Libreoffice * - ***************/ -window.background > grid -> widget -> widget -> scrolledwindow -> viewport -> grid -> box -> box -> frame -> box { - background-color: #1d2021; -} - -/********* - * 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: 12px; -} - -/********* - * 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: #7daea3; - -unitydecoration-title-indent: 4px; - -unitydecoration-title-fade: 32px; - -unitydecoration-title-alignment: 0; -} - -UnityDecoration .top { - padding: 0 2px; - border-style: none; - border-radius: 12px 12px 0 0; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #1d2021; - color: #fbf1c7; -} - -UnityDecoration .top:backdrop { - background-color: #1d2021; - color: rgba(251, 241, 199, 0.7); -} - -UnityDecoration .menuitem { - color: rgba(251, 241, 199, 0.7); -} - -UnityDecoration .menuitem:hover { - box-shadow: inset 0 -2px #fbf1c7; - background-color: transparent; - color: #fbf1c7; -} - -.background:not(.csd) headerbar:not(.titlebar) { - border-radius: 0; - box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.17); -} - -.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { - border-style: none; -} - -UnityPanelWidget, -.unity-panel { - background-color: #1d2021; - color: #fbf1c7; -} - -UnityPanelWidget:backdrop, -.unity-panel:backdrop { - color: rgba(251, 241, 199, 0.7); -} - -.unity-panel.menuitem, -.unity-panel .menuitem { - color: rgba(251, 241, 199, 0.7); -} - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - box-shadow: inset 0 -2px #fbf1c7; - background-color: transparent; - color: #fbf1c7; -} - -.menu IdoPlaybackMenuItem.menuitem:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: spin 1s linear infinite; - color: #7daea3; -} - -/************** - * Mate-Panel * - **************/ -.mate-panel-menu-bar menubar, -#PanelApplet-window-menu-applet-button { - background-color: transparent; -} - -.mate-panel-menu-bar { - background-color: rgba(29, 32, 33, 0.6); - color: rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -MatePanelAppletFrameDBus { - border-style: solid; - border-color: rgba(251, 241, 199, 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(251, 241, 199, 0.7); -} - -.mate-panel-menu-bar menubar > menuitem:hover { - color: #fbf1c7; -} - -.mate-panel-menu-bar menubar > menuitem:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.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: #7daea3; -} - -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: #7daea3; -} - -.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(29, 32, 33, 0.2); - border-radius: 13px; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; -} - -#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(251, 241, 199, 0.12); -} - -#MatePanelPopupWindow expander > title { - min-height: 32px; -} - -#MatePanelPopupWindow button { - padding: 4px 16px; -} - -#MatePanelPopupWindow > frame > box > box > box > widget { - color: rgba(251, 241, 199, 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(29, 32, 33, 0.2); - border-radius: 13px; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; -} - -.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: #fbf1c7; -} - -#mate-menu { - border: 1px solid rgba(29, 32, 33, 0.2); - background-color: #242220; -} - -#mate-menu button { - min-height: 24px; - min-width: 24px; - padding: 4px 0; - color: #fbf1c7; - 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(251, 241, 199, 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(251, 241, 199, 0.1); - background-color: #242220; -} - -.brisk-menu entry { - margin-bottom: -2px; - border-bottom: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -.brisk-menu entry + box > box:dir(rtl) { - margin-left: -2px; - border-left: 1px solid rgba(251, 241, 199, 0.12); -} - -.brisk-menu .categories-list { - padding-top: 4px; -} - -.brisk-menu .categories-list button { - margin: 0 4px; -} - -.brisk-menu .categories-list button:checked { - color: #7daea3; -} - -.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: #fbf1c7; - font-weight: normal; -} - -/********************* - * CAJA File manager * - *********************/ -.caja-navigation-window button.toggle.image-button { - border-radius: 12px; -} - -.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: #282524; -} - -.caja-side-pane notebook, -.caja-notebook { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -.caja-side-pane notebook .frame, -.caja-notebook .frame { - border-style: none; -} - -.caja-canvas-item { - border-radius: 12px; -} - -.caja-desktop.view .entry, -.caja-navigation-window .view .entry { - border: none; - border-radius: 12px; - background-color: rgba(251, 241, 199, 0.04); - background-image: none; - color: #fbf1c7; -} - -.caja-desktop.view .entry:selected, -.caja-navigation-window .view .entry:selected { - background-color: alpha(currentColor, 0.06); -} - -.caja-desktop.view .entry { - background-color: #282524; - color: #fbf1c7; - 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(251, 241, 199, 0.12); -} - -.caja-notebook frame > border { - border-style: none; -} - -#caja-extra-view-widget { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; -} - -#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(251, 241, 199, 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(251, 241, 199, 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(251, 241, 199, 0.12); -} - -.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { - border-bottom: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -/* mate-screensaver lock dialog */ -.lock-dialog { - border: 1px solid rgba(29, 32, 33, 0.2); - border-radius: 13px; - 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(251, 241, 199, 0.1); - background-color: #242220; -} - -.lock-dialog frame > border { - border-style: none; -} - -.lock-dialog button:not(:disabled) { - color: #7daea3; -} - -/* multimedia OSD */ -MsdOsdWindow.background.osd { - border-radius: 12px; - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; -} - -MsdOsdWindow.background.osd .trough { - border-radius: 0; - background-color: rgba(251, 241, 199, 0.12); -} - -MsdOsdWindow.background.osd .progressbar { - border-radius: 0; - background-color: #7daea3; -} - -/****************** - * 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: 12px; -} - -.budgie-popover { - border: none; - 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: #242220; - border-radius: 12px; -} - -.budgie-popover frame.container { - padding: 6px; - border: none; -} - -.budgie-popover frame.container .container { - padding: 0; -} - -.budgie-popover list, -.budgie-popover row { - padding: 0; -} - -.budgie-popover 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(251, 241, 199, 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(251, 241, 199, 0.12); -} - -.budgie-popover.bottom > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack { - border-top: none; - border-bottom: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.12); - border-image: none; - border-radius: 0; - box-shadow: none; - font-size: 120%; -} - -.budgie-popover.budgie-menu scrolledwindow.sidebar.categories { - background-color: rgba(251, 241, 199, 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; - background-color: #282524; - padding: 6px; - margin: 6px; - border: none; - 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); -} - -.budgie-popover.budgie-menu list.left-overlay-menu > row.activatable { - border-radius: 12px; -} - -.budgie-popover.budgie-menu list.left-overlay-menu > row.activatable:not(:last-child) { - margin-bottom: 3px; -} - -.budgie-popover.budgie-menu list.left-overlay-menu > row.activatable button.menuitem { - border-radius: 12px; -} - -.budgie-popover.budgie-menu .budgie-menu-footer { - border-top: 1px solid rgba(251, 241, 199, 0.12); - padding: 6px; -} - -.budgie-popover.budgie-menu .budgie-menu-footer button.flat { - padding: 3px; - border-radius: 12px; -} - -.budgie-popover.budgie-menu .budgie-menu-footer button.flat.image-button { - border-radius: 9999px; - padding: 6px; - min-height: 16px; - min-width: 16px; - margin-left: 6px; - background-clip: border-box; -} - -.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: 12px; -} - -.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child button.indicator-item { - transition: none; - animation: none; -} - -.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(251, 241, 199, 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(251, 241, 199, 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(251, 241, 199, 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: 12px; -} - -.budgie-panel { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(29, 32, 33, 0.6); - color: rgba(251, 241, 199, 0.7); - font-weight: 500; -} - -.budgie-panel.transparent { - background-color: rgba(29, 32, 33, 0.75); -} - -.budgie-panel .icon-tasklist button.launcher:checked, .budgie-panel .icon-tasklist button.launcher:active { - color: #fbf1c7; -} - -.top .budgie-panel.dock-mode { - border-radius: 0 0 12px 12px; -} - -.bottom .budgie-panel.dock-mode { - border-radius: 12px 12px 0 0; -} - -.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 .launcher:first-child { - border-top-right-radius: 12px; -} - -.left .budgie-panel.dock-mode .icon-tasklist .launcher:last-child { - border-bottom-right-radius: 12px; -} - -.right .budgie-panel.dock-mode { - border-radius: 12px 0 0 12px; -} - -.right .budgie-panel.dock-mode .icon-tasklist .launcher:first-child { - border-top-left-radius: 12px; -} - -.right .budgie-panel.dock-mode .icon-tasklist .launcher:last-child { - border-bottom-left-radius: 12px; -} - -.budgie-panel button { - color: rgba(251, 241, 199, 0.7); - min-height: 24px; - min-width: 24px; - padding: 0; - border-radius: 0; -} - -.budgie-panel button:hover { - color: #fbf1c7; -} - -.budgie-panel button:active { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel button.budgie-menu-launcher { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel button.budgie-menu-launcher:focus { - box-shadow: none; - border: none; - color: #fbf1c7; -} - -.budgie-panel button.raven-trigger { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel.horizontal button { - padding: 0 4px; -} - -.budgie-panel.vertical button { - padding: 4px 0; -} - -.budgie-panel separator { - background-color: rgba(251, 241, 199, 0.12); -} - -.budgie-panel .alert { - color: #c14a4a; -} - -.budgie-panel > box > widget > widget > image, -.budgie-panel > box > widget > widget > stack > image, -.budgie-panel > box > widget > widget > box > image { - margin-left: 6px; - margin-right: 6px; -} - -.budgie-panel > box > widget > widget > box > image + label { - margin-left: -4px; -} - -.budgie-panel > box > widget > widget > box > widget > image { - margin-left: 6px; -} - -.budgie-panel > box > widget > widget > box > stack > widget > label { - margin-right: 6px; -} - -.budgie-panel > box > widget > widget > box > widget > widget > image { - margin-left: 2px; - margin-right: 2px; -} - -.budgie-panel .budgie-clock-applet > widget > box, -.budgie-panel .budgie-calendar-applet > widget > box { - padding-left: 3px; - padding-right: 3px; -} - -.budgie-panel .titlebar:not(headerbar) { - min-height: 0; - padding: 0; - box-shadow: none; - background-color: transparent; - color: #fbf1c7; -} - -.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 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: #fbf1c7; -} - -.budgie-panel menubar, -.budgie-panel .menubar { - color: rgba(251, 241, 199, 0.7); - box-shadow: none; - border: none; -} - -.budgie-panel menubar > menuitem, -.budgie-panel .menubar > menuitem { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel menubar > menuitem:hover, .budgie-panel menubar > menuitem:active, -.budgie-panel .menubar > menuitem:hover, -.budgie-panel .menubar > menuitem:active { - color: #fbf1c7; -} - -.budgie-panel menubar menu separator, -.budgie-panel .menubar menu separator { - background-color: rgba(251, 241, 199, 0.12); -} - -.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(251, 241, 199, 0.5); -} - -.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active { - color: rgba(251, 241, 199, 0.7); -} - -.budgie-panel button.flat.launcher:not(:checked):disabled { - color: rgba(251, 241, 199, 0.32); -} - -.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: #242220; - 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(251, 241, 199, 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(251, 241, 199, 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(251, 241, 199, 0.12); - background-color: #282524; -} - -.raven .raven-background > overlay > widget > image { - color: rgba(251, 241, 199, 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.devices-list.sound-devices > row.activatable:selected, .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked { - background-color: rgba(251, 241, 199, 0.06); - color: #fbf1c7; -} - -.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: #fbf1c7; -} - -.raven .audio-widget list.devices-list.sound-devices > row.activatable label { - padding-left: 12px; -} - -.raven levelbar, -.raven levelbar trough, -.raven levelbar block { - border-radius: 9999px; -} - -calendar.raven-calendar { - border-style: none; - background-color: transparent; -} - -calendar.raven-calendar:selected { - border-radius: 12px; -} - -.raven-mpris { - background-color: #242220; - color: #fbf1c7; -} - -.raven-mpris label { - min-height: 24px; -} - -.raven-mpris button.image-button { - padding: 12px; -} - -image.raven-mpris { - background-color: rgba(251, 241, 199, 0.12); - color: rgba(251, 241, 199, 0.7); - border-radius: 12px; -} - -.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: 12px; - background-color: rgba(251, 241, 199, 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(251, 241, 199, 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; -} - -.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(251, 241, 199, 0.7); -} - -.budgie-osd .budgie-osd-text { - font-size: 120%; -} - -.budgie-panel .lock-keys image:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.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(251, 241, 199, 0.1); - background-color: #242220; -} - -.drop-shadow .linked > button { - border-radius: 12px; -} - -.budgie-session-dialog, -.budgie-polkit-dialog, -.budgie-run-dialog { - background-color: #242220; - border: none; - padding: 0; -} - -.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), 0 0 0 1px rgba(29, 32, 33, 0.75); -} - -.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(251, 241, 199, 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(251, 241, 199, 0.7); -} - -.budgie-polkit-dialog .failure { - color: #c14a4a; -} - -.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: #fbf1c7; -} - -.budgie-run-dialog scrolledwindow { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -/************** - * Xfce4 Apps * - **************/ -.XfceHeading { - background-color: #282524; -} - -/*************** - * xfce4-panel * - ***************/ -.xfce4-panel.background { - border: none; - background-color: rgba(29, 32, 33, 0.6); - color: rgba(251, 241, 199, 0.7); - font-weight: 500; -} - -.xfce4-panel.background button { - min-height: 16px; - min-width: 16px; - padding: 0 6px; - border-radius: 0; -} - -.xfce4-panel.background button.flat.toggle { - padding: 0 6px; -} - -.xfce4-panel.background .tasklist button image { - padding: 4px; -} - -wnck-pager:hover { - background-color: alpha(currentColor, 0.08); -} - -wnck-pager:active { - background-color: alpha(currentColor, 0.12); -} - -wnck-pager:selected { - background-color: #7daea3; -} - -#xfce4-mpc-plugin-26 > frame > border { - border: none; -} - -#xfce-panel-button { - -gtk-icon-style: symbolic; -} - -XfdesktopIconView.view { - border-radius: 12px; - background-color: transparent; - color: #fbf1c7; -} - -XfdesktopIconView.view:active { - box-shadow: none; -} - -XfdesktopIconView.view .rubberband { - border-radius: 0; -} - -window#whiskermenu-window { - border-radius: 12px; - background-color: transparent; - border: none; -} - -window#whiskermenu-window entry.search:focus { - background-color: #282524; -} - -window#whiskermenu-window > frame > border { - border-radius: 12px; - padding: 6px 8px 6px 9px; - margin: 6px; - border: none; - background-color: #242220; - 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(251, 241, 199, 0.1); -} - -window#whiskermenu-window box.categories > button.radio { - padding: 3px 6px; - margin: 1px 0; -} - -window#whiskermenu-window box.categories > button.radio:hover { - background-color: rgba(251, 241, 199, 0.12); -} - -window#whiskermenu-window box.categories > button.radio:checked, window#whiskermenu-window box.categories > button.radio:active { - background-color: rgba(251, 241, 199, 0.3); - color: #fbf1c7; -} - -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: #282524; - border-radius: 12px; -} - -window#whiskermenu-window scrolledwindow.frame treeview.view { - border-radius: 12px; -} - -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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -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(251, 241, 199, 0.3); - color: #fbf1c7; -} - -#XfceNotifyWindow { - background-color: #282524; - border-radius: 12px; - border: none; - box-shadow: none; -} - -#XfceNotifyWindow buttonbox { - padding: 0; -} - -#XfceNotifyWindow label#summary { - font-weight: bold; -} - -dialog.xfsm-logout-dialog { - border-radius: 12px; - background-color: rgba(36, 34, 32, 0.97); - border: none; - box-shadow: none; -} - -#xfwm-tabwin { - padding: 12px; - border-radius: 12px; - -xfwmtabwinwidget-icon-size: 64px; - -xfwmtabwinwidget-preview-size: 64px; -} - -/********** - * Thunar * - **********/ -.thunar toolbar { - box-shadow: inset 0 -1px rgba(251, 241, 199, 0.12); -} - -.thunar .standard-view.frame { - border: none; -} - -.thunar scrolledwindow.frame.sidebar { - border-top: none; -} - -.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(251, 241, 199, 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(251, 241, 199, 0.7); - font-weight: normal; -} - -menubar.-vala-panel-appmenu-private > menuitem:hover, -menubar.-vala-panel-background > menuitem:hover { - color: #fbf1c7; - border-radius: 0; -} - -menubar.-vala-panel-appmenu-private > menuitem:disabled, -menubar.-vala-panel-background > menuitem:disabled { - color: rgba(251, 241, 199, 0.32); -} - -/************************ - * LightDM GTK+ Greeter * - ************************/ -#panel_window { - background-color: #282524; - color: #fbf1c7; -} - -#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(251, 241, 199, 0.7); -} - -#panel_window menubar > menuitem:hover { - color: #fbf1c7; -} - -#panel_window menubar > menuitem:disabled label { - color: rgba(251, 241, 199, 0.32); -} - -#login_window, -#shutdown_dialog, -#restart_dialog { - margin: 8px; - 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(251, 241, 199, 0.1); - background-color: #242220; -} - -#content_frame { - padding-bottom: 16px; -} - -#buttonbox_frame { - padding-top: 24px; -} - -#buttonbox_frame > box, -#buttonbox_frame > buttonbox { - margin: -16px; -} - -#buttonbox_frame button:not(:disabled) { - color: #7daea3; -} - -/******** - * Nemo * - ********/ -.nemo-window .primary-toolbar { - background-color: #1d2021; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -.nemo-window .primary-toolbar entry { - min-height: 0; - margin: 0; -} - -.nemo-window .primary-toolbar > toolitem > .linked > button.image-button { - margin-left: 1px; - margin-right: 1px; -} - -.nemo-window .primary-toolbar button.text-button { - padding-left: 8px; - padding-right: 8px; - color: rgba(251, 241, 199, 0.7); -} - -.nemo-window .primary-toolbar button.text-button:hover, .nemo-window .primary-toolbar button.text-button:active, .nemo-window .primary-toolbar button.text-button:checked { - color: #fbf1c7; -} - -.nemo-window .primary-toolbar button.text-button:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.nemo-window .primary-toolbar button.text-button:backdrop { - color: rgba(251, 241, 199, 0.5); -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button { - margin-left: 1px; - margin-right: 1px; -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button:checked { - box-shadow: none; -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button { - border-radius: 6px; -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button:first-child { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -.nemo-window .primary-toolbar .path-bar.linked:not(.vertical) > button.slider-button:last-child { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -.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: #282524; -} - -.nemo-window .nemo-window-pane widget.entry { - border-radius: 6px; - background-color: rgba(251, 241, 199, 0.04); -} - -.nemo-window .nemo-window-pane > notebook { - border-radius: 0; -} - -.places-treeview { - -nemoplacestreeview-disk-full-bg-color: #605f53; - -nemoplacestreeview-disk-full-fg-color: #7daea3; - -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 #fbf1c7; -/* text color for entries, views and content in general */ -@define-color theme_text_color #fbf1c7; -/* widget base background color */ -@define-color theme_bg_color #1d2021; -/* text widgets and the like base background color */ -@define-color theme_base_color #282524; -/* base background color of selections */ -@define-color theme_selected_bg_color #7daea3; -/* text/foreground color of selections */ -@define-color theme_selected_fg_color rgba(29, 32, 33, 0.87); -/* base background color of insensitive widgets */ -@define-color insensitive_bg_color #1d2021; -/* text foreground color of insensitive widgets */ -@define-color insensitive_fg_color rgba(251, 241, 199, 0.5); -/* insensitive text widgets and the like base background color */ -@define-color insensitive_base_color #282524; -/* widget text/foreground color on backdrop windows */ -@define-color theme_unfocused_fg_color #fbf1c7; -/* text color for entries, views and content in general on backdrop windows */ -@define-color theme_unfocused_text_color #fbf1c7; -/* widget base background color on backdrop windows */ -@define-color theme_unfocused_bg_color #1d2021; -/* text widgets and the like base background color on backdrop windows */ -@define-color theme_unfocused_base_color #282524; -/* base background color of selections on backdrop windows */ -@define-color theme_unfocused_selected_bg_color #7daea3; -/* text/foreground color of selections on backdrop windows */ -@define-color theme_unfocused_selected_fg_color rgba(29, 32, 33, 0.87); -/* insensitive color on backdrop windows */ -@define-color unfocused_insensitive_color rgba(251, 241, 199, 0.5); -/* widgets main borders color */ -@define-color borders rgba(251, 241, 199, 0.12); -/* widgets main borders color on backdrop windows */ -@define-color unfocused_borders rgba(251, 241, 199, 0.12); -/* these are pretty self explicative */ -@define-color warning_color #b47109; -@define-color error_color #c14a4a; -@define-color success_color #6c782e; -/* 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_focused_title #fbf1c7; -@define-color wm_unfocused_title rgba(251, 241, 199, 0.7); -@define-color wm_highlight rgba(251, 241, 199, 0.1); -@define-color wm_border #080707; -@define-color wm_focused_bg #1d2021; -@define-color wm_unfocused_bg #1d2021; -@define-color wm_button_icon #fbf1c7; -@define-color wm_button_focused_bg rgba(251, 241, 199, 0.04); -@define-color wm_button_unfocused_bg rgba(251, 241, 199, 0.04); -@define-color wm_button_hover_fg rgba(29, 32, 33, 0.87); -@define-color wm_button_active_fg rgba(29, 32, 33, 0.87); -@define-color wm_button_hover_bg #fbf1c7; -@define-color wm_button_active_bg #fbf1c7; -/* FIXME this is really an API */ -@define-color content_view_bg #282524; -@define-color placeholder_text_color #bcb496; -/* Very contrasty background for text views (@theme_text_color foreground) */ -@define-color text_view_bg #282524; -@define-color budgie_tasklist_indicator_color rgba(251, 241, 199, 0.3); -@define-color budgie_tasklist_indicator_color_active #7daea3; -@define-color budgie_tasklist_indicator_color_active_window rgba(99, 136, 128, 0.816); -@define-color budgie_tasklist_indicator_color_attention #b47109; -@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/local/share/themes/Gruvbox-Dark/gtk-3.0/thumbnail.png b/local/share/themes/Gruvbox-Dark/gtk-3.0/thumbnail.png deleted file mode 100644 index 70b940018..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-3.0/thumbnail.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-checked-symbolic.svg deleted file mode 100644 index c3eedb0d3..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-checked-symbolic.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-checked-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-checked-symbolic@2.svg deleted file mode 100644 index 96be359b2..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-checked-symbolic@2.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-mixed-symbolic.svg deleted file mode 100644 index f016658de..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-mixed-symbolic.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-mixed-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-mixed-symbolic@2.svg deleted file mode 100644 index 1bc6987c7..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/checkbox-mixed-symbolic@2.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/close.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/close.svg deleted file mode 100644 index 06201c39d..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/close.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/maximize.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/maximize.svg deleted file mode 100644 index 39316eba5..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/maximize.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/minimize.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/minimize.svg deleted file mode 100644 index f3683b9d7..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/minimize.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-checked-symbolic.svg deleted file mode 100644 index d13b0295b..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-checked-symbolic.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-checked-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-checked-symbolic@2.svg deleted file mode 100644 index ed8d87adb..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-checked-symbolic@2.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-mixed-symbolic.svg deleted file mode 120000 index 79b7355c9..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-mixed-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -checkbox-mixed-symbolic.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-mixed-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-mixed-symbolic@2.svg deleted file mode 120000 index b68859d48..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/radio-mixed-symbolic@2.svg +++ /dev/null @@ -1 +0,0 @@ -checkbox-mixed-symbolic@2.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-symbolic.svg deleted file mode 100644 index de0d7899f..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-symbolic.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-symbolic.svg deleted file mode 100644 index 7f0235f10..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-symbolic.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-hover-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-hover-symbolic.svg deleted file mode 100644 index 993f30828..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-hover-symbolic.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-hover-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-hover-symbolic@2.svg deleted file mode 100644 index 740bc8b8a..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-hover-symbolic@2.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-symbolic.svg deleted file mode 100644 index 73a1dbe5f..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-symbolic.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-symbolic@2.svg deleted file mode 100644 index bec2ee43a..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-slider-symbolic@2.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-symbolic.svg deleted file mode 100644 index 37d9c04b0..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-symbolic.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-symbolic.svg deleted file mode 100644 index 1bc5cb6ff..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-symbolic.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-checked-symbolic.svg deleted file mode 100644 index caed76fa0..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-checked-symbolic.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-checked-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-checked-symbolic@2.svg deleted file mode 100644 index 58aa5ffed..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-checked-symbolic@2.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-mixed-symbolic.svg deleted file mode 100644 index 0e477a9d8..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-mixed-symbolic.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-mixed-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-mixed-symbolic@2.svg deleted file mode 100644 index d0980e258..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-checkbox-mixed-symbolic@2.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-checked-symbolic.svg deleted file mode 100644 index 0fdb5302a..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-checked-symbolic.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-checked-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-checked-symbolic@2.svg deleted file mode 100644 index 251e2f543..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-checked-symbolic@2.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-mixed-symbolic.svg deleted file mode 120000 index 86dfcec08..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-mixed-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -small-checkbox-mixed-symbolic.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-mixed-symbolic@2.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-mixed-symbolic@2.svg deleted file mode 120000 index bafb55887..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/small-radio-mixed-symbolic@2.svg +++ /dev/null @@ -1 +0,0 @@ -small-checkbox-mixed-symbolic@2.svg \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/unmaximize.svg b/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/unmaximize.svg deleted file mode 100644 index 492d47a23..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/unmaximize.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/gtk-dark.css b/local/share/themes/Gruvbox-Dark/gtk-4.0/gtk-dark.css deleted file mode 100644 index 07e021aec..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/gtk-dark.css +++ /dev/null @@ -1,8481 +0,0 @@ -@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, #7daea3 0%, transparent 0%); - } - to { - background-image: radial-gradient(circle, #7daea3 100%, transparent 100%); - } -} - -/*************** - * Base States * - ***************/ -.background { - background-color: #1d2021; - color: #fbf1c7; -} - -dnd { - color: #fbf1c7; -} - -.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: rgba(251, 241, 199, 0.04); - color: #fbf1c7; -} - -iconview:disabled, -.view:disabled { - color: rgba(251, 241, 199, 0.5); -} - -iconview:selected, -.view:selected { - color: #fbf1c7; -} - -textview text { - background-color: rgba(251, 241, 199, 0.04); -} - -textview border { - background-color: #282524; - color: rgba(251, 241, 199, 0.7); -} - -iconview:hover, iconview:selected { - border-radius: 6px; -} - -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 #7daea3; - background-color: rgba(125, 174, 163, 0.3); -} - -flowbox > flowboxchild { - padding: 4px; - border-radius: 12px; -} - -.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: #fbf1c7; - background-color: #282524; - border: 1px solid black; -} - -label.separator { - color: rgba(251, 241, 199, 0.7); -} - -label:disabled { - opacity: 1; - color: rgba(251, 241, 199, 0.5); -} - -headerbar label:disabled, tab label:disabled, button label:disabled { - color: inherit; - opacity: 1; -} - -label.osd { - border-radius: 12px; - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; -} - - -.dim-label, -row.expander image.expander-row-arrow, -row label.subtitle { - color: rgba(251, 241, 199, 0.7); - opacity: 1; -} - -.accent { - color: #7daea3; -} - -.success { - color: #6c782e; -} - -.warning { - color: #b47109; -} - -.error { - color: #c14a4a; -} - -.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(251, 241, 199, 0.5); - font-weight: 500; -} - -window.assistant .sidebar label.highlight { - color: #fbf1c7; -} - -.osd .scale-popup > arrow, -.osd .scale-popup > contents, .osd popover > arrow, -.osd popover > contents, popover.touch-selection > arrow, -popover.touch-selection > contents, popover.magnifier > arrow, -popover.magnifier > contents, .osd { - color: #fbf1c7; - background-color: #282524; - background-clip: padding-box; - border-radius: 12px; - border: none; - 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(251, 241, 199, 0.1); -} - -.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 * - ****************/ - -entry headerbar popover.background entry, -headerbar popover.background entry entry, -entry { - min-height: 36px; - padding: 0 8px; - border-spacing: 6px; - border-radius: 12px; - caret-color: currentColor; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.7); - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry:focus-within, -headerbar popover.background entry entry:focus-within, -entry:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px transparent; - color: #fbf1c7; - outline: 2px solid #7daea3; - outline-offset: -2px; -} - - -entry headerbar popover.background entry:drop(active), -headerbar popover.background entry entry:drop(active), -entry headerbar popover.background entry:hover:not(:focus-within), -headerbar popover.background entry entry:hover:not(:focus-within), -entry:drop(active), -entry:hover:not(:focus-within) { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry:disabled, -headerbar popover.background entry entry:disabled, -entry:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); - outline: none; -} - - -entry headerbar popover.background entry.flat:focus-within, -headerbar popover.background entry entry.flat:focus-within, -entry headerbar popover.background entry.flat:disabled, -headerbar popover.background entry entry.flat:disabled, -entry headerbar popover.background entry.flat:hover, -headerbar popover.background entry entry.flat:hover, -entry headerbar popover.background entry.flat, -headerbar popover.background entry 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; -} - - -entry headerbar popover.background entry image, -headerbar popover.background entry entry image, -entry image { - color: rgba(251, 241, 199, 0.7); -} - - -entry headerbar popover.background entry image:hover, -headerbar popover.background entry entry image:hover, -entry headerbar popover.background entry image:active, -headerbar popover.background entry entry image:active, -entry image:hover, -entry image:active { - color: #fbf1c7; -} - - -entry headerbar popover.background entry image:disabled, -headerbar popover.background entry entry image:disabled, -entry image:disabled { - color: rgba(251, 241, 199, 0.5); -} - - -entry headerbar popover.background entry image.left, -headerbar popover.background entry entry image.left, -entry image.left { - margin: 0 6px 0 2px; -} - - -entry headerbar popover.background entry image.right, -headerbar popover.background entry entry image.right, -entry image.right { - margin: 0 2px 0 6px; -} - - -entry headerbar popover.background entry undershoot.left > undershoot.left, -headerbar popover.background entry entry undershoot.left > undershoot.left, -entry undershoot.left > undershoot.left { - border-radius: 0px 0 0 0px; - box-shadow: none; - background: linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - - -entry headerbar popover.background entry undershoot.right > undershoot.right, -headerbar popover.background entry entry undershoot.right > undershoot.right, -entry undershoot.right > undershoot.right { - border-radius: 0 0px 0px 0; - box-shadow: none; - background: linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - - -entry headerbar popover.background entry.error, -headerbar popover.background entry entry.error, -entry.error { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(193, 74, 74, 0.1); - color: rgba(193, 74, 74, 0.75); - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.error:focus-within, -headerbar popover.background entry entry.error:focus-within, -entry.error:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(193, 74, 74, 0.1); - box-shadow: inset 0 0 0 2px transparent; - color: #c14a4a; - outline: 2px solid #c14a4a; - outline-offset: -2px; -} - - -entry headerbar popover.background entry.error:drop(active), -headerbar popover.background entry entry.error:drop(active), -entry headerbar popover.background entry.error:hover:not(:focus-within), -headerbar popover.background entry entry.error:hover:not(:focus-within), -entry.error:drop(active), -entry.error:hover:not(:focus-within) { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); - color: #c14a4a; - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.error:disabled, -headerbar popover.background entry entry.error:disabled, -entry.error:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(193, 74, 74, 0.1); - color: rgba(193, 74, 74, 0.35); - outline: none; -} - - -entry headerbar popover.background entry.error > text > selection, -headerbar popover.background entry entry.error > text > selection, -entry.error > text > selection { - background-color: rgba(193, 74, 74, 0.25); - color: #c14a4a; -} - - -entry headerbar popover.background entry.error image, -headerbar popover.background entry entry.error image, -entry.error image { - color: rgba(193, 74, 74, 0.75); -} - - -entry headerbar popover.background entry.error image:hover, -headerbar popover.background entry entry.error image:hover, -entry headerbar popover.background entry.error image:active, -headerbar popover.background entry entry.error image:active, -entry.error image:hover, -entry.error image:active { - color: #c14a4a; -} - - -entry headerbar popover.background entry.error image:disabled, -headerbar popover.background entry entry.error image:disabled, -entry.error image:disabled { - color: rgba(193, 74, 74, 0.35); -} - - -entry headerbar popover.background entry.warning, -headerbar popover.background entry entry.warning, -entry.warning { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(180, 113, 9, 0.1); - color: rgba(180, 113, 9, 0.75); - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.warning:focus-within, -headerbar popover.background entry entry.warning:focus-within, -entry.warning:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(180, 113, 9, 0.1); - box-shadow: inset 0 0 0 2px transparent; - color: #b47109; - outline: 2px solid #b47109; - outline-offset: -2px; -} - - -entry headerbar popover.background entry.warning:drop(active), -headerbar popover.background entry entry.warning:drop(active), -entry headerbar popover.background entry.warning:hover:not(:focus-within), -headerbar popover.background entry entry.warning:hover:not(:focus-within), -entry.warning:drop(active), -entry.warning:hover:not(:focus-within) { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); - color: #b47109; - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.warning:disabled, -headerbar popover.background entry entry.warning:disabled, -entry.warning:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(180, 113, 9, 0.1); - color: rgba(180, 113, 9, 0.35); - outline: none; -} - - -entry headerbar popover.background entry.warning > text > selection, -headerbar popover.background entry entry.warning > text > selection, -entry.warning > text > selection { - background-color: rgba(180, 113, 9, 0.25); - color: #b47109; -} - - -entry headerbar popover.background entry.warning image, -headerbar popover.background entry entry.warning image, -entry.warning image { - color: rgba(180, 113, 9, 0.75); -} - - -entry headerbar popover.background entry.warning image:hover, -headerbar popover.background entry entry.warning image:hover, -entry headerbar popover.background entry.warning image:active, -headerbar popover.background entry entry.warning image:active, -entry.warning image:hover, -entry.warning image:active { - color: #b47109; -} - - -entry headerbar popover.background entry.warning image:disabled, -headerbar popover.background entry entry.warning image:disabled, -entry.warning image:disabled { - color: rgba(180, 113, 9, 0.35); -} - - -entry headerbar popover.background entry.success, -headerbar popover.background entry entry.success, -entry.success { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(108, 120, 46, 0.1); - color: rgba(108, 120, 46, 0.75); - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.success:focus-within, -headerbar popover.background entry entry.success:focus-within, -entry.success:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(108, 120, 46, 0.1); - box-shadow: inset 0 0 0 2px transparent; - color: #6c782e; - outline: 2px solid #6c782e; - outline-offset: -2px; -} - - -entry headerbar popover.background entry.success:drop(active), -headerbar popover.background entry entry.success:drop(active), -entry headerbar popover.background entry.success:hover:not(:focus-within), -headerbar popover.background entry entry.success:hover:not(:focus-within), -entry.success:drop(active), -entry.success:hover:not(:focus-within) { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); - color: #6c782e; - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.success:disabled, -headerbar popover.background entry entry.success:disabled, -entry.success:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(108, 120, 46, 0.1); - color: rgba(108, 120, 46, 0.35); - outline: none; -} - - -entry headerbar popover.background entry.success > text > selection, -headerbar popover.background entry entry.success > text > selection, -entry.success > text > selection { - background-color: rgba(108, 120, 46, 0.25); - color: #6c782e; -} - - -entry headerbar popover.background entry.success image, -headerbar popover.background entry entry.success image, -entry.success image { - color: rgba(108, 120, 46, 0.75); -} - - -entry headerbar popover.background entry.success image:hover, -headerbar popover.background entry entry.success image:hover, -entry headerbar popover.background entry.success image:active, -headerbar popover.background entry entry.success image:active, -entry.success image:hover, -entry.success image:active { - color: #6c782e; -} - - -entry headerbar popover.background entry.success image:disabled, -headerbar popover.background entry entry.success image:disabled, -entry.success image:disabled { - color: rgba(108, 120, 46, 0.35); -} - - -entry > progress, -entry progress > trough > progress { - margin: 0 -4px; - border-bottom: 2px solid #7daea3; - background-color: transparent; -} - - -entry button.image-button { - min-height: 24px; - min-width: 24px; - padding: 0; -} - -treeview entry.flat, treeview entry { - background-color: #282524; -} - -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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.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(251, 241, 199, 0.7); -} - -editablelabel > stack > text { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.7); - outline: 0 solid transparent; - outline-offset: 2px; -} - -/*********** - * Buttons * - ***********/ -@keyframes needs-attention { - from { - background-image: radial-gradient(farthest-side, #7daea3 0%, rgba(125, 174, 163, 0) 0%); - } - to { - background-image: radial-gradient(farthest-side, #7daea3 95%, rgba(125, 174, 163, 0)); - } -} - -infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, popover.touch-selection button, popover.magnifier button, headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); -} - -infobar.warning > revealer > box button:focus, popover.touch-selection button:focus, popover.magnifier button:focus, headerbar.selection-mode button:focus:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:hover, popover.touch-selection button:hover, popover.magnifier button:hover, headerbar.selection-mode button:hover:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:active, popover.touch-selection button:active, popover.magnifier button:active, headerbar.selection-mode button:active:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:checked, popover.touch-selection button:checked, popover.magnifier button:checked, headerbar.selection-mode button:checked:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; -} - -infobar.warning > revealer > box button:disabled, popover.touch-selection button:disabled, popover.magnifier button:disabled, headerbar.selection-mode button:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -infobar.warning > revealer > box button:checked:disabled, popover.touch-selection button:checked:disabled, popover.magnifier button:checked:disabled, headerbar.selection-mode button:checked:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.5); -} - -placessidebar list.navigation-sidebar > row button.sidebar-button { - background-color: #282524; - color: #fbf1c7; -} - -placessidebar list.navigation-sidebar > row button.sidebar-button:checked { - background-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; -} - -tabbar tab:not(:selected) button.image-button.tab-close-button, -dnd tab:not(:selected) button.image-button.tab-close-button, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button, notebook > header menubutton > button.flat { - color: rgba(29, 32, 33, 0.6); -} - -tabbar tab:not(:selected) button.image-button.tab-close-button:hover, -dnd tab:not(:selected) button.image-button.tab-close-button:hover, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:hover, notebook > header menubutton > button.flat:hover, tabbar tab:not(:selected) button.image-button.tab-close-button:active, -dnd tab:not(:selected) button.image-button.tab-close-button:active, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:active, notebook > header menubutton > button.flat:active, tabbar tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, -dnd tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, tabbar notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, -dnd notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, tabbar tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) notebook > header > tabs > tab:not(:checked):not(:selected) button.keyboard-activating.small-button, -dnd tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) notebook > header > tabs > tab:not(:checked):not(:selected) button.keyboard-activating.small-button, tabbar notebook > header > tabs > tab:not(:checked):not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) button.keyboard-activating.small-button, -dnd notebook > header > tabs > tab:not(:checked):not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) button.keyboard-activating.small-button, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) button.keyboard-activating.small-button, notebook > header menubutton > button.flat:focus:not(:hover):not(:active) tabbar tab:not(:selected) button.keyboard-activating.image-button.tab-close-button, tabbar tab:not(:selected) notebook > header menubutton > button.flat:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, -notebook > header menubutton > button.flat:focus:not(:hover):not(:active) dnd tab:not(:selected) button.keyboard-activating.image-button.tab-close-button, -dnd tab:not(:selected) notebook > header menubutton > button.flat:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, notebook > header > tabs > tab:not(:checked):not(:selected) menubutton > button.flat:focus:not(:hover):not(:active) button.keyboard-activating.small-button, tabbar tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) notebook > header menubutton > button.keyboard-activating.flat, -dnd tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) notebook > header menubutton > button.keyboard-activating.flat, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) notebook > header menubutton > button.keyboard-activating.flat, notebook > header tabbar tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, tabbar tab:not(:selected) notebook > header button.image-button.tab-close-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, -notebook > header dnd tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, -dnd tab:not(:selected) notebook > header button.image-button.tab-close-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, notebook > header menubutton > button.flat:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat { - color: rgba(29, 32, 33, 0.87); -} - -tabbar tab:not(:selected) button.image-button.tab-close-button:checked, -dnd tab:not(:selected) button.image-button.tab-close-button:checked, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:checked, notebook > header menubutton > button.flat:checked { - background-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; -} - -tabbar tab:not(:selected) button.image-button.tab-close-button:disabled, -dnd tab:not(:selected) button.image-button.tab-close-button:disabled, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:disabled, notebook > header menubutton > button.flat:disabled { - color: rgba(29, 32, 33, 0.3); -} - -headerbar popover.background button:not(.suggested-action):not(.destructive-action):not(.flat), button { - 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 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.08); - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - outline: 0 solid transparent; - outline-offset: 2px; - color: #fbf1c7; -} - -headerbar popover.background button:focus:not(.suggested-action):not(.destructive-action):not(.flat), button:focus { - outline: 2px solid rgba(125, 174, 163, 0.35); - outline-offset: 0; -} - -headerbar popover.background button:hover:not(.suggested-action):not(.destructive-action):not(.flat), button:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; - -gtk-icon-filter: brightness(1.2); -} - -headerbar popover.background button.keyboard-activating:not(.suggested-action):not(.destructive-action):not(.flat), button.keyboard-activating, headerbar popover.background button:active:not(.suggested-action):not(.destructive-action):not(.flat), 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, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -headerbar popover.background button:disabled:not(.suggested-action):not(.destructive-action):not(.flat), button:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - outline-color: transparent; -} - -headerbar popover.background button:checked:not(.suggested-action):not(.destructive-action):not(.flat), button:checked { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -headerbar popover.background button:checked:hover:not(.suggested-action):not(.destructive-action):not(.flat), button:checked:hover { - outline-color: transparent; - background-color: #8db8ae; - color: rgba(29, 32, 33, 0.87); -} - -headerbar popover.background button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.flat), button:checked:disabled { - outline-color: transparent; - background-color: rgba(125, 174, 163, 0.35); - color: rgba(29, 32, 33, 0.38); -} - -placessidebar list.navigation-sidebar > row button.sidebar-button, calendar > header > button, scrollbar button, notebook > header > tabs > arrow, popover modelbutton, spinbutton > button, splitbutton.flat > button, -splitbutton.flat > menubutton > button { - 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), outline 300ms 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: transparent; - outline: 0 solid transparent; - outline-offset: 2px; - color: rgba(251, 241, 199, 0.7); -} - -placessidebar list.navigation-sidebar > 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 modelbutton: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) { - color: #fbf1c7; - outline: 2px solid rgba(251, 241, 199, 0.04); - outline-offset: -2px; -} - -placessidebar list.navigation-sidebar > row button.sidebar-button:hover, calendar > header > button:hover, scrollbar button:hover, notebook > header > tabs > arrow:hover, popover modelbutton:hover, spinbutton > button:hover, splitbutton.flat > button:hover, -splitbutton.flat > menubutton > button:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -placessidebar list.navigation-sidebar > row button.sidebar-button:active, calendar > header > button:active, scrollbar button:active, notebook > header > tabs > arrow:active, popover modelbutton: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-image: radial-gradient(circle, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -placessidebar list.navigation-sidebar > row button.sidebar-button:disabled, calendar > header > button:disabled, scrollbar button:disabled, notebook > header > tabs > arrow:disabled, popover modelbutton:disabled, spinbutton > button:disabled, splitbutton.flat > button:disabled, -splitbutton.flat > menubutton > button:disabled { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -#NautilusPathButton, filechooser #pathbarbox > stack > box > button, window.messagedialog .response-area > box > button, window.dialog.message .dialog-action-area > button, .app-notification button, .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), 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), outline 300ms 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: transparent; - outline: 0 solid transparent; - outline-offset: 2px; - color: rgba(251, 241, 199, 0.7); -} - -#NautilusPathButton: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), .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) { - color: #fbf1c7; - outline: 2px solid rgba(251, 241, 199, 0.04); - outline-offset: -2px; -} - -#NautilusPathButton: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, .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 { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -#NautilusPathButton: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, .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-image: radial-gradient(circle, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -#NautilusPathButton: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, .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 { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -#NautilusPathButton: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, .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); - color: #fbf1c7; -} - -#NautilusPathButton: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, .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(251, 241, 199, 0.5); -} - -button.opaque { - box-shadow: none; -} - -.osd button.opaque:focus:focus-visible { - outline-color: rgba(251, 241, 199, 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:checked.keyboard-activating, button.opaque:checked:active { - background-image: image(rgba(0, 0, 0, 0.3)); -} - -.nautilus-window .floating-bar button, placessidebar list.navigation-sidebar > 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: 9px; - font-weight: 500; -} - -button:drop(active) { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -button separator { - margin: 4px 1px; -} - -button.opaque { - background-color: #494a42; - color: #fbf1c7; -} - -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: 12px; -} - -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: #282524; - background-clip: padding-box; - font-weight: inherit; - border: 1px solid rgba(251, 241, 199, 0.12); - background-clip: border-box; -} - -button.card:hover { - background-image: none; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -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, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -button.card:checked { - background-image: none; - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - border-color: #7daea3; -} - -button.card:checked:hover { - background-image: none; - outline-color: transparent; - background-color: #8db8ae; - color: rgba(29, 32, 33, 0.87); -} - -button.card:checked:disabled { - outline-color: transparent; - background-color: rgba(125, 174, 163, 0.35); - color: rgba(29, 32, 33, 0.38); -} - -button.card:checked.keyboard-activating, button.card:checked:active { - background-image: none; -} - -button.card:checked.has-open-popup { - background-image: none; -} - -button.card:drop(active) { - color: #e78a4e; - box-shadow: inset 0 0 0 1px #e78a4e; -} - -.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: #fbf1c7; -} - -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: #fbf1c7; -} - -button.osd:active { - background-color: rgba(0, 0, 0, 0.65); - color: #fbf1c7; -} - -button.osd:disabled { - background-color: rgba(0, 0, 0, 0.15); - color: rgba(251, 241, 199, 0.35); -} - -button.suggested-action { - background-color: #45707a; - color: #fbf1c7; - box-shadow: none; -} - -button.suggested-action:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - outline-color: transparent; -} - -button.suggested-action:hover { - background-color: rgba(69, 112, 122, 0.7); - box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 6px 0 rgba(0, 0, 0, 0.06); -} - -button.suggested-action:checked { - background-color: #7c9791; -} - -button.suggested-action:checked:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(0, 0, 0, 0.3), 0 2px 3px -1px rgba(0, 0, 0, 0.24), 0 2px 5px 0 rgba(0, 0, 0, 0.12); -} - -button.suggested-action:focus { - box-shadow: 0 0 0 2px rgba(69, 112, 122, 0.35); -} - -button.suggested-action.flat { - background-color: transparent; - color: #45707a; -} - -button.suggested-action.flat:disabled { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -button.suggested-action.flat:checked { - background-color: rgba(69, 112, 122, 0.3); -} - -button.destructive-action { - background-color: #c14a4a; - color: #fbf1c7; - box-shadow: none; -} - -button.destructive-action:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - outline-color: transparent; -} - -button.destructive-action:hover { - background-color: rgba(193, 74, 74, 0.7); - box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 6px 0 rgba(0, 0, 0, 0.06); -} - -button.destructive-action:checked { - background-color: #d27c70; -} - -button.destructive-action:checked:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(0, 0, 0, 0.3), 0 2px 3px -1px rgba(0, 0, 0, 0.24), 0 2px 5px 0 rgba(0, 0, 0, 0.12); -} - -button.destructive-action:focus { - box-shadow: 0 0 0 2px rgba(193, 74, 74, 0.35); -} - -button.destructive-action.flat { - background-color: transparent; - color: #c14a4a; -} - -button.destructive-action.flat:disabled { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -button.destructive-action.flat:checked { - background-color: rgba(193, 74, 74, 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; -} - -windowcontrols button:not(.suggested-action):not(.destructive-action), filechooser #pathbarbox > stack > box > button, menubutton.circular > button, button.close, button.circular { - border-radius: 9999px; -} - -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; -} - -menubutton.osd { - background: none; - color: inherit; -} - -menubutton.suggested-action { - background-color: #45707a; - color: #fbf1c7; -} - -menubutton.destructive-action { - background-color: #c14a4a; - color: #fbf1c7; -} - -menubutton.opaque { - background-color: #494a42; - color: #fbf1c7; -} - -menubutton.suggested-action, menubutton.destructive-action, menubutton.opaque { - border-radius: 12px; -} - -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: 12px; -} - -splitbutton, splitbutton > separator { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - transition-property: background-color; -} - -splitbutton > separator { - min-width: 0; - margin-top: 6px; - margin-bottom: 6px; - background-color: transparent; - background: none; -} - -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: 0; -} - -splitbutton.flat > separator { - background: rgba(251, 241, 199, 0.12); -} - -splitbutton.flat:hover, splitbutton.flat:active, splitbutton.flat:checked { - background: alpha(currentColor, 0.07); -} - -splitbutton.flat:hover > separator, splitbutton.flat:active > separator, splitbutton.flat:checked > separator { - background: none; -} - -splitbutton.flat:focus-within:focus-visible > separator { - background: none; -} - -splitbutton.flat > button, -splitbutton.flat > menubutton > button { - border-radius: 12px; -} - -splitbutton.suggested-action { - background-color: #45707a; - color: #fbf1c7; -} - -splitbutton.destructive-action { - background-color: #c14a4a; - color: #fbf1c7; -} - -splitbutton.opaque { - background-color: #494a42; - color: #fbf1c7; -} - -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(251, 241, 199, 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(251, 241, 199, 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; -} - -button.color { - min-height: 24px; - min-width: 24px; - padding: 6px; -} - -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; -} - -.linked:not(.vertical) > entry, .linked:not(.vertical) > button, .linked:not(.vertical) > button.image-button { - border-radius: 0; -} - -.linked:not(.vertical) > entry:first-child, .linked:not(.vertical) > button:first-child { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -.linked:not(.vertical) > entry:last-child, .linked:not(.vertical) > button:last-child { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -.linked:not(.vertical) > entry:only-child, .linked:not(.vertical) > button:only-child { - border-radius: 12px; -} - -.linked.vertical > entry, .linked.vertical > button, .linked.vertical > button.image-button { - border-radius: 0; -} - -.linked.vertical > entry:first-child, .linked.vertical > button:first-child { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -.linked.vertical > entry:last-child, .linked.vertical > button:last-child { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -.linked.vertical > entry:only-child, .linked.vertical > button:only-child { - border-radius: 12px; -} - -.linked:not(.vertical) > button:dir(ltr):not(:first-child), .linked:not(.vertical) > button:dir(rtl):not(:last-child) { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > button:dir(ltr):not(:last-child), .linked:not(.vertical) > button:dir(rtl):not(:first-child) { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical button:not(:first-child) { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical button:not(:last-child) { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > menubutton:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > menubutton:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > menubutton:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > menubutton:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical menubutton:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical menubutton:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > dropdown:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > dropdown:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > dropdown:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > dropdown:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical dropdown:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical dropdown:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > colorbutton:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > colorbutton:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > colorbutton:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > colorbutton:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical colorbutton:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical colorbutton:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > fontbutton:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > fontbutton:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > fontbutton:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > fontbutton:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical fontbutton:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical fontbutton:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > tabbutton:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > tabbutton:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > tabbutton:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > tabbutton:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical tabbutton:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical tabbutton:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > entry:dir(ltr):not(:first-child), .linked:not(.vertical) > entry:dir(rtl):not(:last-child) { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > entry:dir(ltr):not(:last-child), .linked:not(.vertical) > entry:dir(rtl):not(:first-child) { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical entry:not(:first-child) { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical entry:not(:last-child) { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > combobox:dir(ltr):not(:first-child) > box > button.combo, .linked:not(.vertical) > combobox:dir(rtl):not(:last-child) > box > button.combo { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > combobox:dir(ltr):not(:last-child) > box > button.combo, .linked:not(.vertical) > combobox:dir(rtl):not(:first-child) > box > button.combo { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical combobox:not(:first-child) > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical combobox:not(:last-child) > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > appchooserbutton:dir(ltr):not(:first-child) > combobox > box > button.combo, .linked:not(.vertical) > appchooserbutton:dir(rtl):not(:last-child) > combobox > box > button.combo { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > appchooserbutton:dir(ltr):not(:last-child) > combobox > box > button.combo, .linked:not(.vertical) > appchooserbutton:dir(rtl):not(:first-child) > combobox > box > button.combo { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical appchooserbutton:not(:first-child) > combobox > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical appchooserbutton:not(:last-child) > combobox > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - - -list > row button.image-button:not(.flat) { - background-color: transparent; - box-shadow: none; - border: none; -} - - -list > row button.image-button:not(.flat):hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - - -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, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - - -list > row button.image-button:not(.flat).suggested-action { - background-color: #45707a; - color: #fbf1c7; -} - - -list > row button.image-button:not(.flat).destructive-action { - background-color: #c14a4a; - color: #fbf1c7; -} - -/********* - * Links * - *********/ -link { - color: #83b193; -} - -link:visited { - color: #ab62b1; -} - -button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active { - color: #83b193; -} - -button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active { - color: #ab62b1; -} - -button.link > label { - text-decoration-line: underline; -} - -/***************** - * GtkSpinButton * - *****************/ -spinbutton { - border-radius: 12px; - padding: 0; - border-spacing: 0; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.7); - outline: 0 solid transparent; - outline-offset: 2px; -} - -spinbutton:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px transparent; - color: #fbf1c7; - outline: 2px solid #7daea3; - outline-offset: -2px; -} - -spinbutton:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); - 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 12px 12px 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: #fbf1c7; - 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: 12px; -} - -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: 12px; -} - -.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: 12px; - font-weight: normal; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.7); - outline: 0 solid transparent; - outline-offset: 2px; -} - -button.combo:only-child:focus { - color: #fbf1c7; - outline: 2px solid rgba(251, 241, 199, 0.04); - outline-offset: -2px; -} - -button.combo:only-child:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -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-image: radial-gradient(circle, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -button.combo:only-child:checked { - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -button.combo:only-child:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - outline-color: transparent; -} - -/************ - * Toolbars * - ************/ -.toolbar { - padding: 6px; - border-spacing: 6px; -} - -.toolbar .linked button:not(:hover):not(:active):not(:checked):not(:disabled) { - background-color: rgba(251, 241, 199, 0.04); -} - -.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.05), 0 4px 6px 0 rgba(0, 0, 0, 0.06), 0 1px 10px 0 rgba(0, 0, 0, 0.05), inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; - color: #fbf1c7; - border: none; -} - -.app-notification:backdrop, .toolbar.osd:backdrop { - box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.2), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(251, 241, 199, 0.1); -} - -.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 splitbutton, -.toolbar button, -.toolbar scalebutton { - border-radius: 9px; -} - -.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: none; - background-color: transparent; - 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(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - border: none; - outline: none; -} - -headerbar .linked > button:not(.suggested-action):not(.destructive-action) { - border-radius: 0; -} - -headerbar .linked > button:first-child:not(.suggested-action):not(.destructive-action) { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; -} - -headerbar .linked > button:last-child:not(.suggested-action):not(.destructive-action) { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; -} - -headerbar .linked > button:only-child:not(.suggested-action):not(.destructive-action) { - border-radius: 9999px; -} - -headerbar button:hover:not(.suggested-action):not(.destructive-action) { - background-color: rgba(251, 241, 199, 0.12); -} - -headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar button:active:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; - outline: none; -} - -headerbar button:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -headerbar button:checked:not(.suggested-action):not(.destructive-action) { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - outline: none; -} - -headerbar button:checked:hover:not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 0 0 1000px rgba(29, 32, 33, 0.04); - color: rgba(29, 32, 33, 0.87); -} - -headerbar button:checked:focus:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.87); -} - -headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action) { - background-color: rgba(251, 241, 199, 0.5); - color: rgba(29, 32, 33, 0.38); -} - -headerbar button:backdrop:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.5); -} - -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(251, 241, 199, 0.7); -} - -headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.6); -} - -headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.3); -} - -headerbar entry { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; - border-radius: 9999px; -} - -headerbar entry:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -headerbar entry image { - color: rgba(251, 241, 199, 0.7); -} - -headerbar entry image:hover, headerbar entry image:active { - color: #fbf1c7; -} - -headerbar entry image:disabled { - color: rgba(251, 241, 199, 0.5); -} - -headerbar { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: transparent; - color: #fbf1c7; - min-height: 48px; - border: none; - box-shadow: none; - padding: 0; - margin: 0; -} - -headerbar:disabled { - color: rgba(251, 241, 199, 0.5); -} - -headerbar:backdrop { - background-color: transparent; - color: rgba(251, 241, 199, 0.7); -} - -headerbar:backdrop:disabled { - color: rgba(251, 241, 199, 0.32); -} - -headerbar.flat, headerbar.flat:backdrop { - background: none; - box-shadow: none; - 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(251, 241, 199, 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(251, 241, 199, 0.5); -} - -headerbar .titlebar { - background-color: transparent; - box-shadow: none; -} - -headerbar headerbar + separator { - background-color: rgba(251, 241, 199, 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(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - opacity: 1; -} - -headerbar splitbutton { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; -} - -headerbar splitbutton button:not(.suggested-action):not(.destructive-action):not(:hover):not(:active):not(:checked) { - background-color: transparent; -} - -headerbar splitbutton > separator { - background-color: transparent; -} - -headerbar .linked:not(.vertical) > entry:not(:only-child) { - border-radius: 12px; -} - -headerbar .entry-tag { - margin-top: 5px; - margin-bottom: 5px; -} - -headerbar stackswitcher { - background-color: rgba(251, 241, 199, 0.04); -} - -headerbar stackswitcher:checked { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -headerbar stackswitcher:checked:hover { - background-color: #fefdf7; -} - -headerbar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { - border-radius: 9999px; -} - -headerbar popover.background button.suggested-action:disabled, -headerbar popover.background button.destructive-action:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -headerbar popover.background entry, -headerbar popover.background spinbutton, -headerbar popover.background button, -headerbar popover.background menubutton, -headerbar popover.background stackswitcher { - margin-top: 0; - margin-bottom: 0; -} - -headerbar separator:not(.sidebar) { - background-color: rgba(251, 241, 199, 0.12); -} - -headerbar switch { - margin: 12px 6px; -} - -headerbar.selection-mode { - transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -headerbar.selection-mode:backdrop { - color: rgba(29, 32, 33, 0.6); -} - -headerbar.selection-mode .subtitle:link { - color: rgba(29, 32, 33, 0.87); -} - -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; - margin: 0; - border-radius: 12px 12px 0 0; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - border: none; - outline: none; -} - -.solid-csd headerbar.default-decoration, .maximized headerbar.default-decoration { - border-radius: 0; - box-shadow: none; -} - -window > .titlebar:not(.flat) { - box-shadow: none; -} - -window > .titlebar headerbar:not(.flat) { - box-shadow: none; -} - -window.devel headerbar { - background: #1d2021 cross-fade(10%-gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, linear-gradient(to right, transparent 65%, rgba(125, 174, 163, 0.1)), linear-gradient(to top, #242829 3px, #292d2f); -} - -window.devel headerbar:backdrop { - background: #1d2021 cross-fade(10%-gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, image(#1d2021); - /* background-color would flash */ -} - -/************ - * Pathbars * - ************/ - -pathbar > button { - padding-left: 6px; - padding-right: 6px; - border-radius: 12px; - background-color: alpha(currentColor, 0.08); - border: none; - box-shadow: none; -} - - -pathbar > button:disabled { - background-color: alpha(currentColor, 0.05); -} - - -pathbar > button:checked { - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - - -pathbar > button:checked:hover { - background-color: alpha(currentColor, 0.16); - color: #fbf1c7; -} - - -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(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.7); - border: none; - border-radius: 12px; - padding: 2px; -} - -headerbar .pathbar { - margin-top: 6px; - margin-bottom: 6px; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.7); -} - -.pathbar > button { - margin-top: 0; - margin-bottom: 0; - min-height: 20px; - border-radius: 10px; - border: none; - box-shadow: none; -} - -.pathbar > button:last-child { - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -/************** - * Tree Views * - **************/ -columnview.view, -treeview.view { - border-left-color: #423f3e; - border-top-color: #423f3e; -} - -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(251, 241, 199, 0.12); -} - -columnview.view:drop(active), -treeview.view:drop(active) { - box-shadow: none; -} - -columnview.view:drop(active).after, -treeview.view:drop(active).after { - border-top-style: none; -} - -columnview.view:drop(active).before, -treeview.view:drop(active).before { - 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:drop(active).after, -treeview.view > dndtarget:drop(active).after { - border-top-style: none; -} - -columnview.view > dndtarget:drop(active).before, -treeview.view > dndtarget:drop(active).before { - 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(251, 241, 199, 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: #fbf1c7; -} - -columnview.view.expander:selected, -treeview.view.expander:selected { - color: #fbf1c7; -} - -columnview.view.expander:selected:hover, -treeview.view.expander:selected:hover { - color: #fbf1c7; -} - -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(251, 241, 199, 0.32); -} - -columnview.view.progressbar, -treeview.view.progressbar { - border-bottom: 6px solid #7daea3; - 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(251, 241, 199, 0.12); - 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; - border-style: solid; - border-width: 0 1px 0 0; - border-color: transparent; - border-radius: 0; - background-clip: border-box; - border-image: linear-gradient(to bottom, transparent 20%, rgba(251, 241, 199, 0.12) 20%, rgba(251, 241, 199, 0.12) 80%, transparent 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(251, 241, 199, 0.7); -} - -columnview.view > header > button, columnview.view > header > button:disabled, -treeview.view > header > button, -treeview.view > header > button:disabled { - background-color: transparent; -} - -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(251, 241, 199, 0.12); - border-radius: 0; - box-shadow: none; - background-color: #282524; - background-clip: border-box; - color: #7daea3; -} - -columnview.view acceleditor > label, -treeview.view acceleditor > label { - background-color: #7daea3; -} - -stack.view treeview.view { - min-height: 36px; -} - -/********* - * Menus * - *********/ -menubar { - padding: 0; - background-color: #1d2021; - color: #fbf1c7; -} - -menubar:backdrop { - background-color: #1d2021; - color: rgba(251, 241, 199, 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(251, 241, 199, 0.7); -} - -menubar > item:selected { - transition: none; - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -menubar > item:disabled { - color: rgba(251, 241, 199, 0.32); -} - -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: #fbf1c7; - 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; - border-radius: 12px; -} - -popover.menu box.inline-buttons button.image-button.model:selected { - background-image: image(alpha(currentColor, 0.06)); -} - -popover.menu box.circular-buttons { - padding: 6px; -} - -popover.menu box.circular-buttons button.circular.image-button.model { - padding: 6px; - border-radius: 12px; -} - -popover.menu box.circular-buttons button.circular.image-button.model:focus { - background-color: alpha(currentColor, 0.06); -} - -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 label.title { - font-weight: bold; - padding: 4px 26px; -} - -/************ - * Popovers * - ************/ -popover.background { - font: initial; -} - -popover.background, popover.background:backdrop { - background-color: transparent; -} - -popover > arrow, -popover > contents { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - padding: 6px; - background-color: #141617; - border-radius: 12px; - color: #fbf1c7; - 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), inset 0 1px rgba(251, 241, 199, 0.1), 0 0 36px transparent; -} - -popover > arrow { - 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), inset 0 1px rgba(251, 241, 199, 0.1), 0 0 36px transparent; -} - -popover > contents > list, -popover > contents > .view, -popover > contents > toolbar { - border-style: none; - box-shadow: none; - background-color: transparent; -} - -popover > contents separator { - background-color: transparent; - margin: 3px 0; -} - -popover > contents list separator { - margin: 0; -} - -popover > contents list > row { - border-radius: 12px; -} - -popover > contents stack > box { - padding: 0; -} - -popover > contents > box > button { - margin: 0; -} - -popover .view:not(:selected), -popover toolbar { - background-color: #141617; -} - -popover button, -popover entry, -popover combobox { - border-radius: 12px; -} - -popover .linked > button:not(.radio) { - border-radius: 0; -} - -popover .linked > button:not(.radio):first-child { - border-radius: 12px 0 0 12px; -} - -popover .linked > button:not(.radio):last-child { - border-radius: 0 12px 12px 0; -} - -popover .linked > button:not(.radio):only-child { - border-radius: 12px; -} - -popover.menu button, -popover button.model { - min-height: 32px; - padding: 0 8px; -} - -popover modelbutton { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - min-height: 22px; - min-width: 56px; - padding: 3px 9px; - color: #fbf1c7; - font: initial; - border-radius: 12px; -} - -popover modelbutton:hover { - transition: none; - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; -} - -popover modelbutton:hover accelerator { - color: #7daea3; -} - -popover modelbutton:hover accelerator:disabled { - color: rgba(251, 241, 199, 0.5); -} - -popover modelbutton:focus:not(:hover) { - transition: none; - box-shadow: none; - outline: none; -} - -popover modelbutton:disabled { - color: rgba(251, 241, 199, 0.5); -} - -popover modelbutton accelerator { - color: rgba(251, 241, 199, 0.5); - margin-left: 30px; -} - -popover modelbutton accelerator:disabled { - color: rgba(251, 241, 199, 0.12); -} - -popover modelbutton arrow.left { - -gtk-icon-source: -gtk-icontheme("go-previous-symbolic"); -} - -popover modelbutton arrow.right { - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); -} - -.osd popover, popover.touch-selection, popover.magnifier { - background-color: transparent; -} - -magnifier { - background-color: #282524; -} - -/************* - * Notebooks * - *************/ -tabbar tab, tabbar tabbox > tabboxchild > 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 12px; - border: none; - outline: none; - background-clip: padding-box; - color: #fbf1c7; - font-weight: 500; - border-radius: 9px; -} - -tabbar tab:hover:not(:checked):not(:selected), notebook > header > tabs > tab:hover:not(:checked):not(:selected) { - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; - box-shadow: none; -} - -tabbar tab:disabled, notebook > header > tabs > tab:disabled { - color: rgba(29, 32, 33, 0.3); -} - -tabbar tab:active, notebook > header > tabs > tab:active { - background-color: #282524; - color: #fbf1c7; - box-shadow: none; -} - -tabbar tab:checked:not(:active), notebook > header > tabs > tab:checked:not(:active), tabbar tab:selected:not(:active), notebook > header > tabs > tab:selected:not(: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, background-color 0ms; - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; - box-shadow: none; -} - -tabbar tab:checked:not(:active):disabled, notebook > header > tabs > tab:checked:not(:active):disabled, tabbar tab:selected:not(:active):disabled, notebook > header > tabs > tab:selected:not(:active):disabled { - color: rgba(251, 241, 199, 0.5); -} - -notebook, notebook.frame { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 9px; -} - -notebook.frame frame > border { - border: none; - border-radius: 9px; -} - -notebook.frame frame > list row.activatable { - border-radius: 12px; -} - -frame > paned > notebook > header, notebook.frame > header { - background-color: rgba(251, 241, 199, 0.04); -} - -notebook > header { - border: none; - background-color: rgba(251, 241, 199, 0.04); - margin: 3px; - border-radius: 12px; -} - -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: 12px; -} - -notebook > header > tabs > tab { - 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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -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.small-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: 12px; -} - -tabbar > revealer > box { - box-shadow: none; -} - -tabbar .box { - min-height: 36px; - background-color: rgba(251, 241, 199, 0.04); - background-image: none; - padding: 0; - margin: 3px; - border-radius: 12px; - border: none; - box-shadow: none; -} - -tabbar scrolledwindow.pinned undershoot { - border: 0 solid rgba(251, 241, 199, 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 { - padding: 3px 3px 3px 0; -} - -tabbar scrolledwindow.pinned tabbox > tabboxchild { - margin: 0; -} - -tabbar scrolledwindow.pinned tabbox > background:dir(ltr) { - box-shadow: inset -1px 0 rgba(251, 241, 199, 0.12); -} - -tabbar scrolledwindow.pinned tabbox > background:dir(rtl) { - box-shadow: inset 1px 0 rgba(251, 241, 199, 0.12); -} - -tabbar scrolledwindow:not(.pinned) tabbox { - padding: 3px 0; -} - -tabbar scrolledwindow:not(.pinned) tabbox > tabboxchild { - margin: 0 -2px; -} - -tabbar scrolledwindow:not(.pinned) tabbox > tabboxchild + separator + tabboxchild { - margin-left: 0; -} - -tabbar undershoot { - transition: background 150ms ease-in-out; -} - -tabbar undershoot.left { - background: linear-gradient(to right, #282524, rgba(0, 0, 0, 0) 20px); -} - -tabbar undershoot.right { - background: linear-gradient(to left, #282524, rgba(0, 0, 0, 0) 20px); -} - -tabbar .needs-attention-left undershoot.left { - background: linear-gradient(to right, alpha(#7daea3, 0.5), alpha(#7daea3, 0.3) 1px, alpha(#7daea3, 0) 20px); -} - -tabbar .needs-attention-right undershoot.right { - background: linear-gradient(to left, alpha(#7daea3, 0.5), alpha(#7daea3, 0.3) 1px, alpha(#7daea3, 0) 20px); -} - -tabbar tabbox { - background-color: transparent; - background-image: none; - padding: 0; - margin: 0; - border: none; - box-shadow: none; -} - -tabbar tabbox > background { - background: none; -} - -tabbar tabbox > separator { - margin: 9px 0; - min-width: 1px; - background-color: rgba(29, 32, 33, 0.12); - transition: opacity 150ms ease-in-out; -} - -tabbar tabbox > separator.hidden { - opacity: 0; -} - -tabbar tabbox > tabboxchild { - padding: 0; -} - -tabbar tabbox > tabboxchild > tab { - margin: 0; -} - -tabbar tab.needs-attention { - background-image: radial-gradient(ellipse at bottom, rgba(251, 241, 199, 0.8), alpha(#7daea3, 0.4) 10%, alpha(#7daea3, 0) 30%); -} - -tabbar tab.needs-attention:hover { - background-image: image(alpha(currentColor, 0.03)), radial-gradient(ellipse at bottom, rgba(251, 241, 199, 0.8), alpha(#7daea3, 0.4) 10%, alpha(#7daea3, 0) 30%); -} - -tabbar .start-action, -tabbar .end-action { - background-color: rgba(251, 241, 199, 0.04); - background-clip: padding-box; - border-color: rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -tabbar:not(.inline) undershoot.left { - background: linear-gradient(to right, #1d2021, rgba(0, 0, 0, 0) 20px); -} - -tabbar:not(.inline) undershoot.right { - background: linear-gradient(to left, #1d2021, rgba(0, 0, 0, 0) 20px); -} - -tabbar:not(.inline) .needs-attention-left undershoot.left { - background: linear-gradient(to right, alpha(#7daea3, 0.5), alpha(#7daea3, 0.3) 1px, alpha(#7daea3, 0) 20px); -} - -tabbar:not(.inline) .needs-attention-right undershoot.right { - background: linear-gradient(to left, alpha(#7daea3, 0.5), alpha(#7daea3, 0.3) 1px, alpha(#7daea3, 0) 20px); -} - -tabbar:not(.inline) tabbox > background { - background-color: #1d2021; -} - -tabbar:not(.inline) .start-action, -tabbar:not(.inline) .end-action { - background-color: alpha(#1d2021, 0.6); - border-color: rgba(251, 241, 199, 0.12); -} - -dnd tab { - min-height: 24px; - background-color: #1d2021; - color: #fbf1c7; - 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(29, 32, 33, 0.75); - outline-offset: -1px; - margin: 24px; -} - -dnd tab.needs-attention { - background-image: radial-gradient(ellipse at bottom, rgba(251, 241, 199, 0.8), alpha(#7daea3, 0.4) 10%, alpha(#7daea3, 0) 30%); -} - -tabbar tab, -dnd tab { - padding: 6px; -} - -tabbar tab button.image-button, -dnd tab button.image-button { - padding: 0; - margin: 0; - min-width: 24px; - min-height: 24px; - border-radius: 9999px; -} - -tabbar tab button.image-button.tab-close-button, -dnd tab button.image-button.tab-close-button { - margin-right: -3px; -} - -tabview:drop(active), -tabbox:drop(active) { - box-shadow: none; -} - -/************** - * Scrollbars * - **************/ -scrollbar { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #282524; - box-shadow: none; - outline: none; -} - -scrollbar.top { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -scrollbar.bottom { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -scrollbar.left { - border-right: 1px solid rgba(251, 241, 199, 0.12); -} - -scrollbar.right { - border-left: 1px solid rgba(251, 241, 199, 0.12); -} - -scrollbar > range > trough { - border: none; - background: none; - padding: 0; - outline: none; -} - -scrollbar > range > trough > slider { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - min-width: 8px; - min-height: 8px; - border: 4px solid transparent; - border-radius: 9999px; - background-clip: padding-box; - background-color: rgba(251, 241, 199, 0.5); - box-shadow: none; - outline: none; -} - -scrollbar > range > trough > slider:hover { - background-color: rgba(251, 241, 199, 0.7); -} - -scrollbar > range > trough > slider:active { - background-color: #fbf1c7; -} - -scrollbar > range > trough > slider:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -scrollbar > range.fine-tune > trough > slider { - min-width: 4px; - min-height: 4px; -} - -scrollbar > range.fine-tune.horizontal > trough > slider { - margin: 3px 0; -} - -scrollbar > range.fine-tune.vertical > trough > slider { - margin: 0 3px; -} - -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 > slider { - min-width: 4px; - min-height: 4px; - margin: 0; - border: 1px solid rgba(40, 37, 36, 0.3); -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - min-width: 4px; - min-height: 4px; - margin: 0; - border: 1px solid rgba(40, 37, 36, 0.3); - border-radius: 9999px; - background-color: rgba(251, 241, 199, 0.5); - background-clip: padding-box; - -gtk-icon-source: none; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal > range > trough > slider { - min-width: 24px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { - min-width: 8px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical > range > trough > slider { - min-height: 24px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { - min-height: 8px; -} - -scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - background-color: rgba(36, 34, 32, 0.9); -} - -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); - padding: 3px; - border: none; - border-radius: 12px; - background-color: rgba(251, 241, 199, 0.5); -} - -switch:checked { - background-color: #7daea3; -} - -switch:disabled { - opacity: 0.5; -} - -switch > slider { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - min-width: 18px; - min-height: 18px; - border-radius: 9999px; - outline: none; - box-shadow: 0 0 0 0 transparent, 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: #1d2021; - border: none; -} - -switch:focus slider, switch:hover slider, switch:focus:hover slider { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.6), 0 3px 3px -2px transparent, 0 2px 3px -1px transparent, 0 1px 4px 0 transparent; -} - -/************************* - * Check and Radio items * - *************************/ -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(251, 241, 199, 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(251, 241, 199, 0.04); - background-color: rgba(251, 241, 199, 0.15); -} - -check:active, -radio:active { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.2); -} - -check:disabled, -radio:disabled { - background-color: rgba(251, 241, 199, 0.04); -} - -check:checked, check:indeterminate, -radio:checked, -radio:indeterminate { - color: rgba(29, 32, 33, 0.6); - background-color: #7daea3; -} - -check:checked:hover, check:indeterminate:hover, -radio:checked:hover, -radio:indeterminate:hover { - box-shadow: 0 0 0 6px rgba(125, 174, 163, 0.15); - background-color: #9cc2b9; -} - -check:checked:active, check:indeterminate:active, -radio:checked:active, -radio:indeterminate:active { - box-shadow: 0 0 0 6px rgba(125, 174, 163, 0.2); - background-color: #7daea3; -} - -check:checked:disabled, check:indeterminate:disabled, -radio:checked:disabled, -radio:indeterminate:disabled { - color: rgba(29, 32, 33, 0.6); - background-color: rgba(125, 174, 163, 0.35); -} - -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; - background-image: 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/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/checkbox-checked-symbolic@2.svg"))); -} - - -check:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/checkbox-mixed-symbolic@2.svg"))); -} - - -radio { - -gtk-icon-size: 20px; -} - - -radio:checked { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/radio-checked-symbolic@2.svg"))); -} - - -radio:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/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/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/small-checkbox-checked-symbolic@2.svg"))); -} - - -popover.menu check:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/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/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/small-radio-checked-symbolic@2.svg"))); -} - - -popover.menu radio:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/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: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -checkbutton.selection-mode { - border-radius: 9999px; -} - -checkbutton.selection-mode check, -checkbutton.selection-mode radio { - padding: 6px; - border-radius: 9999px; -} - -checkbutton.selection-mode check:checked, checkbutton.selection-mode check:indeterminate, -checkbutton.selection-mode radio:checked, -checkbutton.selection-mode radio:indeterminate { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -checkbutton.selection-mode label:dir(ltr) { - margin-right: 6px; -} - -checkbutton.selection-mode label:dir(rtl) { - margin-left: 6px; -} - -/************ - * 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(251, 241, 199, 0.3); -} - -scale > trough:disabled { - background-color: rgba(251, 241, 199, 0.12); -} - -scale > trough > highlight { - transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); - background-image: image(#7daea3); -} - -scale > trough > highlight:disabled { - background-color: #1d2021; - background-image: image(rgba(251, 241, 199, 0.32)); -} - -scale > trough > fill { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.3); -} - -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: #7daea3; - background-color: #282524; - box-shadow: inset 0 0 0 2px #7daea3; -} - -scale > trough > slider:hover { - box-shadow: inset 0 0 0 2px #7daea3, 0 0 0 8px rgba(251, 241, 199, 0.12); -} - -scale > trough > slider:active { - box-shadow: inset 0 0 0 4px #7daea3, 0 0 0 8px rgba(251, 241, 199, 0.12); -} - -scale > trough > slider:disabled { - box-shadow: inset 0 0 0 2px rgba(251, 241, 199, 0.32); -} - -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(251, 241, 199, 0.7); -} - -scale indicator { - background-color: rgba(251, 241, 199, 0.3); - color: transparent; -} - -scale.marks-before:not(.marks-after) > trough > slider, scale.marks-after:not(.marks-before) > trough > slider { - transform: rotate(45deg); - border-bottom-right-radius: 0; -} - -scale.horizontal indicator { - min-height: 8px; - min-width: 1px; -} - -scale.vertical indicator { - min-height: 1px; - min-width: 8px; -} - -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(251, 241, 199, 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: 12px; - background-color: rgba(251, 241, 199, 0.12); -} - -progressbar progress { - border-radius: 12px; - background-color: #7daea3; -} - -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: #7daea3; -} - -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: 12px; -} - -levelbar block.low { - background-color: #b47109; -} - -levelbar block.high, levelbar block:not(.empty) { - background-color: #7daea3; -} - -levelbar block.full { - background-color: #6c782e; -} - -levelbar block.empty { - background-color: rgba(251, 241, 199, 0.12); -} - -/**************** - * Print dialog * -*****************/ -window.dialog.print drawing { - color: #fbf1c7; - background: none; - border: none; - padding: 0; -} - -window.dialog.print drawing paper { - padding: 0; - border: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; - color: #fbf1c7; -} - -window.dialog.print .dialog-action-box { - margin: 12px; -} - -/********** - * Frames * - **********/ -frame, -.frame { - border: 1px solid rgba(251, 241, 199, 0.12); -} - -frame > list, -.frame > list { - border: none; -} - -frame.view, -.frame.view { - border-radius: 12px; -} - -frame.flat, -.frame.flat { - border-style: none; -} - -frame { - border-radius: 12px; -} - -frame > label { - margin: 4px; -} - -frame.flat > border, statusbar frame > border { - border: none; -} - -actionbar { - box-shadow: none; -} - -actionbar > revealer > box { - padding: 6px; - border-spacing: 6px; - box-shadow: none; - background-color: #282524; - background-clip: border-box; - border: none; - color: #fbf1c7; -} - -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; -} - -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; -} - -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; -} - -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; -} - -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; -} - -junction { - border: none; - background-image: none; -} - -separator { - min-width: 1px; - min-height: 1px; - background-color: transparent; -} - -stacksidebar + separator.vertical, -stacksidebar separator.horizontal, button.font separator, button.file separator, separator.spacer, separator.sidebar { - min-width: 0; - min-height: 0; - background-color: transparent; - background-image: none; -} - -/********* - * Lists * - *********/ -list.content, -list.boxed-list { - border-radius: 12px; - box-shadow: none; - border: none; - background-color: transparent; -} - -list.content > row, -list.boxed-list > row { - border: none; - border-radius: 3px; - background-color: rgba(251, 241, 199, 0.04); -} - -list.content > row:hover, -list.boxed-list > row:hover, list.content > row.has-open-popup, -list.boxed-list > row.has-open-popup, list.content > row:focus, -list.boxed-list > row:focus { - background-color: rgba(251, 241, 199, 0.04); -} - -list.content > row:active, -list.boxed-list > row:active { - background-color: alpha(currentColor, 0.12); -} - -list.content > row:not(:first-child), -list.boxed-list > row:not(:first-child) { - margin-top: 3px; -} - -list.content > row:first-child, -list.boxed-list > row:first-child { - border-radius: 12px 12px 3px 3px; -} - -list.content > row:last-child, -list.boxed-list > row:last-child { - border-radius: 3px 3px 12px 12px; -} - -list.content > row:only-child, -list.boxed-list > row:only-child { - border-radius: 12px; -} - -listview, -list { - border-color: rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.04); - 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(251, 241, 199, 0.12); -} - -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(251, 241, 199, 0.12); -} - -leaflet scrolledwindow listview, leaflet scrolledwindow list { - background-color: transparent; -} - -list.frame { - border-radius: 12px; -} - -listview.view { - color: #fbf1c7; - background-color: transparent; -} - -popover.menu listview.view { - padding: 0; -} - -popover.menu listview.view > row { - margin-left: 0; - margin-right: 0; - border-radius: 12px; -} - -row { - color: rgba(251, 241, 199, 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: #fbf1c7; - 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: #fbf1c7; - 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: #fbf1c7; - 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: rgba(29, 32, 33, 0.87); -} - -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: #fbf1c7; -} - -row:selected button image, -row:selected button label { - color: inherit; -} - -row:selected:disabled image, -row:selected:disabled label { - color: rgba(251, 241, 199, 0.5); -} - -.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 { - padding: 0; - font-weight: bold; - color: #fbf1c7; -} - -row > box.header > box.title > .subtitle { - padding: 2px 0; - font-weight: normal; - color: rgba(251, 241, 199, 0.7); -} - -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 .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.monospace text { - font-family: monospace; -} - -row.entry.error text > selection:focus-within { - background-color: alpha(#c14a4a, 0.2); -} - -row.entry.error text > cursor-handle > contents { - background-color: currentColor; -} - -row.entry.warning text > selection:focus-within { - background-color: alpha(#b47109, 0.2); -} - -row.entry.warning text > cursor-handle > contents { - background-color: currentColor; -} - -row.entry.success text > selection:focus-within { - background-color: alpha(#6c782e, 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; -} - -row.expander { - background: none; - padding: 0px; -} - -row.expander > box > list { - background: none; - color: inherit; -} - -row.expander list.nested { - color: inherit; - background-color: transparent; -} - -row.expander list.nested > row { - background-color: transparent; - border: none; - background-image: none; - transition: none; - animation: none; -} - -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: #7daea3; -} - -.osd row.expander:checked image.expander-row-arrow:not(:disabled) { - color: inherit; -} - -list.content > row.expander row.header, -list.boxed-list > row.expander row.header { - background-color: transparent; - border: none; - box-shadow: none; -} - -list.content > row.expander, -list.boxed-list > row.expander { - border: none; -} - -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(251, 241, 199, 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 #7daea3; -} - -columnview row:not(:selected) cell editablelabel.editing text selection { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -/********************* - * App Notifications * - *********************/ -.app-notification { - margin: 6px; - border-spacing: 0; - padding: 0; - border: none; - background-image: none; -} - -.app-notification button.text-button:not(:disabled) { - color: #7daea3; -} - -.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(251, 241, 199, 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: #fbf1c7; -} - -expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -expander:disabled { - color: rgba(251, 241, 199, 0.32); -} - -expander-widget > box > title { - border-radius: 12px; -} - -expander-widget > box > title:hover > expander { - color: rgba(251, 241, 199, 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(251, 241, 199, 0.12); - border-radius: 12px; - color: #fbf1c7; -} - -calendar:disabled { - color: rgba(251, 241, 199, 0.5); -} - -calendar:selected { - border-radius: 12px; -} - -calendar > header { - padding: 3px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -calendar > header > button { - min-height: 24px; -} - -calendar > grid { - margin: 3px; -} - -calendar > grid > label { - border-radius: 12px; - 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: #242220; -} - -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; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; - color: #fbf1c7; -} - -window.dialog.message .titlebar:backdrop { - background-color: #242220; - color: rgba(251, 241, 199, 0.7); -} - -window.dialog.message .dialog-action-area { - border-top: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -window.dialog.message .dialog-action-area > button.suggested-action:not(:disabled) { - color: #45707a; -} - -window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled) { - color: #c14a4a; -} - -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: 12px; -} - -/******************** - * AdwMessageDialog * - ********************/ -window.messagedialog { - background-color: #242220; - color: #fbf1c7; -} - -window.messagedialog .message-area { - padding: 24px 30px; - border-spacing: 10px; -} - -window.messagedialog .response-area > box > button.suggested { - color: #7daea3; -} - -window.messagedialog .response-area > box > button.destructive { - color: #c14a4a; -} - -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; -} - -window.messagedialog.csd:not(.solid-csd) .response-area > box.vertical > button:last-child { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; - margin-bottom: 0; -} - -/*********** - * Sidebar * - ***********/ -.sidebar { - border: none; -} - -.sidebar listview.view, -.sidebar list { - background-color: transparent; - color: inherit; -} - -leaflet.unfolded > box > stacksidebar.sidebar { - border: none; -} - -stacksidebar list { - padding: 6px; - background-color: transparent; -} - -stacksidebar row { - min-height: 24px; - padding: 6px; - border-radius: 6px; -} - -stacksidebar row:selected { - font-weight: 500; - background-color: rgba(251, 241, 199, 0.04); -} - -stacksidebar row + row { - margin-top: 3px; -} - -stacksidebar row > label { - padding-left: 6px; - padding-right: 6px; - color: inherit; -} - -separator.sidebar { - background-color: rgba(251, 241, 199, 0.12); - border-right: none; -} - -separator.sidebar.selection-mode, .selection-mode separator.sidebar { - background-color: rgba(251, 241, 199, 0.12); -} - -/********************** - * Navigation Sidebar * - **********************/ -.navigation-sidebar { - padding: 2px 4px; - border-right: none; -} - -.navigation-sidebar, .navigation-sidebar.view, .navigation-sidebar.background { - background-color: transparent; - color: inherit; -} - -.navigation-sidebar > separator { - margin: 3px 0; -} - -.navigation-sidebar > row { - min-height: 24px; - padding: 0 6px 0 6px; - margin: 1px; - border-radius: 9px; -} - -.navigation-sidebar > row:hover, .navigation-sidebar > row:focus-visible:focus-within { - background-color: alpha(currentColor, 0.08); -} - -.navigation-sidebar > row:active { - background-color: alpha(currentColor, 0.12); -} - -.navigation-sidebar > row:selected { - background-color: alpha(currentColor, 0.08); - box-shadow: none; -} - -.navigation-sidebar > row:selected label, -.navigation-sidebar > row:selected image { - color: #7daea3; - font-weight: 700; -} - -.navigation-sidebar > row:selected:hover { - background-color: alpha(currentColor, 0.08); -} - -.navigation-sidebar > row:selected:focus-visible:focus-within { - outline: none; - background-color: alpha(currentColor, 0.08); -} - -.navigation-sidebar > row:selected:focus-visible:focus-within:hover { - background-color: alpha(currentColor, 0.16); -} - -.navigation-sidebar > row:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.navigation-sidebar > row:not(:first-child) { - margin-top: 3px; -} - -/**************** - * File chooser * - ****************/ -filechooser paned > separator { - background: rgba(251, 241, 199, 0.12); -} - -filechooser paned > box #pathbarbox.view, -filechooser paned > box stack.view, -filechooser paned > box columnview.view, -filechooser paned > box gridview.view { - background-color: transparent; -} - -filechooser .dialog-action-box { - border: none; -} - -filechooser #pathbarbox { - border: none; - background-color: transparent; -} - -filechooser stack.view frame > border { - border: none; -} - -filechooserbutton > button > box { - border-spacing: 6px; -} - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; -} - -placessidebar { - background-color: transparent; -} - -placessidebar > viewport.frame { - border-style: none; -} - -placessidebar list.navigation-sidebar > row image.sidebar-icon { - color: inherit; -} - -placessidebar list.navigation-sidebar > row image.sidebar-icon:dir(ltr) { - padding-right: 8px; -} - -placessidebar list.navigation-sidebar > row image.sidebar-icon:dir(rtl) { - padding-left: 8px; -} - -placessidebar list.navigation-sidebar > row label.sidebar-label { - color: inherit; -} - -placessidebar list.navigation-sidebar > row label.sidebar-label:dir(ltr) { - padding-right: 2px; -} - -placessidebar list.navigation-sidebar > row label.sidebar-label:dir(rtl) { - padding-left: 2px; -} - -placessidebar list.navigation-sidebar > row.sidebar-placeholder-row { - background-color: alpha(currentColor, 0.08); -} - -placessidebar list.navigation-sidebar > row.sidebar-new-bookmark-row { - color: #7daea3; -} - -placessidebar list.navigation-sidebar > row.sidebar-new-bookmark-row image.sidebar-icon { - color: #7daea3; -} - -placessidebar list.navigation-sidebar > 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(#423f3e); - background-size: 1px 1px; - background-clip: content-box; - box-shadow: none; -} - -paned > separator.wide { - min-width: 6px; - min-height: 6px; - background-color: #1d2021; - background-image: image(#423f3e), image(#423f3e); - 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: 12px; -} - -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(251, 241, 199, 0.12); - box-shadow: none; -} - -infobar.info > revealer > box, infobar.info:hover > revealer > box, infobar.info:backdrop > revealer > box { - background-color: #282524; - color: #fbf1c7; -} - -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: #7daea3; -} - -infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box { - background-color: transparent; - color: #fbf1c7; - border-radius: 9px; - border: none; -} - -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: #fbf1c7; -} - -infobar.action > revealer > box *:link, infobar.action:backdrop > revealer > box *:link, infobar.question > revealer > box *:link, infobar.question:backdrop > revealer > box *:link { - color: #fbf1c7; -} - -infobar.action:hover > revealer > box, infobar.question:hover > revealer > box { - background-color: rgba(251, 241, 199, 0.04); -} - -infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box { - background-color: #b47109; - color: #fbf1c7; -} - -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: #fbf1c7; -} - -infobar.warning > revealer > box *:link, infobar.warning:backdrop > revealer > box *:link { - color: #fbf1c7; -} - -infobar.warning:hover > revealer > box { - background-color: #9c6208; -} - -infobar.error > revealer > box, infobar.error:backdrop > revealer > box { - background-color: #c14a4a; - color: #fbf1c7; -} - -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: #fbf1c7; -} - -infobar.error > revealer > box *:link, infobar.error:backdrop > revealer > box *:link { - color: #fbf1c7; -} - -infobar.error:hover > revealer > box { - background-color: #b43e3e; -} - -/************ - * Tooltips * - ************/ -tooltip { - padding: 6px 12px; - box-shadow: none; - border: none; -} - -tooltip.background { - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; - 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: 12px; - margin: 2px 6px 8px 6px; -} - -tooltip > box { - border-spacing: 6px; -} - -/***************** - * Color Chooser * - *****************/ -colorswatch.top { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -colorswatch.top overlay { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -colorswatch.bottom { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.bottom overlay { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.dark { - color: #fbf1c7; -} - -colorswatch.light { - color: rgba(29, 32, 33, 0.87); -} - -colorchooser colorswatch:hover { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - box-shadow: 0 0 0 2px #7daea3; -} - -colorswatch#add-color-button { - border-radius: 12px 0 0 12px; - color: #fbf1c7; -} - -colorswatch#add-color-button:only-child { - border-radius: 12px; -} - -colorswatch#add-color-button overlay { - background-color: rgba(251, 241, 199, 0.04); -} - -colorswatch#add-color-button overlay:hover { - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none; -} - -colorswatch#add-color-button overlay:active { - background-color: rgba(251, 241, 199, 0.3); -} - -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.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.17); -} - -colorchooser .popover.osd { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - 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(251, 241, 199, 0.1); - background-color: #242220; -} - -colorchooser .popover.osd:backdrop { - box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.2), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(251, 241, 199, 0.1); -} - -/******** - * Misc * - ********/ -.content-view { - background-color: #1d2021; -} - -/********************** - * Window Decorations * - **********************/ -window { - border: none; -} - -window.csd { - border-radius: 12px; - outline: none; - margin: 0; - transition: 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), inset 0 1px rgba(251, 241, 199, 0.1), 0 0 36px transparent; -} - -window.csd:backdrop { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - 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(251, 241, 199, 0.1), 0 0 36px transparent; -} - -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; - transition: none; -} - -window.csd.maximized, window.csd.fullscreen { - box-shadow: none; - outline: none; -} - -window.solid-csd { - margin: 0; - padding: 2px; - border-radius: 0; - background-color: #1d2021; - border: 1px solid #423f3e; -} - -window.solid-csd:backdrop { - background-color: #1d2021; -} - -window.ssd { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -windowcontrols button:not(.suggested-action):not(.destructive-action) { - min-height: 22px; - min-width: 22px; - padding: 0; - margin: 0 2px; -} - -windowcontrols button.minimize:not(.suggested-action):not(.destructive-action), windowcontrols button.maximize:not(.suggested-action):not(.destructive-action), windowcontrols button.close:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); - background-color: alpha(currentColor, 0.1); -} - -windowcontrols button.minimize:not(.suggested-action):not(.destructive-action) image, windowcontrols button.maximize:not(.suggested-action):not(.destructive-action) image, windowcontrols button.close:not(.suggested-action):not(.destructive-action) image { - padding: 0; - background: none; - box-shadow: none; -} - -windowcontrols button.minimize:hover:not(.suggested-action):not(.destructive-action), windowcontrols button.maximize:hover:not(.suggested-action):not(.destructive-action), windowcontrols button.close:hover:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; - background-color: alpha(currentColor, 0.15); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px rgba(251, 241, 199, 0.1); -} - -windowcontrols button.minimize:active:not(.suggested-action):not(.destructive-action), windowcontrols button.maximize:active:not(.suggested-action):not(.destructive-action), windowcontrols button.close:active:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; - background-color: alpha(currentColor, 0.2); -} - -windowcontrols button.minimize:backdrop:not(.suggested-action):not(.destructive-action), windowcontrols button.maximize:backdrop:not(.suggested-action):not(.destructive-action), windowcontrols button.close:backdrop:not(.suggested-action):not(.destructive-action) { - opacity: 0.65; -} - -windowcontrols { - border-spacing: 6px; -} - -windowcontrols:not(.empty).start:dir(ltr), windowcontrols:not(.empty).end:dir(rtl) { - margin-right: 4px; - margin-left: 4px; -} - -windowcontrols:not(.empty).start:dir(rtl), windowcontrols:not(.empty).end:dir(ltr) { - margin-left: 4px; - margin-right: 4px; -} - - -.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, .link selection, calendar > grid > label.today { - color: #7daea3; - background-color: rgba(125, 174, 163, 0.2); -} - -textview text selection:focus, textview text selection, label > selection, -entry > text > selection, spinbutton > text > selection, -entry headerbar popover.background entry > text > selection, -headerbar popover.background entry entry > text > selection, calendar > grid > label.today:selected { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -.monospace { - font-family: monospace; -} - -/********************** - * Touch Copy & Paste * - **********************/ -cursor-handle { - color: #7daea3; - -gtk-icon-source: -gtk-recolor(url("assets/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(251, 241, 199, 0.12); - border-radius: 13px; - box-shadow: inset 0 -2px rgba(251, 241, 199, 0.12); - background-color: #242220; - color: #fbf1c7; - font-size: smaller; -} - -:not(decoration):not(window):drop(active) { - caret-color: #7daea3; -} - -stackswitcher { - min-height: 0; - padding: 0; - border-radius: 15px; - background-color: rgba(251, 241, 199, 0.04); - border: none; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action) { - margin: 0; - border-radius: 9999px; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action).text-button { - min-width: 100px; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action):not(:hover):not(:active):not(:checked) { - background-color: transparent; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action):focus:not(:hover):not(:checked) { - box-shadow: none; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action):checked { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action):checked:hover { - box-shadow: none; - background-color: #fefdf7; -} - -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(251, 241, 199, 0.12); - background: none; -} - -.emoji-searchbar entry text { - background: none; - box-shadow: none; -} - -.emoji-toolbar { - padding: 0; - border-spacing: 3px; - border-top: 1px solid rgba(251, 241, 199, 0.12); - background: none; -} - -button.emoji-section { - margin: 0; - padding: 6px; - border-radius: 12px; -} - -button.emoji-section:checked { - color: #7daea3; -} - -popover.emoji-picker emoji { - font-size: x-large; - padding: 6px; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - border-radius: 9px; -} - -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: #fbf1c7; -} - -popover.entry-completion > contents { - padding: 0; -} - -.nautilus-window.view { - background-color: #1d2021; -} - -.nautilus-window .sidebar-pane { - background-color: #1d2021; - color: #fbf1c7; -} - -.nautilus-window .sidebar-pane:backdrop { - background-color: #1d2021; - transition: none; -} - -.nautilus-window placesview label { - color: rgba(251, 241, 199, 0.7); -} - -.nautilus-window flap > separator { - background-color: transparent; -} - -.nautilus-window .nautilus-grid-view .view, -.nautilus-window .nautilus-list-view .view { - background-color: transparent; -} - -.nautilus-window .nautilus-grid-view gridview.view { - margin: 6px; - padding: 6px; -} - -.nautilus-window tabbar .box { - background-color: transparent; - box-shadow: none; - padding: 0; -} - -.nautilus-window tabbar .box:backdrop { - background-color: transparent; - box-shadow: none; -} - -.nautilus-window tabbox, .nautilus-window tabbox:backdrop { - transition: none; - background-color: transparent; -} - -.nautilus-window tabbox > tabboxchild > tab { - color: rgba(251, 241, 199, 0.7); -} - -.nautilus-window tabbox > tabboxchild > tab:hover { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; -} - -.nautilus-window tabbox > tabboxchild > tab:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.nautilus-window tabbox > tabboxchild > tab:checked, .nautilus-window tabbox > tabboxchild > tab:selected { - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; - box-shadow: none; -} - -.nautilus-window tabbox > tabboxchild > tab:checked:disabled, .nautilus-window tabbox > tabboxchild > tab:selected:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.nautilus-window tabbox > tabboxchild > tab button.tab-close-button { - color: #fbf1c7; -} - -.nautilus-window tabbox > tabboxchild > tab button.tab-close-button:hover, .nautilus-window tabbox > tabboxchild > tab button.tab-close-button:active { - color: #fbf1c7; -} - -.nautilus-window tabbox > tabboxchild > tab button.tab-close-button:disabled { - color: #fbf1c7; -} - -.nautilus-window .floating-bar { - min-height: 32px; - padding: 0; - margin: 6px; - border-style: none; - border-radius: 9px; - background-color: #1d2021; - color: #7daea3; - 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: rgba(29, 32, 33, 0.87); -} - -.nautilus-window banner > revealer > widget { - color: #fbf1c7; - background-color: rgba(40, 37, 36, 0.5); - border-radius: 9px; - margin: 9px; -} - -.nautilus-window banner > revealer > widget:hover { - background-color: #282524; - border-radius: 9px; - margin: 9px; -} - -.nautilus-window banner > revealer > widget button { - color: #fbf1c7; - background-color: rgba(125, 174, 163, 0.3); -} - -.nautilus-window banner > revealer > widget button:hover { - background-color: rgba(125, 174, 163, 0.6); -} - -#NautilusQueryEditor > menubutton > button.image-button { - min-width: 24px; - min-height: 24px; - padding: 3px; - margin-right: -5px; -} - -#NautilusQueryEditor > menubutton > button.image-button:checked image { - color: rgba(29, 32, 33, 0.87); -} - -#NautilusQueryEditor > text, -#NautilusQueryEditor > box, -#NautilusQueryEditor > menubutton { - margin: 3px 0; -} - -#NautilusQueryEditorTag { - background-color: rgba(251, 241, 199, 0.12); -} - -#NautilusQueryEditorTag > button.image-button { - margin: 0; - padding: 0; -} - -#NautilusPathBar { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - margin: 6px 0; -} - -#NautilusPathButton { - margin: 0 3px; - border-radius: 12px; -} - -#NautilusPathButton.current-dir { - color: #7daea3; -} - -#NautilusPathButton.current-dir:hover, #NautilusPathButton.current-dir:active { - background: none; - box-shadow: none; -} - -#NautilusPathButton:first-child { - margin-left: 0; -} - -#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.card { - background-color: #282524; -} - -.small .display-container.card { - border-radius: 0; - box-shadow: none; - border-width: 0 0 1px 0; -} - -.display-container .history-view { - background-color: transparent; -} - -.display-container #displayitem { - padding: 0 12px 8px 0; - font-size: 1.4em; - border-top: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.1); -} - -leaflet button.number-button:hover { - background-color: rgba(251, 241, 199, 0.2); -} - -leaflet button.number-button:active { - background-color: rgba(251, 241, 199, 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: #7daea3; -} - -label.secondary-label { - color: rgba(251, 241, 199, 0.5); -} - -toastoverlay datechooser.view, -toastoverlay agenda-view.view, -toastoverlay agenda-view.view list, -toastoverlay stack.view { - background-color: transparent; -} - -calendar-view { - font-size: 10pt; -} - -calendar-view:selected { - color: #7daea3; - font-weight: bold; -} - -calendar-view.header, -label.header { - font-size: 10pt; - font-weight: bold; - color: rgba(251, 241, 199, 0.5); -} - -calendar-view.current, -weekgrid.current { - background-color: alpha(#7daea3, 0.3); -} - -popover.events { - background-color: #242220; - padding: 0; -} - -popover.events box { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -popover.events list { - background-color: #282524; - border-radius: 12px; -} - -popover.events scrolledwindow { - border-width: 0; -} - -popover.events button { - border-radius: 12px; - 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: 12px; -} - -event.timed widget.edge { - border-radius: 6px; - min-width: 5px; -} - -event.slanted-start, event.slanted-end:dir(rtl) { - padding-left: 16px; - border-radius: 0 6px 6px 0; -} - -event.slanted-end, event.slanted-start:dir(rtl) { - padding-right: 16px; - border-radius: 6px 0 0 6px; -} - -event:not(.timed).color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); -} - -event.timed, event:not(.timed).color-light { - 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: #282524; -} - -.calendar-list { - background-color: transparent; -} - -.calendar-list > list { - border-radius: 4px; -} - -menubutton.flat.sources-button { - margin-top: 0; - margin-bottom: 0; - border-radius: 0; - border-top-style: none; - border-bottom-style: none; -} - -menubutton.flat.sources-button:hover:not(:backdrop) { - background-image: none; - text-shadow: none; -} - -menubutton.flat.sources-button > button { - border-radius: 0 0 12px 12px; -} - -.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 { - padding: 6px; -} - -datechooser .current-week { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; - border-radius: 12px; -} - -datechooser navigator { - margin-right: 6px; - margin-left: 6px; - margin-bottom: 6px; -} - -datechooser navigator label { - font-weight: bold; -} - -datechooser navigator button.flat, -datechooser navigator button.image-button { - min-height: 36px; - min-width: 36px; - padding: 0; -} - -datechooser .weeknum, -datechooser .weekday { - color: rgba(251, 241, 199, 0.5); - 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: #fbf1c7; - border-radius: 50%; - min-height: 3px; - min-width: 3px; -} - -datechooser button.day:selected, datechooser button.day.today:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - font-weight: bold; -} - -datechooser button.day:selected dot, datechooser button.day.today:selected dot { - background-color: rgba(29, 32, 33, 0.87); -} - -datechooser button.day.today { - color: #7daea3; -} - -datechooser button.day.today dot { - background-color: #7daea3; -} - -datechooser button.day.other-month:not(:hover), datechooser button.day.other-month:backdrop { - color: rgba(251, 241, 199, 0.32); -} - -datechooser button.day.other-month:not(:hover) dot, datechooser button.day.other-month:backdrop dot { - background-color: rgba(251, 241, 199, 0.32); -} - -datechooser button.day.other-month:hover:not(:backdrop) { - color: rgba(251, 241, 199, 0.5); -} - -datechooser button.day.other-month:hover:not(:backdrop) dot { - background-color: rgba(251, 241, 199, 0.5); -} - -.week-header { - padding: 0; -} - -.week-header > box:first-child { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -.week-header .week-number { - font-size: 16pt; - font-weight: bold; - padding: 12px 12px 18px 12px; - color: rgba(251, 241, 199, 0.3); -} - -.week-header.week-temperature { - font-size: 10pt; - font-weight: bold; - color: rgba(251, 241, 199, 0.5); -} - -.week-header.lines { - color: rgba(251, 241, 199, 0.12); -} - -weekhourbar > label { - font-size: 10pt; - padding: 4px 6px; -} - -.week-view .lines { - color: rgba(251, 241, 199, 0.12); -} - -weekgrid > widget.now-strip { - background-color: alpha(#7daea3, 0.8); - margin: 0 0 0 1px; - min-height: 3px; -} - -weekgrid:selected, weekgrid.dnd, -.week-header:selected, -.week-header.dnd { - background-color: alpha(#7daea3, 0.25); -} - -monthcell { - border: solid 1px rgba(251, 241, 199, 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: #282524; - transition: background-color 200ms; - color: #fbf1c7; -} - -monthcell:selected { - background-color: alpha(#7daea3, 0.1); -} - -monthcell:selected:hover { - background-color: alpha(#7daea3, 0.2); -} - -monthcell:selected label.day-label { - font-weight: bold; -} - -monthcell:nth-child(7n + 1) { - border-left-width: 0; -} - -monthcell.today { - background-color: alpha(#7daea3, 0.2); -} - -monthcell.today:hover { - background-color: alpha(#7daea3, 0.3); - color: #7daea3; -} - -monthcell.today:selected { - background-color: alpha(#7daea3, 0.25); -} - -monthcell.today:selected:hover { - background-color: alpha(#7daea3, 0.35); -} - -monthcell label { - color: #fbf1c7; - font-size: 0.9rem; -} - -monthcell label.day-label { - font-size: 1rem; -} - -monthcell.out-of-month { - background-color: rgba(251, 241, 199, 0.04); -} - -monthcell.out-of-month label { - color: rgba(251, 241, 199, 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: 12px; - padding: 6px; -} - -.notes-section box > textview > text { - background: none; -} - -agenda-view list.background > row { - padding: 2px 12px; -} - -agenda-view list.background > label { - padding: 6px 12px; -} - -label.no-events { - font-style: italic; -} - -searchbutton > popover > arrow { - background: none; - border: none; -} - -menubutton stack > box { - border-spacing: 6px; -} - -#TweakPreferencesPage label.dim-label { - color: rgba(251, 241, 199, 0.32); -} - -#TweakPreferencesPage label.dim-label { - color: rgba(251, 241, 199, 0.32); -} - -.tweak-titlebar-left { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - border-top-left-radius: 12px; -} - -.tweak-titlebar-left:backdrop { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - border-top-left-radius: 12px; -} - -.sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow .dim-label, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow row label.subtitle, row .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow label.subtitle, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow row.expander image.expander-row-arrow, row.expander .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow image.expander-row-arrow { - color: rgba(29, 32, 33, 0.38); -} - -.details-page { - margin: 24px 0px; -} - -.installed-overlay-box { - font-size: smaller; - background-color: #7daea3; - border-radius: 0; - color: rgba(29, 32, 33, 0.87); - 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; -} - -carousel.card { - border: none; - background-color: rgba(251, 241, 199, 0.04); -} - -.smaller { - font-size: smaller; -} - -.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%; -} - -gs-summary-tile image.loading-icon { - background-color: rgba(251, 241, 199, 0.12); - border-radius: 12px; -} - -.review-row > box { - margin: 12px; - border-spacing: 3px; -} - -.review-row textview { - background: none; -} - -.review-row .edit-icon { - min-width: 24px; - min-height: 24px; - padding: 6px; -} - -.review-textbox { - padding: 6px; -} - -.origin-rounded-box { - background-color: rgba(251, 241, 199, 0.12); - border-radius: 9999px; - padding: 4px; -} - -.origin-beta { - color: #b47109; -} - -.origin-button > button { - padding: 3px 9px; -} - -clamp.medium .category-tile:not(.category-tile-iconless) { - font-size: large; -} - -clamp.large .category-tile:not(.category-tile-iconless) { - font-size: larger; -} - -flowboxchild.card:not(.category-tile) { - padding: 0; - box-shadow: none; - border: none; - background-color: transparent; - background-image: none; -} - -.category-tile.card { - padding: 21px; - border: none; - border-radius: 12px; - min-width: 140px; - font-weight: 900; - font-size: larger; -} - -.category-tile.card:not(.category-tile-iconless), .category-tile.card:not(.category-tile-iconless):active { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - animation: none; -} - -.category-tile.card.category-tile-iconless { - padding: 9px 15px; - min-width: 130px; - font-size: 105%; - font-weight: normal; -} - -.category-tile.card.category-create { - background: linear-gradient(180deg, #ce8cd7 0%, #2861c6 100%); - color: white; -} - -.category-tile.card.category-create:hover { - background: linear-gradient(180deg, shade(#ce8cd7, 1.07) 0%, shade(#2861c6, 1.1) 100%); - color: white; -} - -.category-tile.card.category-create:active { - background: linear-gradient(180deg, shade(#ce8cd7, 0.95) 0%, shade(#2861c6, 0.95) 100%); - color: white; -} - -.category-tile.card.category-develop { - background-color: #5e5c64; - color: white; -} - -.category-tile.card.category-develop:hover { - background-color: shade(#5e5c64, 1.2); - color: white; -} - -.category-tile.card.category-develop:active { - background-color: shade(#5e5c64, 0.95); - color: white; -} - -.category-tile.card.category-learn { - background: linear-gradient(180deg, #2ec27e 30%, #27a66c 100%); - color: white; -} - -.category-tile.card.category-learn:hover { - background: linear-gradient(180deg, shade(#2ec27e, 1.06) 30%, shade(#27a66c, 1.06) 100%); - color: white; -} - -.category-tile.card.category-learn:active { - background: linear-gradient(180deg, shade(#2ec27e, 0.95) 30%, shade(#27a66c, 0.95) 100%); - color: white; -} - -.category-tile.card.category-play { - background: linear-gradient(75deg, #f9e2a7 0%, #eb5ec3 50%, #6d53e0 100%); - color: #393484; -} - -.category-tile.card.category-play:hover { - background: linear-gradient(75deg, shade(#f9e2a7, 1.07) 0%, shade(#eb5ec3, 1.07) 50%, shade(#6d53e0, 1.07) 100%); - color: #393484; -} - -.category-tile.card.category-play:active { - background: linear-gradient(75deg, shade(#f9e2a7, 0.97) 0%, shade(#eb5ec3, 0.95) 50%, shade(#6d53e0, 1.07) 100%); - color: #393484; -} - -.category-tile.card.category-socialize { - background: linear-gradient(90deg, #ef4e9b 0%, #f77466 100%); - color: rgba(251, 241, 199, 0.7); -} - -.category-tile.card.category-socialize:hover { - background: linear-gradient(90deg, shade(#ef4e9b, 1.08) 0%, shade(#f77466, 1.08) 100%); -} - -.category-tile.card.category-socialize:active { - background: linear-gradient(90deg, shade(#ef4e9b, 0.95) 0%, shade(#f77466, 0.95) 100%); -} - -.category-tile.card.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(251, 241, 199, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 241, 199, 0.12) 1px, transparent 1px); - background-size: 10px 10px, 10px 10px; - background-position: -1px -4px, center -1px; - background-repeat: repeat; -} - -.category-tile.card.category-work:hover { - color: #1c71d8; - background-color: #fefcef; - background-image: linear-gradient(rgba(251, 241, 199, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 241, 199, 0.12) 1px, transparent 1px); -} - -.category-tile.card.category-work:active { - color: #1c71d8; - background-color: #fcf4bf; - background-image: linear-gradient(rgba(251, 241, 199, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 241, 199, 0.12) 1px, transparent 1px); - background-size: 10px 10px, 10px 10px; - background-position: -1px -4px, center -1px; - background-repeat: repeat; -} - -.featured-tile { - padding: 0; - box-shadow: none; - color: #fbf1c7; -} - -.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(251, 241, 199, 0.04); - color: #fbf1c7; - border: 1px solid rgba(251, 241, 199, 0.12); -} - -.application-details-infobar.warning { - background-color: #b47109; - color: #fbf1c7; - border: 1px solid rgba(251, 241, 199, 0.12); -} - -.card.info { - background-color: #1e2122; - color: #fbf1c7; -} - -.card.warning { - background-color: #1e2121; - color: #fbf1c7; -} - -.infobox { - border-spacing: 6px; - padding: 12px; -} - -@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, #7daea3 2px, alpha(#7daea3, 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(251, 241, 199, 0.12), rgba(251, 241, 199, 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(251, 241, 199, 0.5); - background-image: none; - background-color: rgba(251, 241, 199, 0.3); -} - -.review-histogram star-image { - color: rgba(251, 241, 199, 0.5); -} - -.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(251, 241, 199, 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; -} - -flowboxchild { - padding: 0px; -} - -star-image > image.starred { - color: #d8a657; - transition-duration: 200ms; -} - -star-image > image.starred:hover { - color: #b47109; -} - -star-image > image.non-starred { - opacity: 0.2; - transition-duration: 200ms; -} - -star-image > image.non-starred:hover { - color: #d8a657; - opacity: 0.7; -} - -.dimmer-label { - opacity: 0.25; -} - -.update-failed-details { - font-family: Monospace; - font-size: smaller; - padding: 16px; -} - -.upgrade-banner { - padding: 0px; - border-radius: 12px; - border: none; -} - -.upgrade-banner-background { - background: linear-gradient(to bottom, #6c782e, #45707a); - color: white; -} - -.upgrade-buttons #button_upgrades_install, -.upgrade-buttons #button_upgrades_install_cancel { - 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(251, 241, 199, 0.5); - 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(251, 241, 199, 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 12px 12px 0; -} - -app-context-bar > box:first-child > button.flat { - border-radius: 0; -} - -app-context-bar > box:first-child > button.flat:first-child { - border-radius: 12px 0 0 12px; -} - -app-context-bar > box > button.flat { - border-left-color: rgba(251, 241, 199, 0.12); -} - -.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: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.context-tile-lozenge.green, .context-tile-lozenge.details-rating-0 { - color: #3a4119; - background-color: rgba(108, 120, 46, 0.15); -} - -.context-tile-lozenge.blue, .context-tile-lozenge.details-rating-5 { - color: #45707a; - background-color: rgba(69, 112, 122, 0.15); -} - -.context-tile-lozenge.yellow, .context-tile-lozenge.details-rating-12 { - color: #6b4305; - background-color: rgba(180, 113, 9, 0.15); -} - -.context-tile-lozenge.details-rating-15 { - color: #c35e0a; - background-color: rgba(195, 94, 10, 0.15); -} - -.context-tile-lozenge.red, .context-tile-lozenge.details-rating-18 { - color: #8e3131; - background-color: rgba(193, 74, 74, 0.15); -} - -.eol-red { - font-weight: bold; - color: #c14a4a; -} - -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: #c14a4a; -} - -@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, #1d2021 48px, #1d2021); -} - -@define-color weather_temp_chart_fill_color rgba(180, 113, 9, 0.5); -@define-color weather_temp_chart_stroke_color #835307; -@define-color weather_thermometer_warm_color #b47109; -@define-color weather_thermometer_cold_color #45707a; -#places-label { - font-weight: bold; -} - -#temperature-label { - font-size: 32pt; - font-weight: 900; - margin-left: 9px; -} - -#conditions-grid *:backdrop { - color: rgba(251, 241, 199, 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: 12px; -} - -.forecast-card separator { - background-color: #1d2021; -} - -#daily-forecast-box > separator:last-child { - background-color: transparent; - min-width: 0; -} - -#conditions-grid, -#attributionGrid { - margin-left: 18px; - margin-right: 18px; -} - -#weather-page .small .forecast-card { - margin-left: 0; - margin-right: 0; - border-radius: 0; - border-width: 1px 0; -} - -.forecast-temperature-label { - font-weight: bold; - color: #ae7b03; -} - -WeatherThermometer { - margin-bottom: 12px; -} - -WeatherThermometer > label.high { - font-weight: bold; - color: #b47109; -} - -WeatherThermometer > label.low { - font-weight: bold; - color: #45707a; -} - -.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(251, 241, 199, 0.12); -} - -.search-view { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.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; -} - -#gnome-system-monitor.background.csd { - background-color: #1d2021; -} - -#gnome-system-monitor treeview.view { - background-color: #282524; - padding: 4px; - border-radius: 9px; -} - -.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: #7daea3; -} - -.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: #7daea3; - background-color: alpha(#45707a, 0.25); -} - -.naut .clock-time, -.astro .clock-time { - color: #e78a4e; - background-color: alpha(#c35e0a, 0.25); -} - -.civil .clock-time, -.day .clock-time { - color: #d8a657; - background: alpha(#b47109, 0.25); -} - -headerbar splitbutton notification button { - margin: 0; - min-height: 24px; - min-width: 24px; - padding: 0; -} - -popover.background.global-search > arrow, -popover.background.global-search > contents { - padding: 0; -} - -panelframeswitcher { - padding: 3px; -} - -.frameheader.header { - min-height: 24px; - background-color: #282524; -} - -.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(251, 241, 199, 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: 12px; - 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(251, 241, 199, 0.04); -} - -.style-variant button.toggle:active > stylevariantpreview > .wallpaper { - outline-color: rgba(251, 241, 199, 0.3); -} - -.style-variant button.toggle:checked > stylevariantpreview > .wallpaper { - outline-color: #7daea3; -} - -playlistview scrollbar.overlay-indicator.dragging, playlistview scrollbar.overlay-indicator.hovering { - background-color: transparent; -} - -playlistview queuerow picture.cover, -playlistview queuerow image.card { - border: none; -} - -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; -} - -/* Tagger */ -list.music-list { - margin: -40px 0; - background-color: transparent; -} - -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: #fbf1c7; -} - -avatar.image { - background: none; -} - -.card { - border-radius: 12px; - border: none; - background-clip: border-box; - color: rgba(251, 241, 199, 0.7); - box-shadow: none; - outline: none; - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; -} - -.card.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 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.08); - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - outline: 0 solid transparent; - outline-offset: 2px; - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); -} - -.card.activatable:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -.card.activatable: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, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -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.1), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1), inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; - color: #fbf1c7; - border: none; -} - -toast:dir(ltr) { - padding-left: 12px; -} - -toast:dir(rtl) { - padding-right: 12px; -} - -toast > label { - margin: 0 6px; -} - -viewswitcher { - margin: 0; - border-spacing: 3px; -} - -viewswitcher.wide button.toggle { - border-radius: 3px; -} - -viewswitcher.wide button.toggle:first-child { - border-top-left-radius: 18px; - border-bottom-left-radius: 18px; -} - -viewswitcher.wide button.toggle:last-child { - border-top-right-radius: 18px; - border-bottom-right-radius: 18px; -} - -viewswitcher.narrow button.toggle { - border-radius: 0 0 3px 3px; - margin: 0; -} - -viewswitcher.narrow button.toggle:first-child { - border-bottom-left-radius: 12px; -} - -viewswitcher.narrow button.toggle:last-child { - border-bottom-right-radius: 12px; -} - -viewswitcher button.toggle { - font-weight: bold; - padding: 0; -} - -viewswitcher button.toggle:focus:not(:hover):not(:active) { - box-shadow: none; - outline: none; -} - -viewswitcher button.toggle > stack > box.narrow { - font-size: 0.75rem; - padding-top: 8px; - padding-bottom: 4px; - border-spacing: 3px; -} - -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; -} - -viewswitcherbar actionbar > revealer > box { - padding: 0; -} - -viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle { - border-radius: 12px; - margin: 3px 0; -} - -viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle > stack > box.narrow { - padding-top: 5px; - padding-bottom: 1px; - border-spacing: 0; -} - -viewswitchertitle { - margin-top: 0; - margin-bottom: 0; -} - -viewswitchertitle viewswitcher { - margin-left: 12px; - margin-right: 12px; -} - -viewswitchertitle viewswitcher.narrow { - margin-top: 0; - margin-bottom: 0; -} - -viewswitchertitle viewswitcher.narrow button.toggle > stack > box.narrow { - padding-top: 0; - padding-bottom: 0; - border-spacing: 0; -} - -viewswitchertitle viewswitcher.wide { - margin-top: 0; - margin-bottom: 0; -} - -viewswitchertitle windowtitle { - margin-top: 0; - margin-bottom: 0; -} - -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: #fbf1c7; -} - -indicatorbin > mask { - padding: 1px; - background: black; -} - -indicatorbin.needs-attention > indicator { - background-color: #7daea3; -} - -indicatorbin.needs-attention > indicator > label { - color: rgba(29, 32, 33, 0.87); -} - -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: 12px; -} - -preferencesgroup > box button.background-preview-button.toggle:hover { - outline-color: rgba(251, 241, 199, 0.04); -} - -preferencesgroup > box button.background-preview-button.toggle:active { - outline-color: rgba(251, 241, 199, 0.3); -} - -preferencesgroup > box button.background-preview-button.toggle:checked { - outline-color: #7daea3; -} - -preferencesgroup > box .cutout-button { - background-color: #282524; -} - -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; - color: #7daea3; - border-radius: 12px; - margin-top: 3px; -} - -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; -} - -flap > dimming, -leaflet > dimming, -navigation-view > dimming, -overlay-split-view > dimming { - background-color: rgba(29, 32, 33, 0.2); - background-image: none; -} - -flap > border, -leaflet > border, -navigation-view > border, -overlay-split-view > border { - background-color: transparent; - background-image: none; -} - -flap > shadow, -leaflet > shadow, -navigation-view > shadow, -overlay-split-view > shadow { - min-width: 56px; - min-height: 56px; -} - -flap > shadow.left, -leaflet > shadow.left, -navigation-view > shadow.left, -overlay-split-view > shadow.left { - background-image: linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.7), alpha(rgba(29, 32, 33, 0.2), 0.14) 40px, alpha(rgba(29, 32, 33, 0.2), 0) 56px), linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.4), alpha(rgba(29, 32, 33, 0.2), 0.14) 7px, alpha(rgba(29, 32, 33, 0.2), 0) 24px); -} - -flap > shadow.right, -leaflet > shadow.right, -navigation-view > shadow.right, -overlay-split-view > shadow.right { - background-image: linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.7), alpha(rgba(29, 32, 33, 0.2), 0.14) 40px, alpha(rgba(29, 32, 33, 0.2), 0) 56px), linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.4), alpha(rgba(29, 32, 33, 0.2), 0.14) 7px, alpha(rgba(29, 32, 33, 0.2), 0) 24px); -} - -flap > shadow.up, -leaflet > shadow.up, -navigation-view > shadow.up, -overlay-split-view > shadow.up { - background-image: linear-gradient(to bottom, alpha(rgba(29, 32, 33, 0.2), 0.7), alpha(rgba(29, 32, 33, 0.2), 0.14) 40px, alpha(rgba(29, 32, 33, 0.2), 0) 56px), linear-gradient(to bottom, alpha(rgba(29, 32, 33, 0.2), 0.4), alpha(rgba(29, 32, 33, 0.2), 0.14) 7px, alpha(rgba(29, 32, 33, 0.2), 0) 24px); -} - -flap > shadow.down, -leaflet > shadow.down, -navigation-view > shadow.down, -overlay-split-view > shadow.down { - background-image: linear-gradient(to top, alpha(rgba(29, 32, 33, 0.2), 0.7), alpha(rgba(29, 32, 33, 0.2), 0.14) 40px, alpha(rgba(29, 32, 33, 0.2), 0) 56px), linear-gradient(to top, alpha(rgba(29, 32, 33, 0.2), 0.4), alpha(rgba(29, 32, 33, 0.2), 0.14) 7px, alpha(rgba(29, 32, 33, 0.2), 0) 24px); -} - -.sidebar-pane .sidebar > scrolledwindow, -.sidebar-pane toolbarview > scrolledwindow, .sidebar-pane, .toolbar, filechooser paned > box, placessidebar > scrolledwindow, agenda-view list.background, .tweak-titlebar-left, .tweak-titlebar-left:backdrop, leaflet.unfolded > box > scrolledwindow, leaflet.unfolded .contacts-contact-list > scrolledwindow, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow { - background-color: #141617; - color: #fbf1c7; - border-radius: none; - margin: 0; -} - -.sidebar-pane .sidebar > scrolledwindow .dim-label, -.sidebar-pane toolbarview > scrolledwindow .dim-label, .sidebar-pane .dim-label, .toolbar .dim-label, filechooser paned > box .dim-label, placessidebar > scrolledwindow .dim-label, agenda-view list.background .dim-label, .tweak-titlebar-left .dim-label, leaflet.unfolded > box > scrolledwindow .dim-label, leaflet.unfolded .contacts-contact-list > scrolledwindow .dim-label, .sidebar-pane row label.subtitle, row .sidebar-pane label.subtitle, .toolbar row label.subtitle, row .toolbar label.subtitle, filechooser paned > box row label.subtitle, row filechooser paned > box label.subtitle, placessidebar > scrolledwindow row label.subtitle, row placessidebar > scrolledwindow label.subtitle, agenda-view list.background row label.subtitle, row agenda-view list.background label.subtitle, .tweak-titlebar-left row label.subtitle, row .tweak-titlebar-left label.subtitle, leaflet.unfolded > box > scrolledwindow row label.subtitle, row leaflet.unfolded > box > scrolledwindow label.subtitle, leaflet.unfolded .contacts-contact-list > scrolledwindow row label.subtitle, row leaflet.unfolded .contacts-contact-list > scrolledwindow label.subtitle, .sidebar-pane row.expander image.expander-row-arrow, row.expander .sidebar-pane image.expander-row-arrow, .toolbar row.expander image.expander-row-arrow, row.expander .toolbar image.expander-row-arrow, filechooser paned > box row.expander image.expander-row-arrow, row.expander filechooser paned > box image.expander-row-arrow, placessidebar > scrolledwindow row.expander image.expander-row-arrow, row.expander placessidebar > scrolledwindow image.expander-row-arrow, agenda-view list.background row.expander image.expander-row-arrow, row.expander agenda-view list.background image.expander-row-arrow, .tweak-titlebar-left row.expander image.expander-row-arrow, row.expander .tweak-titlebar-left image.expander-row-arrow, leaflet.unfolded > box > scrolledwindow row.expander image.expander-row-arrow, row.expander leaflet.unfolded > box > scrolledwindow image.expander-row-arrow, leaflet.unfolded .contacts-contact-list > scrolledwindow row.expander image.expander-row-arrow, row.expander leaflet.unfolded .contacts-contact-list > scrolledwindow image.expander-row-arrow { - color: rgba(29, 32, 33, 0.38); -} - -.nautilus-window placessidebar > scrolledwindow { - background-color: #1d2021; - color: #fbf1c7; - border-radius: none; - margin: 0; -} - -.nautilus-window placessidebar > scrolledwindow .dim-label, .nautilus-window placessidebar > scrolledwindow row label.subtitle, row .nautilus-window placessidebar > scrolledwindow label.subtitle, .nautilus-window placessidebar > scrolledwindow row.expander image.expander-row-arrow, row.expander .nautilus-window placessidebar > scrolledwindow image.expander-row-arrow { - color: rgba(29, 32, 33, 0.38); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider, placessidebar > scrolledwindow > scrollbar > range > trough > slider, .nautilus-window placessidebar scrollbar > range > trough > slider, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar > range > trough > slider { - background-color: rgba(251, 241, 199, 0.5); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider:hover, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider:hover, placessidebar > scrolledwindow > scrollbar > range > trough > slider:hover, .nautilus-window placessidebar scrollbar > range > trough > slider:hover, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider:hover, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider:hover { - background-color: rgba(251, 241, 199, 0.7); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider:active, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider:active, placessidebar > scrolledwindow > scrollbar > range > trough > slider:active, .nautilus-window placessidebar scrollbar > range > trough > slider:active, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider:active, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider:active { - background-color: #fbf1c7; -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider:disabled, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider:disabled, placessidebar > scrolledwindow > scrollbar > range > trough > slider:disabled, .nautilus-window placessidebar scrollbar > range > trough > slider:disabled, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider:disabled, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - background-color: rgba(29, 32, 33, 0.38); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { - background-color: rgba(29, 32, 33, 0.3); -} - -.content-pane toolbarview > stack, -.content-pane toolbarview > box > stack.view, calendar-view { - /* background-color: if($variant == 'light', $grey-150, $grey-850); - border-radius: $corner-radius; */ - margin: 6px; -} - -.nautilus-window .nautilus-grid-view, -.nautilus-window .nautilus-list-view { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - margin: 6px; -} - -placessidebar list.navigation-sidebar, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar { - padding: 6px 0 6px 6px; - background: none; - color: rgba(251, 241, 199, 0.7); -} - -placessidebar list.navigation-sidebar > separator, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > separator, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > separator, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > separator { - background-color: transparent; -} - -placessidebar list.navigation-sidebar > row, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row { - color: rgba(29, 32, 33, 0.6); - border-radius: 9px; - color: #fbf1c7; - padding: 7px 0; -} - -placessidebar list.navigation-sidebar > row:hover, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:hover, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:hover, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:hover, placessidebar list.navigation-sidebar > row:active, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:active, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:active, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:active, placessidebar list.navigation-sidebar > row:focus, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:focus, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:focus, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:focus { - color: #fbf1c7; -} - -placessidebar list.navigation-sidebar > row:selected, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:selected, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:selected, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:selected { - font-weight: 500; - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; - /* border-left: 3px solid $primary; */ -} - -placessidebar list.navigation-sidebar > row:selected:hover, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:selected:hover, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:selected:hover, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:selected:hover, placessidebar list.navigation-sidebar > row:selected:focus, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:selected:focus, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:selected:focus, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:selected:focus { - background-color: rgba(40, 37, 36, 0.9); - color: #fbf1c7; -} - -.content-pane scrolledwindow scrollbar.top, .sidebar-pane .sidebar > scrolledwindow > scrollbar.top, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.top, filechooser paned > box scrolledwindow scrollbar.top, placessidebar > scrolledwindow > scrollbar.top, .nautilus-window placessidebar scrollbar.top, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.top, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.top, leaflet.unfolded > box > scrolledwindow > scrollbar.top, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.top, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.top { - border-bottom: none; -} - -.content-pane scrolledwindow scrollbar.bottom, .sidebar-pane .sidebar > scrolledwindow > scrollbar.bottom, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.bottom, filechooser paned > box scrolledwindow scrollbar.bottom, placessidebar > scrolledwindow > scrollbar.bottom, .nautilus-window placessidebar scrollbar.bottom, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.bottom, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.bottom, leaflet.unfolded > box > scrolledwindow > scrollbar.bottom, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.bottom, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.bottom { - border-top: none; -} - -.content-pane scrolledwindow scrollbar.left, .sidebar-pane .sidebar > scrolledwindow > scrollbar.left, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.left, filechooser paned > box scrolledwindow scrollbar.left, placessidebar > scrolledwindow > scrollbar.left, .nautilus-window placessidebar scrollbar.left, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.left, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.left, leaflet.unfolded > box > scrolledwindow > scrollbar.left, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.left, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.left { - border-right: none; -} - -.content-pane scrolledwindow scrollbar.right, .sidebar-pane .sidebar > scrolledwindow > scrollbar.right, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.right, filechooser paned > box scrolledwindow scrollbar.right, placessidebar > scrolledwindow > scrollbar.right, .nautilus-window placessidebar scrollbar.right, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.right, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.right, leaflet.unfolded > box > scrolledwindow > scrollbar.right, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.right, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.right { - border-left: none; -} - -.content-pane scrolledwindow scrollbar > range > trough > slider, .sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider, filechooser paned > box scrolledwindow scrollbar > range > trough > slider, placessidebar > scrolledwindow > scrollbar > range > trough > slider, .nautilus-window placessidebar scrollbar > range > trough > slider, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar > range > trough > slider, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar > range > trough > slider, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar > range > trough > slider { - border: 4px solid transparent; -} - -.content-pane scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering), .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), filechooser paned > box scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering), placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering), .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering), -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering), leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) { - border-color: transparent; - background-color: transparent; -} - -.content-pane scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, filechooser paned > box scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider { - border: none; - margin: 1px; -} - -.content-pane scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, filechooser paned > box scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - border: none; -} - -.content-pane scrolledwindow scrollbar.overlay-indicator.dragging, .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator.dragging, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator.dragging, filechooser paned > box scrolledwindow scrollbar.overlay-indicator.dragging, placessidebar > scrolledwindow > scrollbar.overlay-indicator.dragging, .nautilus-window placessidebar scrollbar.overlay-indicator.dragging, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator.dragging, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator.dragging, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator.dragging, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator.dragging, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.overlay-indicator.dragging, .content-pane scrolledwindow scrollbar.overlay-indicator.hovering, .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator.hovering, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator.hovering, filechooser paned > box scrolledwindow scrollbar.overlay-indicator.hovering, placessidebar > scrolledwindow > scrollbar.overlay-indicator.hovering, .nautilus-window placessidebar scrollbar.overlay-indicator.hovering, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator.hovering, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator.hovering, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator.hovering, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator.hovering, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.overlay-indicator.hovering { - background-color: transparent; -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-top > undershoot.top, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-top > undershoot.top { - border-radius: 12px 12px 0 0; - box-shadow: none; - background: linear-gradient(to bottom, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-bottom > undershoot.bottom, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-bottom > undershoot.bottom { - border-radius: 0 0 12px 12px; - box-shadow: none; - background: linear-gradient(to top, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-start:dir(ltr) > undershoot.left, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-start:dir(ltr) > undershoot.left { - border-radius: 12px 0 0 12px; - box-shadow: none; - background: linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-start:dir(rtl) > undershoot.right, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-start:dir(rtl) > undershoot.right { - border-radius: 0 12px 12px 0; - box-shadow: none; - background: linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-end:dir(ltr) > undershoot.right, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-end:dir(ltr) > undershoot.right { - border-radius: 0 12px 12px 0; - box-shadow: none; - background: linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-end:dir(rtl) > undershoot.left, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-end:dir(rtl) > undershoot.left { - border-radius: 12px 0 0 12px; - box-shadow: none; - background: linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.sidebar-pane { - color: #fbf1c7; - border-top-left-radius: 12px; -} - -.sidebar-pane .sidebar-pane { - background-color: transparent; - color: inherit; -} - -.sidebar-pane headerbar, -.sidebar-pane .navigation-sidebar, -.sidebar-pane searchbar > revealer > box { - background-color: transparent; - box-shadow: none; - border: none; -} - -.sidebar-pane .navigation-sidebar { - padding: 2px 4px; - background: none; - color: rgba(251, 241, 199, 0.7); -} - -.sidebar-pane:dir(ltr), -.sidebar-pane:dir(ltr) banner > revealer > widget, .sidebar-pane.end:dir(rtl), -.sidebar-pane.end:dir(rtl) banner > revealer > widget { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - border-right: none; -} - -.content-pane toolbarview, .content-pane toolbarview.view { - background-color: transparent; -} - -/* Middle pane in three-pane setups */ -.content-pane .sidebar-pane, -.sidebar-pane .content-pane { - background-color: transparent; - color: #fbf1c7; -} - -.content-pane .sidebar-pane:backdrop, -.sidebar-pane .content-pane:backdrop { - background-color: transparent; - transition: none; -} - -.content-pane { - background-color: #1d2021; - color: #fbf1c7; - border-top-right-radius: 12px; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.content-pane headerbar, .content-pane headerbar:backdrop { - background-color: transparent; - box-shadow: none; - border: none; -} - -.maximized .content-pane, .fullscreen .content-pane, .tiled .content-pane, .tiled-top .content-pane, .tiled-right .content-pane, .tiled-bottom .content-pane, .tiled-left .content-pane { - border-radius: 0; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.top-bar { - box-shadow: none; - background: none; - border: none; -} - -.top-bar headerbar, .top-bar headerbar:backdrop { - background-color: transparent; - box-shadow: none; -} - -.top-bar .collapse-spacing { - padding: 0; -} - -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(251, 241, 199, 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 #7daea3; -} - -themeselector checkbutton.follow, -panelthemeselector checkbutton.follow { - background-image: linear-gradient(to bottom right, #f9f5d7 50%, #242220 50%); -} - -themeselector checkbutton.light, -panelthemeselector checkbutton.light { - background-color: #f9f5d7; -} - -themeselector checkbutton.dark, -panelthemeselector checkbutton.dark { - background-color: #242220; -} - -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/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/checkbox-checked-symbolic@2.svg"))); - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -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: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -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(251, 241, 199, 0.12); -} - -themeswitcher checkbutton:checked { - box-shadow: inset 0 0 0 2px #7daea3; -} - -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, #1d2021 50%, #fbf1c7 50%); -} - -themeswitcher checkbutton.light { - color: alpha(black, 0.8); - background-color: #fbf1c7; -} - -themeswitcher checkbutton.dark { - color: #fbf1c7; - background-color: #1d2021; -} - -/* GTK NAMED COLORS - ---------------- - use responsibly! */ -/* widget text/foreground color */ -@define-color theme_fg_color #fbf1c7; -/* text color for entries, views and content in general */ -@define-color theme_text_color #fbf1c7; -/* widget base background color */ -@define-color theme_bg_color #1d2021; -/* text widgets and the like base background color */ -@define-color theme_base_color #282524; -/* base background color of selections */ -@define-color theme_selected_bg_color #7daea3; -/* text/foreground color of selections */ -@define-color theme_selected_fg_color rgba(29, 32, 33, 0.87); -/* base background color of insensitive widgets */ -@define-color insensitive_bg_color #1d2021; -/* text foreground color of insensitive widgets */ -@define-color insensitive_fg_color rgba(251, 241, 199, 0.5); -/* insensitive text widgets and the like base background color */ -@define-color insensitive_base_color #282524; -/* widget text/foreground color on backdrop windows */ -@define-color theme_unfocused_fg_color #fbf1c7; -/* text color for entries, views and content in general on backdrop windows */ -@define-color theme_unfocused_text_color #fbf1c7; -/* widget base background color on backdrop windows */ -@define-color theme_unfocused_bg_color #1d2021; -/* text widgets and the like base background color on backdrop windows */ -@define-color theme_unfocused_base_color #282524; -/* base background color of selections on backdrop windows */ -@define-color theme_unfocused_selected_bg_color #7daea3; -/* text/foreground color of selections on backdrop windows */ -@define-color theme_unfocused_selected_fg_color rgba(29, 32, 33, 0.87); -/* insensitive color on backdrop windows */ -@define-color unfocused_insensitive_color rgba(251, 241, 199, 0.5); -/* widgets main borders color */ -@define-color borders rgba(251, 241, 199, 0.12); -/* widgets main borders color on backdrop windows */ -@define-color unfocused_borders rgba(251, 241, 199, 0.12); -/* these are pretty self explicative */ -@define-color warning_color #b47109; -@define-color error_color #c14a4a; -@define-color success_color #6c782e; -/* 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_focused_title #fbf1c7; -@define-color wm_unfocused_title rgba(251, 241, 199, 0.7); -@define-color wm_highlight rgba(251, 241, 199, 0.1); -@define-color wm_border #080707; -@define-color wm_focused_bg #1d2021; -@define-color wm_unfocused_bg #1d2021; -@define-color wm_button_icon #fbf1c7; -@define-color wm_button_focused_bg rgba(251, 241, 199, 0.04); -@define-color wm_button_unfocused_bg rgba(251, 241, 199, 0.04); -@define-color wm_button_hover_fg rgba(29, 32, 33, 0.87); -@define-color wm_button_active_fg rgba(29, 32, 33, 0.87); -@define-color wm_button_hover_bg #fbf1c7; -@define-color wm_button_active_bg #fbf1c7; -/* FIXME this is really an API */ -@define-color content_view_bg #282524; -@define-color placeholder_text_color #bcb496; -/* Very contrasty background for text views (@theme_text_color foreground) */ -@define-color text_view_bg #282524; -@define-color budgie_tasklist_indicator_color rgba(251, 241, 199, 0.3); -@define-color budgie_tasklist_indicator_color_active #7daea3; -@define-color budgie_tasklist_indicator_color_active_window rgba(99, 136, 128, 0.816); -@define-color budgie_tasklist_indicator_color_attention #b47109; -@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 #7daea3; -@define-color accent_fg_color rgba(29, 32, 33, 0.87); -@define-color accent_color #7daea3; -@define-color destructive_bg_color #c14a4a; -@define-color destructive_fg_color #fbf1c7; -@define-color destructive_color #c14a4a; -@define-color success_bg_color #6c782e; -@define-color success_fg_color #fbf1c7; -@define-color success_color #6c782e; -@define-color warning_bg_color #b47109; -@define-color warning_fg_color #fbf1c7; -@define-color warning_color #b47109; -@define-color error_bg_color #c14a4a; -@define-color error_fg_color #fbf1c7; -@define-color error_color #c14a4a; -@define-color window_bg_color #1d2021; -@define-color window_fg_color #fbf1c7; -@define-color view_bg_color #282524; -@define-color view_fg_color #fbf1c7; -@define-color headerbar_bg_color #1d2021; -@define-color headerbar_fg_color #fbf1c7; -@define-color headerbar_border_color rgba(251, 241, 199, 0.12); -@define-color headerbar_backdrop_color #1d2021; -@define-color headerbar_shade_color rgba(251, 241, 199, 0.12); -@define-color card_bg_color #282524; -@define-color card_fg_color #fbf1c7; -@define-color card_shade_color rgba(251, 241, 199, 0.12); -@define-color dialog_bg_color #282524; -@define-color dialog_fg_color #fbf1c7; -@define-color popover_bg_color #242220; -@define-color popover_fg_color #fbf1c7; -@define-color shade_color rgba(251, 241, 199, 0.12); -@define-color scrollbar_outline_color rgba(251, 241, 199, 0.12); diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/gtk.css b/local/share/themes/Gruvbox-Dark/gtk-4.0/gtk.css deleted file mode 100644 index 07e021aec..000000000 --- a/local/share/themes/Gruvbox-Dark/gtk-4.0/gtk.css +++ /dev/null @@ -1,8481 +0,0 @@ -@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, #7daea3 0%, transparent 0%); - } - to { - background-image: radial-gradient(circle, #7daea3 100%, transparent 100%); - } -} - -/*************** - * Base States * - ***************/ -.background { - background-color: #1d2021; - color: #fbf1c7; -} - -dnd { - color: #fbf1c7; -} - -.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: rgba(251, 241, 199, 0.04); - color: #fbf1c7; -} - -iconview:disabled, -.view:disabled { - color: rgba(251, 241, 199, 0.5); -} - -iconview:selected, -.view:selected { - color: #fbf1c7; -} - -textview text { - background-color: rgba(251, 241, 199, 0.04); -} - -textview border { - background-color: #282524; - color: rgba(251, 241, 199, 0.7); -} - -iconview:hover, iconview:selected { - border-radius: 6px; -} - -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 #7daea3; - background-color: rgba(125, 174, 163, 0.3); -} - -flowbox > flowboxchild { - padding: 4px; - border-radius: 12px; -} - -.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: #fbf1c7; - background-color: #282524; - border: 1px solid black; -} - -label.separator { - color: rgba(251, 241, 199, 0.7); -} - -label:disabled { - opacity: 1; - color: rgba(251, 241, 199, 0.5); -} - -headerbar label:disabled, tab label:disabled, button label:disabled { - color: inherit; - opacity: 1; -} - -label.osd { - border-radius: 12px; - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; -} - - -.dim-label, -row.expander image.expander-row-arrow, -row label.subtitle { - color: rgba(251, 241, 199, 0.7); - opacity: 1; -} - -.accent { - color: #7daea3; -} - -.success { - color: #6c782e; -} - -.warning { - color: #b47109; -} - -.error { - color: #c14a4a; -} - -.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(251, 241, 199, 0.5); - font-weight: 500; -} - -window.assistant .sidebar label.highlight { - color: #fbf1c7; -} - -.osd .scale-popup > arrow, -.osd .scale-popup > contents, .osd popover > arrow, -.osd popover > contents, popover.touch-selection > arrow, -popover.touch-selection > contents, popover.magnifier > arrow, -popover.magnifier > contents, .osd { - color: #fbf1c7; - background-color: #282524; - background-clip: padding-box; - border-radius: 12px; - border: none; - 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(251, 241, 199, 0.1); -} - -.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 * - ****************/ - -entry headerbar popover.background entry, -headerbar popover.background entry entry, -entry { - min-height: 36px; - padding: 0 8px; - border-spacing: 6px; - border-radius: 12px; - caret-color: currentColor; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.7); - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry:focus-within, -headerbar popover.background entry entry:focus-within, -entry:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px transparent; - color: #fbf1c7; - outline: 2px solid #7daea3; - outline-offset: -2px; -} - - -entry headerbar popover.background entry:drop(active), -headerbar popover.background entry entry:drop(active), -entry headerbar popover.background entry:hover:not(:focus-within), -headerbar popover.background entry entry:hover:not(:focus-within), -entry:drop(active), -entry:hover:not(:focus-within) { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry:disabled, -headerbar popover.background entry entry:disabled, -entry:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); - outline: none; -} - - -entry headerbar popover.background entry.flat:focus-within, -headerbar popover.background entry entry.flat:focus-within, -entry headerbar popover.background entry.flat:disabled, -headerbar popover.background entry entry.flat:disabled, -entry headerbar popover.background entry.flat:hover, -headerbar popover.background entry entry.flat:hover, -entry headerbar popover.background entry.flat, -headerbar popover.background entry 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; -} - - -entry headerbar popover.background entry image, -headerbar popover.background entry entry image, -entry image { - color: rgba(251, 241, 199, 0.7); -} - - -entry headerbar popover.background entry image:hover, -headerbar popover.background entry entry image:hover, -entry headerbar popover.background entry image:active, -headerbar popover.background entry entry image:active, -entry image:hover, -entry image:active { - color: #fbf1c7; -} - - -entry headerbar popover.background entry image:disabled, -headerbar popover.background entry entry image:disabled, -entry image:disabled { - color: rgba(251, 241, 199, 0.5); -} - - -entry headerbar popover.background entry image.left, -headerbar popover.background entry entry image.left, -entry image.left { - margin: 0 6px 0 2px; -} - - -entry headerbar popover.background entry image.right, -headerbar popover.background entry entry image.right, -entry image.right { - margin: 0 2px 0 6px; -} - - -entry headerbar popover.background entry undershoot.left > undershoot.left, -headerbar popover.background entry entry undershoot.left > undershoot.left, -entry undershoot.left > undershoot.left { - border-radius: 0px 0 0 0px; - box-shadow: none; - background: linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - - -entry headerbar popover.background entry undershoot.right > undershoot.right, -headerbar popover.background entry entry undershoot.right > undershoot.right, -entry undershoot.right > undershoot.right { - border-radius: 0 0px 0px 0; - box-shadow: none; - background: linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - - -entry headerbar popover.background entry.error, -headerbar popover.background entry entry.error, -entry.error { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(193, 74, 74, 0.1); - color: rgba(193, 74, 74, 0.75); - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.error:focus-within, -headerbar popover.background entry entry.error:focus-within, -entry.error:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(193, 74, 74, 0.1); - box-shadow: inset 0 0 0 2px transparent; - color: #c14a4a; - outline: 2px solid #c14a4a; - outline-offset: -2px; -} - - -entry headerbar popover.background entry.error:drop(active), -headerbar popover.background entry entry.error:drop(active), -entry headerbar popover.background entry.error:hover:not(:focus-within), -headerbar popover.background entry entry.error:hover:not(:focus-within), -entry.error:drop(active), -entry.error:hover:not(:focus-within) { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); - color: #c14a4a; - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.error:disabled, -headerbar popover.background entry entry.error:disabled, -entry.error:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(193, 74, 74, 0.1); - color: rgba(193, 74, 74, 0.35); - outline: none; -} - - -entry headerbar popover.background entry.error > text > selection, -headerbar popover.background entry entry.error > text > selection, -entry.error > text > selection { - background-color: rgba(193, 74, 74, 0.25); - color: #c14a4a; -} - - -entry headerbar popover.background entry.error image, -headerbar popover.background entry entry.error image, -entry.error image { - color: rgba(193, 74, 74, 0.75); -} - - -entry headerbar popover.background entry.error image:hover, -headerbar popover.background entry entry.error image:hover, -entry headerbar popover.background entry.error image:active, -headerbar popover.background entry entry.error image:active, -entry.error image:hover, -entry.error image:active { - color: #c14a4a; -} - - -entry headerbar popover.background entry.error image:disabled, -headerbar popover.background entry entry.error image:disabled, -entry.error image:disabled { - color: rgba(193, 74, 74, 0.35); -} - - -entry headerbar popover.background entry.warning, -headerbar popover.background entry entry.warning, -entry.warning { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(180, 113, 9, 0.1); - color: rgba(180, 113, 9, 0.75); - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.warning:focus-within, -headerbar popover.background entry entry.warning:focus-within, -entry.warning:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(180, 113, 9, 0.1); - box-shadow: inset 0 0 0 2px transparent; - color: #b47109; - outline: 2px solid #b47109; - outline-offset: -2px; -} - - -entry headerbar popover.background entry.warning:drop(active), -headerbar popover.background entry entry.warning:drop(active), -entry headerbar popover.background entry.warning:hover:not(:focus-within), -headerbar popover.background entry entry.warning:hover:not(:focus-within), -entry.warning:drop(active), -entry.warning:hover:not(:focus-within) { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); - color: #b47109; - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.warning:disabled, -headerbar popover.background entry entry.warning:disabled, -entry.warning:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(180, 113, 9, 0.1); - color: rgba(180, 113, 9, 0.35); - outline: none; -} - - -entry headerbar popover.background entry.warning > text > selection, -headerbar popover.background entry entry.warning > text > selection, -entry.warning > text > selection { - background-color: rgba(180, 113, 9, 0.25); - color: #b47109; -} - - -entry headerbar popover.background entry.warning image, -headerbar popover.background entry entry.warning image, -entry.warning image { - color: rgba(180, 113, 9, 0.75); -} - - -entry headerbar popover.background entry.warning image:hover, -headerbar popover.background entry entry.warning image:hover, -entry headerbar popover.background entry.warning image:active, -headerbar popover.background entry entry.warning image:active, -entry.warning image:hover, -entry.warning image:active { - color: #b47109; -} - - -entry headerbar popover.background entry.warning image:disabled, -headerbar popover.background entry entry.warning image:disabled, -entry.warning image:disabled { - color: rgba(180, 113, 9, 0.35); -} - - -entry headerbar popover.background entry.success, -headerbar popover.background entry entry.success, -entry.success { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(108, 120, 46, 0.1); - color: rgba(108, 120, 46, 0.75); - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.success:focus-within, -headerbar popover.background entry entry.success:focus-within, -entry.success:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(108, 120, 46, 0.1); - box-shadow: inset 0 0 0 2px transparent; - color: #6c782e; - outline: 2px solid #6c782e; - outline-offset: -2px; -} - - -entry headerbar popover.background entry.success:drop(active), -headerbar popover.background entry entry.success:drop(active), -entry headerbar popover.background entry.success:hover:not(:focus-within), -headerbar popover.background entry entry.success:hover:not(:focus-within), -entry.success:drop(active), -entry.success:hover:not(:focus-within) { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: alpha(currentColor, 0.08); - box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); - color: #6c782e; - outline: 0 solid transparent; - outline-offset: 2px; -} - - -entry headerbar popover.background entry.success:disabled, -headerbar popover.background entry entry.success:disabled, -entry.success:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(108, 120, 46, 0.1); - color: rgba(108, 120, 46, 0.35); - outline: none; -} - - -entry headerbar popover.background entry.success > text > selection, -headerbar popover.background entry entry.success > text > selection, -entry.success > text > selection { - background-color: rgba(108, 120, 46, 0.25); - color: #6c782e; -} - - -entry headerbar popover.background entry.success image, -headerbar popover.background entry entry.success image, -entry.success image { - color: rgba(108, 120, 46, 0.75); -} - - -entry headerbar popover.background entry.success image:hover, -headerbar popover.background entry entry.success image:hover, -entry headerbar popover.background entry.success image:active, -headerbar popover.background entry entry.success image:active, -entry.success image:hover, -entry.success image:active { - color: #6c782e; -} - - -entry headerbar popover.background entry.success image:disabled, -headerbar popover.background entry entry.success image:disabled, -entry.success image:disabled { - color: rgba(108, 120, 46, 0.35); -} - - -entry > progress, -entry progress > trough > progress { - margin: 0 -4px; - border-bottom: 2px solid #7daea3; - background-color: transparent; -} - - -entry button.image-button { - min-height: 24px; - min-width: 24px; - padding: 0; -} - -treeview entry.flat, treeview entry { - background-color: #282524; -} - -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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -.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(251, 241, 199, 0.7); -} - -editablelabel > stack > text { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.7); - outline: 0 solid transparent; - outline-offset: 2px; -} - -/*********** - * Buttons * - ***********/ -@keyframes needs-attention { - from { - background-image: radial-gradient(farthest-side, #7daea3 0%, rgba(125, 174, 163, 0) 0%); - } - to { - background-image: radial-gradient(farthest-side, #7daea3 95%, rgba(125, 174, 163, 0)); - } -} - -infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, popover.touch-selection button, popover.magnifier button, headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); -} - -infobar.warning > revealer > box button:focus, popover.touch-selection button:focus, popover.magnifier button:focus, headerbar.selection-mode button:focus:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:hover, popover.touch-selection button:hover, popover.magnifier button:hover, headerbar.selection-mode button:hover:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:active, popover.touch-selection button:active, popover.magnifier button:active, headerbar.selection-mode button:active:not(.suggested-action):not(.destructive-action), infobar.warning > revealer > box button:checked, popover.touch-selection button:checked, popover.magnifier button:checked, headerbar.selection-mode button:checked:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; -} - -infobar.warning > revealer > box button:disabled, popover.touch-selection button:disabled, popover.magnifier button:disabled, headerbar.selection-mode button:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -infobar.warning > revealer > box button:checked:disabled, popover.touch-selection button:checked:disabled, popover.magnifier button:checked:disabled, headerbar.selection-mode button:checked:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.5); -} - -placessidebar list.navigation-sidebar > row button.sidebar-button { - background-color: #282524; - color: #fbf1c7; -} - -placessidebar list.navigation-sidebar > row button.sidebar-button:checked { - background-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; -} - -tabbar tab:not(:selected) button.image-button.tab-close-button, -dnd tab:not(:selected) button.image-button.tab-close-button, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button, notebook > header menubutton > button.flat { - color: rgba(29, 32, 33, 0.6); -} - -tabbar tab:not(:selected) button.image-button.tab-close-button:hover, -dnd tab:not(:selected) button.image-button.tab-close-button:hover, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:hover, notebook > header menubutton > button.flat:hover, tabbar tab:not(:selected) button.image-button.tab-close-button:active, -dnd tab:not(:selected) button.image-button.tab-close-button:active, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:active, notebook > header menubutton > button.flat:active, tabbar tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, -dnd tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, tabbar notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, -dnd notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, tabbar tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) notebook > header > tabs > tab:not(:checked):not(:selected) button.keyboard-activating.small-button, -dnd tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) notebook > header > tabs > tab:not(:checked):not(:selected) button.keyboard-activating.small-button, tabbar notebook > header > tabs > tab:not(:checked):not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) button.keyboard-activating.small-button, -dnd notebook > header > tabs > tab:not(:checked):not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) button.keyboard-activating.small-button, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) button.keyboard-activating.small-button, notebook > header menubutton > button.flat:focus:not(:hover):not(:active) tabbar tab:not(:selected) button.keyboard-activating.image-button.tab-close-button, tabbar tab:not(:selected) notebook > header menubutton > button.flat:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, -notebook > header menubutton > button.flat:focus:not(:hover):not(:active) dnd tab:not(:selected) button.keyboard-activating.image-button.tab-close-button, -dnd tab:not(:selected) notebook > header menubutton > button.flat:focus:not(:hover):not(:active) button.keyboard-activating.image-button.tab-close-button, notebook > header > tabs > tab:not(:checked):not(:selected) menubutton > button.flat:focus:not(:hover):not(:active) button.keyboard-activating.small-button, tabbar tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) notebook > header menubutton > button.keyboard-activating.flat, -dnd tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) notebook > header menubutton > button.keyboard-activating.flat, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) notebook > header menubutton > button.keyboard-activating.flat, notebook > header tabbar tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, tabbar tab:not(:selected) notebook > header button.image-button.tab-close-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, -notebook > header dnd tab:not(:selected) button.image-button.tab-close-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, -dnd tab:not(:selected) notebook > header button.image-button.tab-close-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat, notebook > header menubutton > button.flat:focus:not(:hover):not(:active) menubutton > button.keyboard-activating.flat { - color: rgba(29, 32, 33, 0.87); -} - -tabbar tab:not(:selected) button.image-button.tab-close-button:checked, -dnd tab:not(:selected) button.image-button.tab-close-button:checked, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:checked, notebook > header menubutton > button.flat:checked { - background-color: rgba(29, 32, 33, 0.87); - color: #fbf1c7; -} - -tabbar tab:not(:selected) button.image-button.tab-close-button:disabled, -dnd tab:not(:selected) button.image-button.tab-close-button:disabled, notebook > header > tabs > tab:not(:checked):not(:selected) button.small-button:disabled, notebook > header menubutton > button.flat:disabled { - color: rgba(29, 32, 33, 0.3); -} - -headerbar popover.background button:not(.suggested-action):not(.destructive-action):not(.flat), button { - 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 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.08); - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - outline: 0 solid transparent; - outline-offset: 2px; - color: #fbf1c7; -} - -headerbar popover.background button:focus:not(.suggested-action):not(.destructive-action):not(.flat), button:focus { - outline: 2px solid rgba(125, 174, 163, 0.35); - outline-offset: 0; -} - -headerbar popover.background button:hover:not(.suggested-action):not(.destructive-action):not(.flat), button:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; - -gtk-icon-filter: brightness(1.2); -} - -headerbar popover.background button.keyboard-activating:not(.suggested-action):not(.destructive-action):not(.flat), button.keyboard-activating, headerbar popover.background button:active:not(.suggested-action):not(.destructive-action):not(.flat), 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, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -headerbar popover.background button:disabled:not(.suggested-action):not(.destructive-action):not(.flat), button:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - outline-color: transparent; -} - -headerbar popover.background button:checked:not(.suggested-action):not(.destructive-action):not(.flat), button:checked { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -headerbar popover.background button:checked:hover:not(.suggested-action):not(.destructive-action):not(.flat), button:checked:hover { - outline-color: transparent; - background-color: #8db8ae; - color: rgba(29, 32, 33, 0.87); -} - -headerbar popover.background button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.flat), button:checked:disabled { - outline-color: transparent; - background-color: rgba(125, 174, 163, 0.35); - color: rgba(29, 32, 33, 0.38); -} - -placessidebar list.navigation-sidebar > row button.sidebar-button, calendar > header > button, scrollbar button, notebook > header > tabs > arrow, popover modelbutton, spinbutton > button, splitbutton.flat > button, -splitbutton.flat > menubutton > button { - 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), outline 300ms 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: transparent; - outline: 0 solid transparent; - outline-offset: 2px; - color: rgba(251, 241, 199, 0.7); -} - -placessidebar list.navigation-sidebar > 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 modelbutton: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) { - color: #fbf1c7; - outline: 2px solid rgba(251, 241, 199, 0.04); - outline-offset: -2px; -} - -placessidebar list.navigation-sidebar > row button.sidebar-button:hover, calendar > header > button:hover, scrollbar button:hover, notebook > header > tabs > arrow:hover, popover modelbutton:hover, spinbutton > button:hover, splitbutton.flat > button:hover, -splitbutton.flat > menubutton > button:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -placessidebar list.navigation-sidebar > row button.sidebar-button:active, calendar > header > button:active, scrollbar button:active, notebook > header > tabs > arrow:active, popover modelbutton: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-image: radial-gradient(circle, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -placessidebar list.navigation-sidebar > row button.sidebar-button:disabled, calendar > header > button:disabled, scrollbar button:disabled, notebook > header > tabs > arrow:disabled, popover modelbutton:disabled, spinbutton > button:disabled, splitbutton.flat > button:disabled, -splitbutton.flat > menubutton > button:disabled { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -#NautilusPathButton, filechooser #pathbarbox > stack > box > button, window.messagedialog .response-area > box > button, window.dialog.message .dialog-action-area > button, .app-notification button, .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), 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), outline 300ms 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: transparent; - outline: 0 solid transparent; - outline-offset: 2px; - color: rgba(251, 241, 199, 0.7); -} - -#NautilusPathButton: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), .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) { - color: #fbf1c7; - outline: 2px solid rgba(251, 241, 199, 0.04); - outline-offset: -2px; -} - -#NautilusPathButton: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, .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 { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -#NautilusPathButton: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, .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-image: radial-gradient(circle, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -#NautilusPathButton: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, .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 { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -#NautilusPathButton: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, .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); - color: #fbf1c7; -} - -#NautilusPathButton: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, .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(251, 241, 199, 0.5); -} - -button.opaque { - box-shadow: none; -} - -.osd button.opaque:focus:focus-visible { - outline-color: rgba(251, 241, 199, 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:checked.keyboard-activating, button.opaque:checked:active { - background-image: image(rgba(0, 0, 0, 0.3)); -} - -.nautilus-window .floating-bar button, placessidebar list.navigation-sidebar > 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: 9px; - font-weight: 500; -} - -button:drop(active) { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -button separator { - margin: 4px 1px; -} - -button.opaque { - background-color: #494a42; - color: #fbf1c7; -} - -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: 12px; -} - -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: #282524; - background-clip: padding-box; - font-weight: inherit; - border: 1px solid rgba(251, 241, 199, 0.12); - background-clip: border-box; -} - -button.card:hover { - background-image: none; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -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, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -button.card:checked { - background-image: none; - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - border-color: #7daea3; -} - -button.card:checked:hover { - background-image: none; - outline-color: transparent; - background-color: #8db8ae; - color: rgba(29, 32, 33, 0.87); -} - -button.card:checked:disabled { - outline-color: transparent; - background-color: rgba(125, 174, 163, 0.35); - color: rgba(29, 32, 33, 0.38); -} - -button.card:checked.keyboard-activating, button.card:checked:active { - background-image: none; -} - -button.card:checked.has-open-popup { - background-image: none; -} - -button.card:drop(active) { - color: #e78a4e; - box-shadow: inset 0 0 0 1px #e78a4e; -} - -.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: #fbf1c7; -} - -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: #fbf1c7; -} - -button.osd:active { - background-color: rgba(0, 0, 0, 0.65); - color: #fbf1c7; -} - -button.osd:disabled { - background-color: rgba(0, 0, 0, 0.15); - color: rgba(251, 241, 199, 0.35); -} - -button.suggested-action { - background-color: #45707a; - color: #fbf1c7; - box-shadow: none; -} - -button.suggested-action:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - outline-color: transparent; -} - -button.suggested-action:hover { - background-color: rgba(69, 112, 122, 0.7); - box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 6px 0 rgba(0, 0, 0, 0.06); -} - -button.suggested-action:checked { - background-color: #7c9791; -} - -button.suggested-action:checked:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(0, 0, 0, 0.3), 0 2px 3px -1px rgba(0, 0, 0, 0.24), 0 2px 5px 0 rgba(0, 0, 0, 0.12); -} - -button.suggested-action:focus { - box-shadow: 0 0 0 2px rgba(69, 112, 122, 0.35); -} - -button.suggested-action.flat { - background-color: transparent; - color: #45707a; -} - -button.suggested-action.flat:disabled { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -button.suggested-action.flat:checked { - background-color: rgba(69, 112, 122, 0.3); -} - -button.destructive-action { - background-color: #c14a4a; - color: #fbf1c7; - box-shadow: none; -} - -button.destructive-action:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - outline-color: transparent; -} - -button.destructive-action:hover { - background-color: rgba(193, 74, 74, 0.7); - box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 6px 0 rgba(0, 0, 0, 0.06); -} - -button.destructive-action:checked { - background-color: #d27c70; -} - -button.destructive-action:checked:hover { - box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(0, 0, 0, 0.3), 0 2px 3px -1px rgba(0, 0, 0, 0.24), 0 2px 5px 0 rgba(0, 0, 0, 0.12); -} - -button.destructive-action:focus { - box-shadow: 0 0 0 2px rgba(193, 74, 74, 0.35); -} - -button.destructive-action.flat { - background-color: transparent; - color: #c14a4a; -} - -button.destructive-action.flat:disabled { - color: rgba(251, 241, 199, 0.32); - background-color: transparent; -} - -button.destructive-action.flat:checked { - background-color: rgba(193, 74, 74, 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; -} - -windowcontrols button:not(.suggested-action):not(.destructive-action), filechooser #pathbarbox > stack > box > button, menubutton.circular > button, button.close, button.circular { - border-radius: 9999px; -} - -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; -} - -menubutton.osd { - background: none; - color: inherit; -} - -menubutton.suggested-action { - background-color: #45707a; - color: #fbf1c7; -} - -menubutton.destructive-action { - background-color: #c14a4a; - color: #fbf1c7; -} - -menubutton.opaque { - background-color: #494a42; - color: #fbf1c7; -} - -menubutton.suggested-action, menubutton.destructive-action, menubutton.opaque { - border-radius: 12px; -} - -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: 12px; -} - -splitbutton, splitbutton > separator { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - transition-property: background-color; -} - -splitbutton > separator { - min-width: 0; - margin-top: 6px; - margin-bottom: 6px; - background-color: transparent; - background: none; -} - -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: 0; -} - -splitbutton.flat > separator { - background: rgba(251, 241, 199, 0.12); -} - -splitbutton.flat:hover, splitbutton.flat:active, splitbutton.flat:checked { - background: alpha(currentColor, 0.07); -} - -splitbutton.flat:hover > separator, splitbutton.flat:active > separator, splitbutton.flat:checked > separator { - background: none; -} - -splitbutton.flat:focus-within:focus-visible > separator { - background: none; -} - -splitbutton.flat > button, -splitbutton.flat > menubutton > button { - border-radius: 12px; -} - -splitbutton.suggested-action { - background-color: #45707a; - color: #fbf1c7; -} - -splitbutton.destructive-action { - background-color: #c14a4a; - color: #fbf1c7; -} - -splitbutton.opaque { - background-color: #494a42; - color: #fbf1c7; -} - -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(251, 241, 199, 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(251, 241, 199, 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; -} - -button.color { - min-height: 24px; - min-width: 24px; - padding: 6px; -} - -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; -} - -.linked:not(.vertical) > entry, .linked:not(.vertical) > button, .linked:not(.vertical) > button.image-button { - border-radius: 0; -} - -.linked:not(.vertical) > entry:first-child, .linked:not(.vertical) > button:first-child { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -.linked:not(.vertical) > entry:last-child, .linked:not(.vertical) > button:last-child { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -.linked:not(.vertical) > entry:only-child, .linked:not(.vertical) > button:only-child { - border-radius: 12px; -} - -.linked.vertical > entry, .linked.vertical > button, .linked.vertical > button.image-button { - border-radius: 0; -} - -.linked.vertical > entry:first-child, .linked.vertical > button:first-child { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -.linked.vertical > entry:last-child, .linked.vertical > button:last-child { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -.linked.vertical > entry:only-child, .linked.vertical > button:only-child { - border-radius: 12px; -} - -.linked:not(.vertical) > button:dir(ltr):not(:first-child), .linked:not(.vertical) > button:dir(rtl):not(:last-child) { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > button:dir(ltr):not(:last-child), .linked:not(.vertical) > button:dir(rtl):not(:first-child) { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical button:not(:first-child) { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical button:not(:last-child) { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > menubutton:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > menubutton:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > menubutton:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > menubutton:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical menubutton:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical menubutton:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > dropdown:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > dropdown:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > dropdown:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > dropdown:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical dropdown:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical dropdown:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > colorbutton:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > colorbutton:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > colorbutton:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > colorbutton:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical colorbutton:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical colorbutton:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > fontbutton:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > fontbutton:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > fontbutton:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > fontbutton:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical fontbutton:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical fontbutton:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > tabbutton:dir(ltr):not(:first-child) > button, .linked:not(.vertical) > tabbutton:dir(rtl):not(:last-child) > button { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > tabbutton:dir(ltr):not(:last-child) > button, .linked:not(.vertical) > tabbutton:dir(rtl):not(:first-child) > button { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical tabbutton:not(:first-child) > button { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical tabbutton:not(:last-child) > button { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > entry:dir(ltr):not(:first-child), .linked:not(.vertical) > entry:dir(rtl):not(:last-child) { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > entry:dir(ltr):not(:last-child), .linked:not(.vertical) > entry:dir(rtl):not(:first-child) { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical entry:not(:first-child) { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical entry:not(:last-child) { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > combobox:dir(ltr):not(:first-child) > box > button.combo, .linked:not(.vertical) > combobox:dir(rtl):not(:last-child) > box > button.combo { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > combobox:dir(ltr):not(:last-child) > box > button.combo, .linked:not(.vertical) > combobox:dir(rtl):not(:first-child) > box > button.combo { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical combobox:not(:first-child) > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical combobox:not(:last-child) > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked:not(.vertical) > appchooserbutton:dir(ltr):not(:first-child) > combobox > box > button.combo, .linked:not(.vertical) > appchooserbutton:dir(rtl):not(:last-child) > combobox > box > button.combo { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - margin-left: 1px; -} - -.linked:not(.vertical) > appchooserbutton:dir(ltr):not(:last-child) > combobox > box > button.combo, .linked:not(.vertical) > appchooserbutton:dir(rtl):not(:first-child) > combobox > box > button.combo { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.linked.vertical appchooserbutton:not(:first-child) > combobox > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - margin-top: 1px; -} - -.linked.vertical appchooserbutton:not(:last-child) > combobox > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} - - -list > row button.image-button:not(.flat) { - background-color: transparent; - box-shadow: none; - border: none; -} - - -list > row button.image-button:not(.flat):hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - - -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, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - - -list > row button.image-button:not(.flat).suggested-action { - background-color: #45707a; - color: #fbf1c7; -} - - -list > row button.image-button:not(.flat).destructive-action { - background-color: #c14a4a; - color: #fbf1c7; -} - -/********* - * Links * - *********/ -link { - color: #83b193; -} - -link:visited { - color: #ab62b1; -} - -button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active { - color: #83b193; -} - -button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active { - color: #ab62b1; -} - -button.link > label { - text-decoration-line: underline; -} - -/***************** - * GtkSpinButton * - *****************/ -spinbutton { - border-radius: 12px; - padding: 0; - border-spacing: 0; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.7); - outline: 0 solid transparent; - outline-offset: 2px; -} - -spinbutton:focus-within { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.08); - box-shadow: inset 0 0 0 2px transparent; - color: #fbf1c7; - outline: 2px solid #7daea3; - outline-offset: -2px; -} - -spinbutton:disabled { - box-shadow: inset 0 0 0 2px transparent; - background-color: rgba(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.5); - 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 12px 12px 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: #fbf1c7; - 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: 12px; -} - -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: 12px; -} - -.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: 12px; - font-weight: normal; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1), outline 300ms 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(251, 241, 199, 0.08); - color: rgba(251, 241, 199, 0.7); - outline: 0 solid transparent; - outline-offset: 2px; -} - -button.combo:only-child:focus { - color: #fbf1c7; - outline: 2px solid rgba(251, 241, 199, 0.04); - outline-offset: -2px; -} - -button.combo:only-child:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -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-image: radial-gradient(circle, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; -} - -button.combo:only-child:checked { - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -button.combo:only-child:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - outline-color: transparent; -} - -/************ - * Toolbars * - ************/ -.toolbar { - padding: 6px; - border-spacing: 6px; -} - -.toolbar .linked button:not(:hover):not(:active):not(:checked):not(:disabled) { - background-color: rgba(251, 241, 199, 0.04); -} - -.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.05), 0 4px 6px 0 rgba(0, 0, 0, 0.06), 0 1px 10px 0 rgba(0, 0, 0, 0.05), inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; - color: #fbf1c7; - border: none; -} - -.app-notification:backdrop, .toolbar.osd:backdrop { - box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.2), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(251, 241, 199, 0.1); -} - -.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 splitbutton, -.toolbar button, -.toolbar scalebutton { - border-radius: 9px; -} - -.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: none; - background-color: transparent; - 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(251, 241, 199, 0.7); - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - border: none; - outline: none; -} - -headerbar .linked > button:not(.suggested-action):not(.destructive-action) { - border-radius: 0; -} - -headerbar .linked > button:first-child:not(.suggested-action):not(.destructive-action) { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; -} - -headerbar .linked > button:last-child:not(.suggested-action):not(.destructive-action) { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; -} - -headerbar .linked > button:only-child:not(.suggested-action):not(.destructive-action) { - border-radius: 9999px; -} - -headerbar button:hover:not(.suggested-action):not(.destructive-action) { - background-color: rgba(251, 241, 199, 0.12); -} - -headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar button:active:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; - outline: none; -} - -headerbar button:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -headerbar button:checked:not(.suggested-action):not(.destructive-action) { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - outline: none; -} - -headerbar button:checked:hover:not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 0 0 1000px rgba(29, 32, 33, 0.04); - color: rgba(29, 32, 33, 0.87); -} - -headerbar button:checked:focus:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.87); -} - -headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action) { - background-color: rgba(251, 241, 199, 0.5); - color: rgba(29, 32, 33, 0.38); -} - -headerbar button:backdrop:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.5); -} - -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(251, 241, 199, 0.7); -} - -headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.32); -} - -headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.6); -} - -headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) { - color: rgba(29, 32, 33, 0.3); -} - -headerbar entry { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; - border-radius: 9999px; -} - -headerbar entry:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -headerbar entry image { - color: rgba(251, 241, 199, 0.7); -} - -headerbar entry image:hover, headerbar entry image:active { - color: #fbf1c7; -} - -headerbar entry image:disabled { - color: rgba(251, 241, 199, 0.5); -} - -headerbar { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: transparent; - color: #fbf1c7; - min-height: 48px; - border: none; - box-shadow: none; - padding: 0; - margin: 0; -} - -headerbar:disabled { - color: rgba(251, 241, 199, 0.5); -} - -headerbar:backdrop { - background-color: transparent; - color: rgba(251, 241, 199, 0.7); -} - -headerbar:backdrop:disabled { - color: rgba(251, 241, 199, 0.32); -} - -headerbar.flat, headerbar.flat:backdrop { - background: none; - box-shadow: none; - 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(251, 241, 199, 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(251, 241, 199, 0.5); -} - -headerbar .titlebar { - background-color: transparent; - box-shadow: none; -} - -headerbar headerbar + separator { - background-color: rgba(251, 241, 199, 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(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); - opacity: 1; -} - -headerbar splitbutton { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; -} - -headerbar splitbutton button:not(.suggested-action):not(.destructive-action):not(:hover):not(:active):not(:checked) { - background-color: transparent; -} - -headerbar splitbutton > separator { - background-color: transparent; -} - -headerbar .linked:not(.vertical) > entry:not(:only-child) { - border-radius: 12px; -} - -headerbar .entry-tag { - margin-top: 5px; - margin-bottom: 5px; -} - -headerbar stackswitcher { - background-color: rgba(251, 241, 199, 0.04); -} - -headerbar stackswitcher:checked { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -headerbar stackswitcher:checked:hover { - background-color: #fefdf7; -} - -headerbar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) { - border-radius: 9999px; -} - -headerbar popover.background button.suggested-action:disabled, -headerbar popover.background button.destructive-action:disabled { - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.5); -} - -headerbar popover.background entry, -headerbar popover.background spinbutton, -headerbar popover.background button, -headerbar popover.background menubutton, -headerbar popover.background stackswitcher { - margin-top: 0; - margin-bottom: 0; -} - -headerbar separator:not(.sidebar) { - background-color: rgba(251, 241, 199, 0.12); -} - -headerbar switch { - margin: 12px 6px; -} - -headerbar.selection-mode { - transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -headerbar.selection-mode:backdrop { - color: rgba(29, 32, 33, 0.6); -} - -headerbar.selection-mode .subtitle:link { - color: rgba(29, 32, 33, 0.87); -} - -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; - margin: 0; - border-radius: 12px 12px 0 0; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - border: none; - outline: none; -} - -.solid-csd headerbar.default-decoration, .maximized headerbar.default-decoration { - border-radius: 0; - box-shadow: none; -} - -window > .titlebar:not(.flat) { - box-shadow: none; -} - -window > .titlebar headerbar:not(.flat) { - box-shadow: none; -} - -window.devel headerbar { - background: #1d2021 cross-fade(10%-gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, linear-gradient(to right, transparent 65%, rgba(125, 174, 163, 0.1)), linear-gradient(to top, #242829 3px, #292d2f); -} - -window.devel headerbar:backdrop { - background: #1d2021 cross-fade(10%-gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, image(#1d2021); - /* background-color would flash */ -} - -/************ - * Pathbars * - ************/ - -pathbar > button { - padding-left: 6px; - padding-right: 6px; - border-radius: 12px; - background-color: alpha(currentColor, 0.08); - border: none; - box-shadow: none; -} - - -pathbar > button:disabled { - background-color: alpha(currentColor, 0.05); -} - - -pathbar > button:checked { - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - - -pathbar > button:checked:hover { - background-color: alpha(currentColor, 0.16); - color: #fbf1c7; -} - - -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(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.7); - border: none; - border-radius: 12px; - padding: 2px; -} - -headerbar .pathbar { - margin-top: 6px; - margin-bottom: 6px; - background-color: rgba(251, 241, 199, 0.04); - color: rgba(251, 241, 199, 0.7); -} - -.pathbar > button { - margin-top: 0; - margin-bottom: 0; - min-height: 20px; - border-radius: 10px; - border: none; - box-shadow: none; -} - -.pathbar > button:last-child { - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -/************** - * Tree Views * - **************/ -columnview.view, -treeview.view { - border-left-color: #423f3e; - border-top-color: #423f3e; -} - -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(251, 241, 199, 0.12); -} - -columnview.view:drop(active), -treeview.view:drop(active) { - box-shadow: none; -} - -columnview.view:drop(active).after, -treeview.view:drop(active).after { - border-top-style: none; -} - -columnview.view:drop(active).before, -treeview.view:drop(active).before { - 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:drop(active).after, -treeview.view > dndtarget:drop(active).after { - border-top-style: none; -} - -columnview.view > dndtarget:drop(active).before, -treeview.view > dndtarget:drop(active).before { - 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(251, 241, 199, 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: #fbf1c7; -} - -columnview.view.expander:selected, -treeview.view.expander:selected { - color: #fbf1c7; -} - -columnview.view.expander:selected:hover, -treeview.view.expander:selected:hover { - color: #fbf1c7; -} - -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(251, 241, 199, 0.32); -} - -columnview.view.progressbar, -treeview.view.progressbar { - border-bottom: 6px solid #7daea3; - 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(251, 241, 199, 0.12); - 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; - border-style: solid; - border-width: 0 1px 0 0; - border-color: transparent; - border-radius: 0; - background-clip: border-box; - border-image: linear-gradient(to bottom, transparent 20%, rgba(251, 241, 199, 0.12) 20%, rgba(251, 241, 199, 0.12) 80%, transparent 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(251, 241, 199, 0.7); -} - -columnview.view > header > button, columnview.view > header > button:disabled, -treeview.view > header > button, -treeview.view > header > button:disabled { - background-color: transparent; -} - -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(251, 241, 199, 0.12); - border-radius: 0; - box-shadow: none; - background-color: #282524; - background-clip: border-box; - color: #7daea3; -} - -columnview.view acceleditor > label, -treeview.view acceleditor > label { - background-color: #7daea3; -} - -stack.view treeview.view { - min-height: 36px; -} - -/********* - * Menus * - *********/ -menubar { - padding: 0; - background-color: #1d2021; - color: #fbf1c7; -} - -menubar:backdrop { - background-color: #1d2021; - color: rgba(251, 241, 199, 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(251, 241, 199, 0.7); -} - -menubar > item:selected { - transition: none; - background-color: alpha(currentColor, 0.1); - color: #fbf1c7; -} - -menubar > item:disabled { - color: rgba(251, 241, 199, 0.32); -} - -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: #fbf1c7; - 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; - border-radius: 12px; -} - -popover.menu box.inline-buttons button.image-button.model:selected { - background-image: image(alpha(currentColor, 0.06)); -} - -popover.menu box.circular-buttons { - padding: 6px; -} - -popover.menu box.circular-buttons button.circular.image-button.model { - padding: 6px; - border-radius: 12px; -} - -popover.menu box.circular-buttons button.circular.image-button.model:focus { - background-color: alpha(currentColor, 0.06); -} - -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 label.title { - font-weight: bold; - padding: 4px 26px; -} - -/************ - * Popovers * - ************/ -popover.background { - font: initial; -} - -popover.background, popover.background:backdrop { - background-color: transparent; -} - -popover > arrow, -popover > contents { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - padding: 6px; - background-color: #141617; - border-radius: 12px; - color: #fbf1c7; - 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), inset 0 1px rgba(251, 241, 199, 0.1), 0 0 36px transparent; -} - -popover > arrow { - 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), inset 0 1px rgba(251, 241, 199, 0.1), 0 0 36px transparent; -} - -popover > contents > list, -popover > contents > .view, -popover > contents > toolbar { - border-style: none; - box-shadow: none; - background-color: transparent; -} - -popover > contents separator { - background-color: transparent; - margin: 3px 0; -} - -popover > contents list separator { - margin: 0; -} - -popover > contents list > row { - border-radius: 12px; -} - -popover > contents stack > box { - padding: 0; -} - -popover > contents > box > button { - margin: 0; -} - -popover .view:not(:selected), -popover toolbar { - background-color: #141617; -} - -popover button, -popover entry, -popover combobox { - border-radius: 12px; -} - -popover .linked > button:not(.radio) { - border-radius: 0; -} - -popover .linked > button:not(.radio):first-child { - border-radius: 12px 0 0 12px; -} - -popover .linked > button:not(.radio):last-child { - border-radius: 0 12px 12px 0; -} - -popover .linked > button:not(.radio):only-child { - border-radius: 12px; -} - -popover.menu button, -popover button.model { - min-height: 32px; - padding: 0 8px; -} - -popover modelbutton { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - min-height: 22px; - min-width: 56px; - padding: 3px 9px; - color: #fbf1c7; - font: initial; - border-radius: 12px; -} - -popover modelbutton:hover { - transition: none; - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; -} - -popover modelbutton:hover accelerator { - color: #7daea3; -} - -popover modelbutton:hover accelerator:disabled { - color: rgba(251, 241, 199, 0.5); -} - -popover modelbutton:focus:not(:hover) { - transition: none; - box-shadow: none; - outline: none; -} - -popover modelbutton:disabled { - color: rgba(251, 241, 199, 0.5); -} - -popover modelbutton accelerator { - color: rgba(251, 241, 199, 0.5); - margin-left: 30px; -} - -popover modelbutton accelerator:disabled { - color: rgba(251, 241, 199, 0.12); -} - -popover modelbutton arrow.left { - -gtk-icon-source: -gtk-icontheme("go-previous-symbolic"); -} - -popover modelbutton arrow.right { - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); -} - -.osd popover, popover.touch-selection, popover.magnifier { - background-color: transparent; -} - -magnifier { - background-color: #282524; -} - -/************* - * Notebooks * - *************/ -tabbar tab, tabbar tabbox > tabboxchild > 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 12px; - border: none; - outline: none; - background-clip: padding-box; - color: #fbf1c7; - font-weight: 500; - border-radius: 9px; -} - -tabbar tab:hover:not(:checked):not(:selected), notebook > header > tabs > tab:hover:not(:checked):not(:selected) { - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; - box-shadow: none; -} - -tabbar tab:disabled, notebook > header > tabs > tab:disabled { - color: rgba(29, 32, 33, 0.3); -} - -tabbar tab:active, notebook > header > tabs > tab:active { - background-color: #282524; - color: #fbf1c7; - box-shadow: none; -} - -tabbar tab:checked:not(:active), notebook > header > tabs > tab:checked:not(:active), tabbar tab:selected:not(:active), notebook > header > tabs > tab:selected:not(: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, background-color 0ms; - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; - box-shadow: none; -} - -tabbar tab:checked:not(:active):disabled, notebook > header > tabs > tab:checked:not(:active):disabled, tabbar tab:selected:not(:active):disabled, notebook > header > tabs > tab:selected:not(:active):disabled { - color: rgba(251, 241, 199, 0.5); -} - -notebook, notebook.frame { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 9px; -} - -notebook.frame frame > border { - border: none; - border-radius: 9px; -} - -notebook.frame frame > list row.activatable { - border-radius: 12px; -} - -frame > paned > notebook > header, notebook.frame > header { - background-color: rgba(251, 241, 199, 0.04); -} - -notebook > header { - border: none; - background-color: rgba(251, 241, 199, 0.04); - margin: 3px; - border-radius: 12px; -} - -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: 12px; -} - -notebook > header > tabs > tab { - 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(251, 241, 199, 0.12); - color: #fbf1c7; -} - -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.small-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: 12px; -} - -tabbar > revealer > box { - box-shadow: none; -} - -tabbar .box { - min-height: 36px; - background-color: rgba(251, 241, 199, 0.04); - background-image: none; - padding: 0; - margin: 3px; - border-radius: 12px; - border: none; - box-shadow: none; -} - -tabbar scrolledwindow.pinned undershoot { - border: 0 solid rgba(251, 241, 199, 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 { - padding: 3px 3px 3px 0; -} - -tabbar scrolledwindow.pinned tabbox > tabboxchild { - margin: 0; -} - -tabbar scrolledwindow.pinned tabbox > background:dir(ltr) { - box-shadow: inset -1px 0 rgba(251, 241, 199, 0.12); -} - -tabbar scrolledwindow.pinned tabbox > background:dir(rtl) { - box-shadow: inset 1px 0 rgba(251, 241, 199, 0.12); -} - -tabbar scrolledwindow:not(.pinned) tabbox { - padding: 3px 0; -} - -tabbar scrolledwindow:not(.pinned) tabbox > tabboxchild { - margin: 0 -2px; -} - -tabbar scrolledwindow:not(.pinned) tabbox > tabboxchild + separator + tabboxchild { - margin-left: 0; -} - -tabbar undershoot { - transition: background 150ms ease-in-out; -} - -tabbar undershoot.left { - background: linear-gradient(to right, #282524, rgba(0, 0, 0, 0) 20px); -} - -tabbar undershoot.right { - background: linear-gradient(to left, #282524, rgba(0, 0, 0, 0) 20px); -} - -tabbar .needs-attention-left undershoot.left { - background: linear-gradient(to right, alpha(#7daea3, 0.5), alpha(#7daea3, 0.3) 1px, alpha(#7daea3, 0) 20px); -} - -tabbar .needs-attention-right undershoot.right { - background: linear-gradient(to left, alpha(#7daea3, 0.5), alpha(#7daea3, 0.3) 1px, alpha(#7daea3, 0) 20px); -} - -tabbar tabbox { - background-color: transparent; - background-image: none; - padding: 0; - margin: 0; - border: none; - box-shadow: none; -} - -tabbar tabbox > background { - background: none; -} - -tabbar tabbox > separator { - margin: 9px 0; - min-width: 1px; - background-color: rgba(29, 32, 33, 0.12); - transition: opacity 150ms ease-in-out; -} - -tabbar tabbox > separator.hidden { - opacity: 0; -} - -tabbar tabbox > tabboxchild { - padding: 0; -} - -tabbar tabbox > tabboxchild > tab { - margin: 0; -} - -tabbar tab.needs-attention { - background-image: radial-gradient(ellipse at bottom, rgba(251, 241, 199, 0.8), alpha(#7daea3, 0.4) 10%, alpha(#7daea3, 0) 30%); -} - -tabbar tab.needs-attention:hover { - background-image: image(alpha(currentColor, 0.03)), radial-gradient(ellipse at bottom, rgba(251, 241, 199, 0.8), alpha(#7daea3, 0.4) 10%, alpha(#7daea3, 0) 30%); -} - -tabbar .start-action, -tabbar .end-action { - background-color: rgba(251, 241, 199, 0.04); - background-clip: padding-box; - border-color: rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -tabbar:not(.inline) undershoot.left { - background: linear-gradient(to right, #1d2021, rgba(0, 0, 0, 0) 20px); -} - -tabbar:not(.inline) undershoot.right { - background: linear-gradient(to left, #1d2021, rgba(0, 0, 0, 0) 20px); -} - -tabbar:not(.inline) .needs-attention-left undershoot.left { - background: linear-gradient(to right, alpha(#7daea3, 0.5), alpha(#7daea3, 0.3) 1px, alpha(#7daea3, 0) 20px); -} - -tabbar:not(.inline) .needs-attention-right undershoot.right { - background: linear-gradient(to left, alpha(#7daea3, 0.5), alpha(#7daea3, 0.3) 1px, alpha(#7daea3, 0) 20px); -} - -tabbar:not(.inline) tabbox > background { - background-color: #1d2021; -} - -tabbar:not(.inline) .start-action, -tabbar:not(.inline) .end-action { - background-color: alpha(#1d2021, 0.6); - border-color: rgba(251, 241, 199, 0.12); -} - -dnd tab { - min-height: 24px; - background-color: #1d2021; - color: #fbf1c7; - 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(29, 32, 33, 0.75); - outline-offset: -1px; - margin: 24px; -} - -dnd tab.needs-attention { - background-image: radial-gradient(ellipse at bottom, rgba(251, 241, 199, 0.8), alpha(#7daea3, 0.4) 10%, alpha(#7daea3, 0) 30%); -} - -tabbar tab, -dnd tab { - padding: 6px; -} - -tabbar tab button.image-button, -dnd tab button.image-button { - padding: 0; - margin: 0; - min-width: 24px; - min-height: 24px; - border-radius: 9999px; -} - -tabbar tab button.image-button.tab-close-button, -dnd tab button.image-button.tab-close-button { - margin-right: -3px; -} - -tabview:drop(active), -tabbox:drop(active) { - box-shadow: none; -} - -/************** - * Scrollbars * - **************/ -scrollbar { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: #282524; - box-shadow: none; - outline: none; -} - -scrollbar.top { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -scrollbar.bottom { - border-top: 1px solid rgba(251, 241, 199, 0.12); -} - -scrollbar.left { - border-right: 1px solid rgba(251, 241, 199, 0.12); -} - -scrollbar.right { - border-left: 1px solid rgba(251, 241, 199, 0.12); -} - -scrollbar > range > trough { - border: none; - background: none; - padding: 0; - outline: none; -} - -scrollbar > range > trough > slider { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - min-width: 8px; - min-height: 8px; - border: 4px solid transparent; - border-radius: 9999px; - background-clip: padding-box; - background-color: rgba(251, 241, 199, 0.5); - box-shadow: none; - outline: none; -} - -scrollbar > range > trough > slider:hover { - background-color: rgba(251, 241, 199, 0.7); -} - -scrollbar > range > trough > slider:active { - background-color: #fbf1c7; -} - -scrollbar > range > trough > slider:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -scrollbar > range.fine-tune > trough > slider { - min-width: 4px; - min-height: 4px; -} - -scrollbar > range.fine-tune.horizontal > trough > slider { - margin: 3px 0; -} - -scrollbar > range.fine-tune.vertical > trough > slider { - margin: 0 3px; -} - -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 > slider { - min-width: 4px; - min-height: 4px; - margin: 0; - border: 1px solid rgba(40, 37, 36, 0.3); -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - min-width: 4px; - min-height: 4px; - margin: 0; - border: 1px solid rgba(40, 37, 36, 0.3); - border-radius: 9999px; - background-color: rgba(251, 241, 199, 0.5); - background-clip: padding-box; - -gtk-icon-source: none; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal > range > trough > slider { - min-width: 24px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { - min-width: 8px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical > range > trough > slider { - min-height: 24px; -} - -scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { - min-height: 8px; -} - -scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - background-color: rgba(36, 34, 32, 0.9); -} - -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); - padding: 3px; - border: none; - border-radius: 12px; - background-color: rgba(251, 241, 199, 0.5); -} - -switch:checked { - background-color: #7daea3; -} - -switch:disabled { - opacity: 0.5; -} - -switch > slider { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - min-width: 18px; - min-height: 18px; - border-radius: 9999px; - outline: none; - box-shadow: 0 0 0 0 transparent, 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: #1d2021; - border: none; -} - -switch:focus slider, switch:hover slider, switch:focus:hover slider { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.6), 0 3px 3px -2px transparent, 0 2px 3px -1px transparent, 0 1px 4px 0 transparent; -} - -/************************* - * Check and Radio items * - *************************/ -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(251, 241, 199, 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(251, 241, 199, 0.04); - background-color: rgba(251, 241, 199, 0.15); -} - -check:active, -radio:active { - box-shadow: 0 0 0 6px rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.2); -} - -check:disabled, -radio:disabled { - background-color: rgba(251, 241, 199, 0.04); -} - -check:checked, check:indeterminate, -radio:checked, -radio:indeterminate { - color: rgba(29, 32, 33, 0.6); - background-color: #7daea3; -} - -check:checked:hover, check:indeterminate:hover, -radio:checked:hover, -radio:indeterminate:hover { - box-shadow: 0 0 0 6px rgba(125, 174, 163, 0.15); - background-color: #9cc2b9; -} - -check:checked:active, check:indeterminate:active, -radio:checked:active, -radio:indeterminate:active { - box-shadow: 0 0 0 6px rgba(125, 174, 163, 0.2); - background-color: #7daea3; -} - -check:checked:disabled, check:indeterminate:disabled, -radio:checked:disabled, -radio:indeterminate:disabled { - color: rgba(29, 32, 33, 0.6); - background-color: rgba(125, 174, 163, 0.35); -} - -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; - background-image: 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/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/checkbox-checked-symbolic@2.svg"))); -} - - -check:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/checkbox-mixed-symbolic@2.svg"))); -} - - -radio { - -gtk-icon-size: 20px; -} - - -radio:checked { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/radio-checked-symbolic@2.svg"))); -} - - -radio:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/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/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/small-checkbox-checked-symbolic@2.svg"))); -} - - -popover.menu check:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/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/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/small-radio-checked-symbolic@2.svg"))); -} - - -popover.menu radio:indeterminate { - -gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/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: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -checkbutton.selection-mode { - border-radius: 9999px; -} - -checkbutton.selection-mode check, -checkbutton.selection-mode radio { - padding: 6px; - border-radius: 9999px; -} - -checkbutton.selection-mode check:checked, checkbutton.selection-mode check:indeterminate, -checkbutton.selection-mode radio:checked, -checkbutton.selection-mode radio:indeterminate { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -checkbutton.selection-mode label:dir(ltr) { - margin-right: 6px; -} - -checkbutton.selection-mode label:dir(rtl) { - margin-left: 6px; -} - -/************ - * 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(251, 241, 199, 0.3); -} - -scale > trough:disabled { - background-color: rgba(251, 241, 199, 0.12); -} - -scale > trough > highlight { - transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); - background-image: image(#7daea3); -} - -scale > trough > highlight:disabled { - background-color: #1d2021; - background-image: image(rgba(251, 241, 199, 0.32)); -} - -scale > trough > fill { - transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.3); -} - -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: #7daea3; - background-color: #282524; - box-shadow: inset 0 0 0 2px #7daea3; -} - -scale > trough > slider:hover { - box-shadow: inset 0 0 0 2px #7daea3, 0 0 0 8px rgba(251, 241, 199, 0.12); -} - -scale > trough > slider:active { - box-shadow: inset 0 0 0 4px #7daea3, 0 0 0 8px rgba(251, 241, 199, 0.12); -} - -scale > trough > slider:disabled { - box-shadow: inset 0 0 0 2px rgba(251, 241, 199, 0.32); -} - -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(251, 241, 199, 0.7); -} - -scale indicator { - background-color: rgba(251, 241, 199, 0.3); - color: transparent; -} - -scale.marks-before:not(.marks-after) > trough > slider, scale.marks-after:not(.marks-before) > trough > slider { - transform: rotate(45deg); - border-bottom-right-radius: 0; -} - -scale.horizontal indicator { - min-height: 8px; - min-width: 1px; -} - -scale.vertical indicator { - min-height: 1px; - min-width: 8px; -} - -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(251, 241, 199, 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: 12px; - background-color: rgba(251, 241, 199, 0.12); -} - -progressbar progress { - border-radius: 12px; - background-color: #7daea3; -} - -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: #7daea3; -} - -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: 12px; -} - -levelbar block.low { - background-color: #b47109; -} - -levelbar block.high, levelbar block:not(.empty) { - background-color: #7daea3; -} - -levelbar block.full { - background-color: #6c782e; -} - -levelbar block.empty { - background-color: rgba(251, 241, 199, 0.12); -} - -/**************** - * Print dialog * -*****************/ -window.dialog.print drawing { - color: #fbf1c7; - background: none; - border: none; - padding: 0; -} - -window.dialog.print drawing paper { - padding: 0; - border: 1px solid rgba(251, 241, 199, 0.12); - background-color: #282524; - color: #fbf1c7; -} - -window.dialog.print .dialog-action-box { - margin: 12px; -} - -/********** - * Frames * - **********/ -frame, -.frame { - border: 1px solid rgba(251, 241, 199, 0.12); -} - -frame > list, -.frame > list { - border: none; -} - -frame.view, -.frame.view { - border-radius: 12px; -} - -frame.flat, -.frame.flat { - border-style: none; -} - -frame { - border-radius: 12px; -} - -frame > label { - margin: 4px; -} - -frame.flat > border, statusbar frame > border { - border: none; -} - -actionbar { - box-shadow: none; -} - -actionbar > revealer > box { - padding: 6px; - border-spacing: 6px; - box-shadow: none; - background-color: #282524; - background-clip: border-box; - border: none; - color: #fbf1c7; -} - -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; -} - -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; -} - -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; -} - -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; -} - -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; -} - -junction { - border: none; - background-image: none; -} - -separator { - min-width: 1px; - min-height: 1px; - background-color: transparent; -} - -stacksidebar + separator.vertical, -stacksidebar separator.horizontal, button.font separator, button.file separator, separator.spacer, separator.sidebar { - min-width: 0; - min-height: 0; - background-color: transparent; - background-image: none; -} - -/********* - * Lists * - *********/ -list.content, -list.boxed-list { - border-radius: 12px; - box-shadow: none; - border: none; - background-color: transparent; -} - -list.content > row, -list.boxed-list > row { - border: none; - border-radius: 3px; - background-color: rgba(251, 241, 199, 0.04); -} - -list.content > row:hover, -list.boxed-list > row:hover, list.content > row.has-open-popup, -list.boxed-list > row.has-open-popup, list.content > row:focus, -list.boxed-list > row:focus { - background-color: rgba(251, 241, 199, 0.04); -} - -list.content > row:active, -list.boxed-list > row:active { - background-color: alpha(currentColor, 0.12); -} - -list.content > row:not(:first-child), -list.boxed-list > row:not(:first-child) { - margin-top: 3px; -} - -list.content > row:first-child, -list.boxed-list > row:first-child { - border-radius: 12px 12px 3px 3px; -} - -list.content > row:last-child, -list.boxed-list > row:last-child { - border-radius: 3px 3px 12px 12px; -} - -list.content > row:only-child, -list.boxed-list > row:only-child { - border-radius: 12px; -} - -listview, -list { - border-color: rgba(251, 241, 199, 0.12); - background-color: rgba(251, 241, 199, 0.04); - 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(251, 241, 199, 0.12); -} - -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(251, 241, 199, 0.12); -} - -leaflet scrolledwindow listview, leaflet scrolledwindow list { - background-color: transparent; -} - -list.frame { - border-radius: 12px; -} - -listview.view { - color: #fbf1c7; - background-color: transparent; -} - -popover.menu listview.view { - padding: 0; -} - -popover.menu listview.view > row { - margin-left: 0; - margin-right: 0; - border-radius: 12px; -} - -row { - color: rgba(251, 241, 199, 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: #fbf1c7; - 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: #fbf1c7; - 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: #fbf1c7; - 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: rgba(29, 32, 33, 0.87); -} - -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: #fbf1c7; -} - -row:selected button image, -row:selected button label { - color: inherit; -} - -row:selected:disabled image, -row:selected:disabled label { - color: rgba(251, 241, 199, 0.5); -} - -.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 { - padding: 0; - font-weight: bold; - color: #fbf1c7; -} - -row > box.header > box.title > .subtitle { - padding: 2px 0; - font-weight: normal; - color: rgba(251, 241, 199, 0.7); -} - -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 .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.monospace text { - font-family: monospace; -} - -row.entry.error text > selection:focus-within { - background-color: alpha(#c14a4a, 0.2); -} - -row.entry.error text > cursor-handle > contents { - background-color: currentColor; -} - -row.entry.warning text > selection:focus-within { - background-color: alpha(#b47109, 0.2); -} - -row.entry.warning text > cursor-handle > contents { - background-color: currentColor; -} - -row.entry.success text > selection:focus-within { - background-color: alpha(#6c782e, 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; -} - -row.expander { - background: none; - padding: 0px; -} - -row.expander > box > list { - background: none; - color: inherit; -} - -row.expander list.nested { - color: inherit; - background-color: transparent; -} - -row.expander list.nested > row { - background-color: transparent; - border: none; - background-image: none; - transition: none; - animation: none; -} - -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: #7daea3; -} - -.osd row.expander:checked image.expander-row-arrow:not(:disabled) { - color: inherit; -} - -list.content > row.expander row.header, -list.boxed-list > row.expander row.header { - background-color: transparent; - border: none; - box-shadow: none; -} - -list.content > row.expander, -list.boxed-list > row.expander { - border: none; -} - -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(251, 241, 199, 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 #7daea3; -} - -columnview row:not(:selected) cell editablelabel.editing text selection { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -/********************* - * App Notifications * - *********************/ -.app-notification { - margin: 6px; - border-spacing: 0; - padding: 0; - border: none; - background-image: none; -} - -.app-notification button.text-button:not(:disabled) { - color: #7daea3; -} - -.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(251, 241, 199, 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: #fbf1c7; -} - -expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -expander:disabled { - color: rgba(251, 241, 199, 0.32); -} - -expander-widget > box > title { - border-radius: 12px; -} - -expander-widget > box > title:hover > expander { - color: rgba(251, 241, 199, 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(251, 241, 199, 0.12); - border-radius: 12px; - color: #fbf1c7; -} - -calendar:disabled { - color: rgba(251, 241, 199, 0.5); -} - -calendar:selected { - border-radius: 12px; -} - -calendar > header { - padding: 3px; - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -calendar > header > button { - min-height: 24px; -} - -calendar > grid { - margin: 3px; -} - -calendar > grid > label { - border-radius: 12px; - 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: #242220; -} - -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; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; - color: #fbf1c7; -} - -window.dialog.message .titlebar:backdrop { - background-color: #242220; - color: rgba(251, 241, 199, 0.7); -} - -window.dialog.message .dialog-action-area { - border-top: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.12); -} - -window.dialog.message .dialog-action-area > button.suggested-action:not(:disabled) { - color: #45707a; -} - -window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled) { - color: #c14a4a; -} - -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: 12px; -} - -/******************** - * AdwMessageDialog * - ********************/ -window.messagedialog { - background-color: #242220; - color: #fbf1c7; -} - -window.messagedialog .message-area { - padding: 24px 30px; - border-spacing: 10px; -} - -window.messagedialog .response-area > box > button.suggested { - color: #7daea3; -} - -window.messagedialog .response-area > box > button.destructive { - color: #c14a4a; -} - -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; -} - -window.messagedialog.csd:not(.solid-csd) .response-area > box.vertical > button:last-child { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; - margin-bottom: 0; -} - -/*********** - * Sidebar * - ***********/ -.sidebar { - border: none; -} - -.sidebar listview.view, -.sidebar list { - background-color: transparent; - color: inherit; -} - -leaflet.unfolded > box > stacksidebar.sidebar { - border: none; -} - -stacksidebar list { - padding: 6px; - background-color: transparent; -} - -stacksidebar row { - min-height: 24px; - padding: 6px; - border-radius: 6px; -} - -stacksidebar row:selected { - font-weight: 500; - background-color: rgba(251, 241, 199, 0.04); -} - -stacksidebar row + row { - margin-top: 3px; -} - -stacksidebar row > label { - padding-left: 6px; - padding-right: 6px; - color: inherit; -} - -separator.sidebar { - background-color: rgba(251, 241, 199, 0.12); - border-right: none; -} - -separator.sidebar.selection-mode, .selection-mode separator.sidebar { - background-color: rgba(251, 241, 199, 0.12); -} - -/********************** - * Navigation Sidebar * - **********************/ -.navigation-sidebar { - padding: 2px 4px; - border-right: none; -} - -.navigation-sidebar, .navigation-sidebar.view, .navigation-sidebar.background { - background-color: transparent; - color: inherit; -} - -.navigation-sidebar > separator { - margin: 3px 0; -} - -.navigation-sidebar > row { - min-height: 24px; - padding: 0 6px 0 6px; - margin: 1px; - border-radius: 9px; -} - -.navigation-sidebar > row:hover, .navigation-sidebar > row:focus-visible:focus-within { - background-color: alpha(currentColor, 0.08); -} - -.navigation-sidebar > row:active { - background-color: alpha(currentColor, 0.12); -} - -.navigation-sidebar > row:selected { - background-color: alpha(currentColor, 0.08); - box-shadow: none; -} - -.navigation-sidebar > row:selected label, -.navigation-sidebar > row:selected image { - color: #7daea3; - font-weight: 700; -} - -.navigation-sidebar > row:selected:hover { - background-color: alpha(currentColor, 0.08); -} - -.navigation-sidebar > row:selected:focus-visible:focus-within { - outline: none; - background-color: alpha(currentColor, 0.08); -} - -.navigation-sidebar > row:selected:focus-visible:focus-within:hover { - background-color: alpha(currentColor, 0.16); -} - -.navigation-sidebar > row:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.navigation-sidebar > row:not(:first-child) { - margin-top: 3px; -} - -/**************** - * File chooser * - ****************/ -filechooser paned > separator { - background: rgba(251, 241, 199, 0.12); -} - -filechooser paned > box #pathbarbox.view, -filechooser paned > box stack.view, -filechooser paned > box columnview.view, -filechooser paned > box gridview.view { - background-color: transparent; -} - -filechooser .dialog-action-box { - border: none; -} - -filechooser #pathbarbox { - border: none; - background-color: transparent; -} - -filechooser stack.view frame > border { - border: none; -} - -filechooserbutton > button > box { - border-spacing: 6px; -} - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; -} - -placessidebar { - background-color: transparent; -} - -placessidebar > viewport.frame { - border-style: none; -} - -placessidebar list.navigation-sidebar > row image.sidebar-icon { - color: inherit; -} - -placessidebar list.navigation-sidebar > row image.sidebar-icon:dir(ltr) { - padding-right: 8px; -} - -placessidebar list.navigation-sidebar > row image.sidebar-icon:dir(rtl) { - padding-left: 8px; -} - -placessidebar list.navigation-sidebar > row label.sidebar-label { - color: inherit; -} - -placessidebar list.navigation-sidebar > row label.sidebar-label:dir(ltr) { - padding-right: 2px; -} - -placessidebar list.navigation-sidebar > row label.sidebar-label:dir(rtl) { - padding-left: 2px; -} - -placessidebar list.navigation-sidebar > row.sidebar-placeholder-row { - background-color: alpha(currentColor, 0.08); -} - -placessidebar list.navigation-sidebar > row.sidebar-new-bookmark-row { - color: #7daea3; -} - -placessidebar list.navigation-sidebar > row.sidebar-new-bookmark-row image.sidebar-icon { - color: #7daea3; -} - -placessidebar list.navigation-sidebar > 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(#423f3e); - background-size: 1px 1px; - background-clip: content-box; - box-shadow: none; -} - -paned > separator.wide { - min-width: 6px; - min-height: 6px; - background-color: #1d2021; - background-image: image(#423f3e), image(#423f3e); - 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: 12px; -} - -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(251, 241, 199, 0.12); - box-shadow: none; -} - -infobar.info > revealer > box, infobar.info:hover > revealer > box, infobar.info:backdrop > revealer > box { - background-color: #282524; - color: #fbf1c7; -} - -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: #7daea3; -} - -infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box { - background-color: transparent; - color: #fbf1c7; - border-radius: 9px; - border: none; -} - -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: #fbf1c7; -} - -infobar.action > revealer > box *:link, infobar.action:backdrop > revealer > box *:link, infobar.question > revealer > box *:link, infobar.question:backdrop > revealer > box *:link { - color: #fbf1c7; -} - -infobar.action:hover > revealer > box, infobar.question:hover > revealer > box { - background-color: rgba(251, 241, 199, 0.04); -} - -infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box { - background-color: #b47109; - color: #fbf1c7; -} - -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: #fbf1c7; -} - -infobar.warning > revealer > box *:link, infobar.warning:backdrop > revealer > box *:link { - color: #fbf1c7; -} - -infobar.warning:hover > revealer > box { - background-color: #9c6208; -} - -infobar.error > revealer > box, infobar.error:backdrop > revealer > box { - background-color: #c14a4a; - color: #fbf1c7; -} - -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: #fbf1c7; -} - -infobar.error > revealer > box *:link, infobar.error:backdrop > revealer > box *:link { - color: #fbf1c7; -} - -infobar.error:hover > revealer > box { - background-color: #b43e3e; -} - -/************ - * Tooltips * - ************/ -tooltip { - padding: 6px 12px; - box-shadow: none; - border: none; -} - -tooltip.background { - background-color: rgba(22, 24, 25, 0.9); - color: #fbf1c7; - 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: 12px; - margin: 2px 6px 8px 6px; -} - -tooltip > box { - border-spacing: 6px; -} - -/***************** - * Color Chooser * - *****************/ -colorswatch.top { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -colorswatch.top overlay { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -colorswatch.bottom { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.bottom overlay { - border-bottom-left-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 12px; - border-bottom-left-radius: 12px; -} - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 12px; - border-bottom-right-radius: 12px; -} - -colorswatch.dark { - color: #fbf1c7; -} - -colorswatch.light { - color: rgba(29, 32, 33, 0.87); -} - -colorchooser colorswatch:hover { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - box-shadow: 0 0 0 2px #7daea3; -} - -colorswatch#add-color-button { - border-radius: 12px 0 0 12px; - color: #fbf1c7; -} - -colorswatch#add-color-button:only-child { - border-radius: 12px; -} - -colorswatch#add-color-button overlay { - background-color: rgba(251, 241, 199, 0.04); -} - -colorswatch#add-color-button overlay:hover { - background-color: rgba(251, 241, 199, 0.12); - box-shadow: none; -} - -colorswatch#add-color-button overlay:active { - background-color: rgba(251, 241, 199, 0.3); -} - -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.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -1px rgba(0, 0, 0, 0.17); -} - -colorchooser .popover.osd { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - 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(251, 241, 199, 0.1); - background-color: #242220; -} - -colorchooser .popover.osd:backdrop { - box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.2), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(251, 241, 199, 0.1); -} - -/******** - * Misc * - ********/ -.content-view { - background-color: #1d2021; -} - -/********************** - * Window Decorations * - **********************/ -window { - border: none; -} - -window.csd { - border-radius: 12px; - outline: none; - margin: 0; - transition: 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), inset 0 1px rgba(251, 241, 199, 0.1), 0 0 36px transparent; -} - -window.csd:backdrop { - transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); - 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(251, 241, 199, 0.1), 0 0 36px transparent; -} - -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; - transition: none; -} - -window.csd.maximized, window.csd.fullscreen { - box-shadow: none; - outline: none; -} - -window.solid-csd { - margin: 0; - padding: 2px; - border-radius: 0; - background-color: #1d2021; - border: 1px solid #423f3e; -} - -window.solid-csd:backdrop { - background-color: #1d2021; -} - -window.ssd { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -windowcontrols button:not(.suggested-action):not(.destructive-action) { - min-height: 22px; - min-width: 22px; - padding: 0; - margin: 0 2px; -} - -windowcontrols button.minimize:not(.suggested-action):not(.destructive-action), windowcontrols button.maximize:not(.suggested-action):not(.destructive-action), windowcontrols button.close:not(.suggested-action):not(.destructive-action) { - color: rgba(251, 241, 199, 0.7); - background-color: alpha(currentColor, 0.1); -} - -windowcontrols button.minimize:not(.suggested-action):not(.destructive-action) image, windowcontrols button.maximize:not(.suggested-action):not(.destructive-action) image, windowcontrols button.close:not(.suggested-action):not(.destructive-action) image { - padding: 0; - background: none; - box-shadow: none; -} - -windowcontrols button.minimize:hover:not(.suggested-action):not(.destructive-action), windowcontrols button.maximize:hover:not(.suggested-action):not(.destructive-action), windowcontrols button.close:hover:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; - background-color: alpha(currentColor, 0.15); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px rgba(251, 241, 199, 0.1); -} - -windowcontrols button.minimize:active:not(.suggested-action):not(.destructive-action), windowcontrols button.maximize:active:not(.suggested-action):not(.destructive-action), windowcontrols button.close:active:not(.suggested-action):not(.destructive-action) { - color: #fbf1c7; - background-color: alpha(currentColor, 0.2); -} - -windowcontrols button.minimize:backdrop:not(.suggested-action):not(.destructive-action), windowcontrols button.maximize:backdrop:not(.suggested-action):not(.destructive-action), windowcontrols button.close:backdrop:not(.suggested-action):not(.destructive-action) { - opacity: 0.65; -} - -windowcontrols { - border-spacing: 6px; -} - -windowcontrols:not(.empty).start:dir(ltr), windowcontrols:not(.empty).end:dir(rtl) { - margin-right: 4px; - margin-left: 4px; -} - -windowcontrols:not(.empty).start:dir(rtl), windowcontrols:not(.empty).end:dir(ltr) { - margin-left: 4px; - margin-right: 4px; -} - - -.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, .link selection, calendar > grid > label.today { - color: #7daea3; - background-color: rgba(125, 174, 163, 0.2); -} - -textview text selection:focus, textview text selection, label > selection, -entry > text > selection, spinbutton > text > selection, -entry headerbar popover.background entry > text > selection, -headerbar popover.background entry entry > text > selection, calendar > grid > label.today:selected { - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -.monospace { - font-family: monospace; -} - -/********************** - * Touch Copy & Paste * - **********************/ -cursor-handle { - color: #7daea3; - -gtk-icon-source: -gtk-recolor(url("assets/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(251, 241, 199, 0.12); - border-radius: 13px; - box-shadow: inset 0 -2px rgba(251, 241, 199, 0.12); - background-color: #242220; - color: #fbf1c7; - font-size: smaller; -} - -:not(decoration):not(window):drop(active) { - caret-color: #7daea3; -} - -stackswitcher { - min-height: 0; - padding: 0; - border-radius: 15px; - background-color: rgba(251, 241, 199, 0.04); - border: none; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action) { - margin: 0; - border-radius: 9999px; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action).text-button { - min-width: 100px; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action):not(:hover):not(:active):not(:checked) { - background-color: transparent; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action):focus:not(:hover):not(:checked) { - box-shadow: none; -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action):checked { - background-color: #fbf1c7; - color: rgba(29, 32, 33, 0.87); -} - -stackswitcher.linked > button:not(.suggested-action):not(.destructive-action):checked:hover { - box-shadow: none; - background-color: #fefdf7; -} - -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(251, 241, 199, 0.12); - background: none; -} - -.emoji-searchbar entry text { - background: none; - box-shadow: none; -} - -.emoji-toolbar { - padding: 0; - border-spacing: 3px; - border-top: 1px solid rgba(251, 241, 199, 0.12); - background: none; -} - -button.emoji-section { - margin: 0; - padding: 6px; - border-radius: 12px; -} - -button.emoji-section:checked { - color: #7daea3; -} - -popover.emoji-picker emoji { - font-size: x-large; - padding: 6px; - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - border-radius: 9px; -} - -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: #fbf1c7; -} - -popover.entry-completion > contents { - padding: 0; -} - -.nautilus-window.view { - background-color: #1d2021; -} - -.nautilus-window .sidebar-pane { - background-color: #1d2021; - color: #fbf1c7; -} - -.nautilus-window .sidebar-pane:backdrop { - background-color: #1d2021; - transition: none; -} - -.nautilus-window placesview label { - color: rgba(251, 241, 199, 0.7); -} - -.nautilus-window flap > separator { - background-color: transparent; -} - -.nautilus-window .nautilus-grid-view .view, -.nautilus-window .nautilus-list-view .view { - background-color: transparent; -} - -.nautilus-window .nautilus-grid-view gridview.view { - margin: 6px; - padding: 6px; -} - -.nautilus-window tabbar .box { - background-color: transparent; - box-shadow: none; - padding: 0; -} - -.nautilus-window tabbar .box:backdrop { - background-color: transparent; - box-shadow: none; -} - -.nautilus-window tabbox, .nautilus-window tabbox:backdrop { - transition: none; - background-color: transparent; -} - -.nautilus-window tabbox > tabboxchild > tab { - color: rgba(251, 241, 199, 0.7); -} - -.nautilus-window tabbox > tabboxchild > tab:hover { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; -} - -.nautilus-window tabbox > tabboxchild > tab:disabled { - color: rgba(251, 241, 199, 0.32); -} - -.nautilus-window tabbox > tabboxchild > tab:checked, .nautilus-window tabbox > tabboxchild > tab:selected { - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; - box-shadow: none; -} - -.nautilus-window tabbox > tabboxchild > tab:checked:disabled, .nautilus-window tabbox > tabboxchild > tab:selected:disabled { - color: rgba(251, 241, 199, 0.5); -} - -.nautilus-window tabbox > tabboxchild > tab button.tab-close-button { - color: #fbf1c7; -} - -.nautilus-window tabbox > tabboxchild > tab button.tab-close-button:hover, .nautilus-window tabbox > tabboxchild > tab button.tab-close-button:active { - color: #fbf1c7; -} - -.nautilus-window tabbox > tabboxchild > tab button.tab-close-button:disabled { - color: #fbf1c7; -} - -.nautilus-window .floating-bar { - min-height: 32px; - padding: 0; - margin: 6px; - border-style: none; - border-radius: 9px; - background-color: #1d2021; - color: #7daea3; - 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: rgba(29, 32, 33, 0.87); -} - -.nautilus-window banner > revealer > widget { - color: #fbf1c7; - background-color: rgba(40, 37, 36, 0.5); - border-radius: 9px; - margin: 9px; -} - -.nautilus-window banner > revealer > widget:hover { - background-color: #282524; - border-radius: 9px; - margin: 9px; -} - -.nautilus-window banner > revealer > widget button { - color: #fbf1c7; - background-color: rgba(125, 174, 163, 0.3); -} - -.nautilus-window banner > revealer > widget button:hover { - background-color: rgba(125, 174, 163, 0.6); -} - -#NautilusQueryEditor > menubutton > button.image-button { - min-width: 24px; - min-height: 24px; - padding: 3px; - margin-right: -5px; -} - -#NautilusQueryEditor > menubutton > button.image-button:checked image { - color: rgba(29, 32, 33, 0.87); -} - -#NautilusQueryEditor > text, -#NautilusQueryEditor > box, -#NautilusQueryEditor > menubutton { - margin: 3px 0; -} - -#NautilusQueryEditorTag { - background-color: rgba(251, 241, 199, 0.12); -} - -#NautilusQueryEditorTag > button.image-button { - margin: 0; - padding: 0; -} - -#NautilusPathBar { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - margin: 6px 0; -} - -#NautilusPathButton { - margin: 0 3px; - border-radius: 12px; -} - -#NautilusPathButton.current-dir { - color: #7daea3; -} - -#NautilusPathButton.current-dir:hover, #NautilusPathButton.current-dir:active { - background: none; - box-shadow: none; -} - -#NautilusPathButton:first-child { - margin-left: 0; -} - -#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.card { - background-color: #282524; -} - -.small .display-container.card { - border-radius: 0; - box-shadow: none; - border-width: 0 0 1px 0; -} - -.display-container .history-view { - background-color: transparent; -} - -.display-container #displayitem { - padding: 0 12px 8px 0; - font-size: 1.4em; - border-top: 1px solid rgba(251, 241, 199, 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(251, 241, 199, 0.1); -} - -leaflet button.number-button:hover { - background-color: rgba(251, 241, 199, 0.2); -} - -leaflet button.number-button:active { - background-color: rgba(251, 241, 199, 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: #7daea3; -} - -label.secondary-label { - color: rgba(251, 241, 199, 0.5); -} - -toastoverlay datechooser.view, -toastoverlay agenda-view.view, -toastoverlay agenda-view.view list, -toastoverlay stack.view { - background-color: transparent; -} - -calendar-view { - font-size: 10pt; -} - -calendar-view:selected { - color: #7daea3; - font-weight: bold; -} - -calendar-view.header, -label.header { - font-size: 10pt; - font-weight: bold; - color: rgba(251, 241, 199, 0.5); -} - -calendar-view.current, -weekgrid.current { - background-color: alpha(#7daea3, 0.3); -} - -popover.events { - background-color: #242220; - padding: 0; -} - -popover.events box { - border-top-left-radius: 12px; - border-top-right-radius: 12px; -} - -popover.events list { - background-color: #282524; - border-radius: 12px; -} - -popover.events scrolledwindow { - border-width: 0; -} - -popover.events button { - border-radius: 12px; - 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: 12px; -} - -event.timed widget.edge { - border-radius: 6px; - min-width: 5px; -} - -event.slanted-start, event.slanted-end:dir(rtl) { - padding-left: 16px; - border-radius: 0 6px 6px 0; -} - -event.slanted-end, event.slanted-start:dir(rtl) { - padding-right: 16px; - border-radius: 6px 0 0 6px; -} - -event:not(.timed).color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); -} - -event.timed, event:not(.timed).color-light { - 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: #282524; -} - -.calendar-list { - background-color: transparent; -} - -.calendar-list > list { - border-radius: 4px; -} - -menubutton.flat.sources-button { - margin-top: 0; - margin-bottom: 0; - border-radius: 0; - border-top-style: none; - border-bottom-style: none; -} - -menubutton.flat.sources-button:hover:not(:backdrop) { - background-image: none; - text-shadow: none; -} - -menubutton.flat.sources-button > button { - border-radius: 0 0 12px 12px; -} - -.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 { - padding: 6px; -} - -datechooser .current-week { - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; - border-radius: 12px; -} - -datechooser navigator { - margin-right: 6px; - margin-left: 6px; - margin-bottom: 6px; -} - -datechooser navigator label { - font-weight: bold; -} - -datechooser navigator button.flat, -datechooser navigator button.image-button { - min-height: 36px; - min-width: 36px; - padding: 0; -} - -datechooser .weeknum, -datechooser .weekday { - color: rgba(251, 241, 199, 0.5); - 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: #fbf1c7; - border-radius: 50%; - min-height: 3px; - min-width: 3px; -} - -datechooser button.day:selected, datechooser button.day.today:selected { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); - font-weight: bold; -} - -datechooser button.day:selected dot, datechooser button.day.today:selected dot { - background-color: rgba(29, 32, 33, 0.87); -} - -datechooser button.day.today { - color: #7daea3; -} - -datechooser button.day.today dot { - background-color: #7daea3; -} - -datechooser button.day.other-month:not(:hover), datechooser button.day.other-month:backdrop { - color: rgba(251, 241, 199, 0.32); -} - -datechooser button.day.other-month:not(:hover) dot, datechooser button.day.other-month:backdrop dot { - background-color: rgba(251, 241, 199, 0.32); -} - -datechooser button.day.other-month:hover:not(:backdrop) { - color: rgba(251, 241, 199, 0.5); -} - -datechooser button.day.other-month:hover:not(:backdrop) dot { - background-color: rgba(251, 241, 199, 0.5); -} - -.week-header { - padding: 0; -} - -.week-header > box:first-child { - border-bottom: 1px solid rgba(251, 241, 199, 0.12); -} - -.week-header .week-number { - font-size: 16pt; - font-weight: bold; - padding: 12px 12px 18px 12px; - color: rgba(251, 241, 199, 0.3); -} - -.week-header.week-temperature { - font-size: 10pt; - font-weight: bold; - color: rgba(251, 241, 199, 0.5); -} - -.week-header.lines { - color: rgba(251, 241, 199, 0.12); -} - -weekhourbar > label { - font-size: 10pt; - padding: 4px 6px; -} - -.week-view .lines { - color: rgba(251, 241, 199, 0.12); -} - -weekgrid > widget.now-strip { - background-color: alpha(#7daea3, 0.8); - margin: 0 0 0 1px; - min-height: 3px; -} - -weekgrid:selected, weekgrid.dnd, -.week-header:selected, -.week-header.dnd { - background-color: alpha(#7daea3, 0.25); -} - -monthcell { - border: solid 1px rgba(251, 241, 199, 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: #282524; - transition: background-color 200ms; - color: #fbf1c7; -} - -monthcell:selected { - background-color: alpha(#7daea3, 0.1); -} - -monthcell:selected:hover { - background-color: alpha(#7daea3, 0.2); -} - -monthcell:selected label.day-label { - font-weight: bold; -} - -monthcell:nth-child(7n + 1) { - border-left-width: 0; -} - -monthcell.today { - background-color: alpha(#7daea3, 0.2); -} - -monthcell.today:hover { - background-color: alpha(#7daea3, 0.3); - color: #7daea3; -} - -monthcell.today:selected { - background-color: alpha(#7daea3, 0.25); -} - -monthcell.today:selected:hover { - background-color: alpha(#7daea3, 0.35); -} - -monthcell label { - color: #fbf1c7; - font-size: 0.9rem; -} - -monthcell label.day-label { - font-size: 1rem; -} - -monthcell.out-of-month { - background-color: rgba(251, 241, 199, 0.04); -} - -monthcell.out-of-month label { - color: rgba(251, 241, 199, 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: 12px; - padding: 6px; -} - -.notes-section box > textview > text { - background: none; -} - -agenda-view list.background > row { - padding: 2px 12px; -} - -agenda-view list.background > label { - padding: 6px 12px; -} - -label.no-events { - font-style: italic; -} - -searchbutton > popover > arrow { - background: none; - border: none; -} - -menubutton stack > box { - border-spacing: 6px; -} - -#TweakPreferencesPage label.dim-label { - color: rgba(251, 241, 199, 0.32); -} - -#TweakPreferencesPage label.dim-label { - color: rgba(251, 241, 199, 0.32); -} - -.tweak-titlebar-left { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - border-top-left-radius: 12px; -} - -.tweak-titlebar-left:backdrop { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - border-top-left-radius: 12px; -} - -.sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow .dim-label, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow row label.subtitle, row .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow label.subtitle, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow row.expander image.expander-row-arrow, row.expander .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow image.expander-row-arrow { - color: rgba(29, 32, 33, 0.38); -} - -.details-page { - margin: 24px 0px; -} - -.installed-overlay-box { - font-size: smaller; - background-color: #7daea3; - border-radius: 0; - color: rgba(29, 32, 33, 0.87); - 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; -} - -carousel.card { - border: none; - background-color: rgba(251, 241, 199, 0.04); -} - -.smaller { - font-size: smaller; -} - -.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%; -} - -gs-summary-tile image.loading-icon { - background-color: rgba(251, 241, 199, 0.12); - border-radius: 12px; -} - -.review-row > box { - margin: 12px; - border-spacing: 3px; -} - -.review-row textview { - background: none; -} - -.review-row .edit-icon { - min-width: 24px; - min-height: 24px; - padding: 6px; -} - -.review-textbox { - padding: 6px; -} - -.origin-rounded-box { - background-color: rgba(251, 241, 199, 0.12); - border-radius: 9999px; - padding: 4px; -} - -.origin-beta { - color: #b47109; -} - -.origin-button > button { - padding: 3px 9px; -} - -clamp.medium .category-tile:not(.category-tile-iconless) { - font-size: large; -} - -clamp.large .category-tile:not(.category-tile-iconless) { - font-size: larger; -} - -flowboxchild.card:not(.category-tile) { - padding: 0; - box-shadow: none; - border: none; - background-color: transparent; - background-image: none; -} - -.category-tile.card { - padding: 21px; - border: none; - border-radius: 12px; - min-width: 140px; - font-weight: 900; - font-size: larger; -} - -.category-tile.card:not(.category-tile-iconless), .category-tile.card:not(.category-tile-iconless):active { - transition: all 75ms cubic-bezier(0, 0, 0.2, 1); - animation: none; -} - -.category-tile.card.category-tile-iconless { - padding: 9px 15px; - min-width: 130px; - font-size: 105%; - font-weight: normal; -} - -.category-tile.card.category-create { - background: linear-gradient(180deg, #ce8cd7 0%, #2861c6 100%); - color: white; -} - -.category-tile.card.category-create:hover { - background: linear-gradient(180deg, shade(#ce8cd7, 1.07) 0%, shade(#2861c6, 1.1) 100%); - color: white; -} - -.category-tile.card.category-create:active { - background: linear-gradient(180deg, shade(#ce8cd7, 0.95) 0%, shade(#2861c6, 0.95) 100%); - color: white; -} - -.category-tile.card.category-develop { - background-color: #5e5c64; - color: white; -} - -.category-tile.card.category-develop:hover { - background-color: shade(#5e5c64, 1.2); - color: white; -} - -.category-tile.card.category-develop:active { - background-color: shade(#5e5c64, 0.95); - color: white; -} - -.category-tile.card.category-learn { - background: linear-gradient(180deg, #2ec27e 30%, #27a66c 100%); - color: white; -} - -.category-tile.card.category-learn:hover { - background: linear-gradient(180deg, shade(#2ec27e, 1.06) 30%, shade(#27a66c, 1.06) 100%); - color: white; -} - -.category-tile.card.category-learn:active { - background: linear-gradient(180deg, shade(#2ec27e, 0.95) 30%, shade(#27a66c, 0.95) 100%); - color: white; -} - -.category-tile.card.category-play { - background: linear-gradient(75deg, #f9e2a7 0%, #eb5ec3 50%, #6d53e0 100%); - color: #393484; -} - -.category-tile.card.category-play:hover { - background: linear-gradient(75deg, shade(#f9e2a7, 1.07) 0%, shade(#eb5ec3, 1.07) 50%, shade(#6d53e0, 1.07) 100%); - color: #393484; -} - -.category-tile.card.category-play:active { - background: linear-gradient(75deg, shade(#f9e2a7, 0.97) 0%, shade(#eb5ec3, 0.95) 50%, shade(#6d53e0, 1.07) 100%); - color: #393484; -} - -.category-tile.card.category-socialize { - background: linear-gradient(90deg, #ef4e9b 0%, #f77466 100%); - color: rgba(251, 241, 199, 0.7); -} - -.category-tile.card.category-socialize:hover { - background: linear-gradient(90deg, shade(#ef4e9b, 1.08) 0%, shade(#f77466, 1.08) 100%); -} - -.category-tile.card.category-socialize:active { - background: linear-gradient(90deg, shade(#ef4e9b, 0.95) 0%, shade(#f77466, 0.95) 100%); -} - -.category-tile.card.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(251, 241, 199, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 241, 199, 0.12) 1px, transparent 1px); - background-size: 10px 10px, 10px 10px; - background-position: -1px -4px, center -1px; - background-repeat: repeat; -} - -.category-tile.card.category-work:hover { - color: #1c71d8; - background-color: #fefcef; - background-image: linear-gradient(rgba(251, 241, 199, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 241, 199, 0.12) 1px, transparent 1px); -} - -.category-tile.card.category-work:active { - color: #1c71d8; - background-color: #fcf4bf; - background-image: linear-gradient(rgba(251, 241, 199, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 241, 199, 0.12) 1px, transparent 1px); - background-size: 10px 10px, 10px 10px; - background-position: -1px -4px, center -1px; - background-repeat: repeat; -} - -.featured-tile { - padding: 0; - box-shadow: none; - color: #fbf1c7; -} - -.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(251, 241, 199, 0.04); - color: #fbf1c7; - border: 1px solid rgba(251, 241, 199, 0.12); -} - -.application-details-infobar.warning { - background-color: #b47109; - color: #fbf1c7; - border: 1px solid rgba(251, 241, 199, 0.12); -} - -.card.info { - background-color: #1e2122; - color: #fbf1c7; -} - -.card.warning { - background-color: #1e2121; - color: #fbf1c7; -} - -.infobox { - border-spacing: 6px; - padding: 12px; -} - -@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, #7daea3 2px, alpha(#7daea3, 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(251, 241, 199, 0.12), rgba(251, 241, 199, 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(251, 241, 199, 0.5); - background-image: none; - background-color: rgba(251, 241, 199, 0.3); -} - -.review-histogram star-image { - color: rgba(251, 241, 199, 0.5); -} - -.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(251, 241, 199, 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; -} - -flowboxchild { - padding: 0px; -} - -star-image > image.starred { - color: #d8a657; - transition-duration: 200ms; -} - -star-image > image.starred:hover { - color: #b47109; -} - -star-image > image.non-starred { - opacity: 0.2; - transition-duration: 200ms; -} - -star-image > image.non-starred:hover { - color: #d8a657; - opacity: 0.7; -} - -.dimmer-label { - opacity: 0.25; -} - -.update-failed-details { - font-family: Monospace; - font-size: smaller; - padding: 16px; -} - -.upgrade-banner { - padding: 0px; - border-radius: 12px; - border: none; -} - -.upgrade-banner-background { - background: linear-gradient(to bottom, #6c782e, #45707a); - color: white; -} - -.upgrade-buttons #button_upgrades_install, -.upgrade-buttons #button_upgrades_install_cancel { - 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(251, 241, 199, 0.5); - 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(251, 241, 199, 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 12px 12px 0; -} - -app-context-bar > box:first-child > button.flat { - border-radius: 0; -} - -app-context-bar > box:first-child > button.flat:first-child { - border-radius: 12px 0 0 12px; -} - -app-context-bar > box > button.flat { - border-left-color: rgba(251, 241, 199, 0.12); -} - -.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: #fbf1c7; - background-color: rgba(251, 241, 199, 0.12); -} - -.context-tile-lozenge.green, .context-tile-lozenge.details-rating-0 { - color: #3a4119; - background-color: rgba(108, 120, 46, 0.15); -} - -.context-tile-lozenge.blue, .context-tile-lozenge.details-rating-5 { - color: #45707a; - background-color: rgba(69, 112, 122, 0.15); -} - -.context-tile-lozenge.yellow, .context-tile-lozenge.details-rating-12 { - color: #6b4305; - background-color: rgba(180, 113, 9, 0.15); -} - -.context-tile-lozenge.details-rating-15 { - color: #c35e0a; - background-color: rgba(195, 94, 10, 0.15); -} - -.context-tile-lozenge.red, .context-tile-lozenge.details-rating-18 { - color: #8e3131; - background-color: rgba(193, 74, 74, 0.15); -} - -.eol-red { - font-weight: bold; - color: #c14a4a; -} - -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: #c14a4a; -} - -@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, #1d2021 48px, #1d2021); -} - -@define-color weather_temp_chart_fill_color rgba(180, 113, 9, 0.5); -@define-color weather_temp_chart_stroke_color #835307; -@define-color weather_thermometer_warm_color #b47109; -@define-color weather_thermometer_cold_color #45707a; -#places-label { - font-weight: bold; -} - -#temperature-label { - font-size: 32pt; - font-weight: 900; - margin-left: 9px; -} - -#conditions-grid *:backdrop { - color: rgba(251, 241, 199, 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: 12px; -} - -.forecast-card separator { - background-color: #1d2021; -} - -#daily-forecast-box > separator:last-child { - background-color: transparent; - min-width: 0; -} - -#conditions-grid, -#attributionGrid { - margin-left: 18px; - margin-right: 18px; -} - -#weather-page .small .forecast-card { - margin-left: 0; - margin-right: 0; - border-radius: 0; - border-width: 1px 0; -} - -.forecast-temperature-label { - font-weight: bold; - color: #ae7b03; -} - -WeatherThermometer { - margin-bottom: 12px; -} - -WeatherThermometer > label.high { - font-weight: bold; - color: #b47109; -} - -WeatherThermometer > label.low { - font-weight: bold; - color: #45707a; -} - -.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(251, 241, 199, 0.12); -} - -.search-view { - background-color: #7daea3; - color: rgba(29, 32, 33, 0.87); -} - -.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; -} - -#gnome-system-monitor.background.csd { - background-color: #1d2021; -} - -#gnome-system-monitor treeview.view { - background-color: #282524; - padding: 4px; - border-radius: 9px; -} - -.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: #7daea3; -} - -.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: #7daea3; - background-color: alpha(#45707a, 0.25); -} - -.naut .clock-time, -.astro .clock-time { - color: #e78a4e; - background-color: alpha(#c35e0a, 0.25); -} - -.civil .clock-time, -.day .clock-time { - color: #d8a657; - background: alpha(#b47109, 0.25); -} - -headerbar splitbutton notification button { - margin: 0; - min-height: 24px; - min-width: 24px; - padding: 0; -} - -popover.background.global-search > arrow, -popover.background.global-search > contents { - padding: 0; -} - -panelframeswitcher { - padding: 3px; -} - -.frameheader.header { - min-height: 24px; - background-color: #282524; -} - -.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(251, 241, 199, 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: 12px; - 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(251, 241, 199, 0.04); -} - -.style-variant button.toggle:active > stylevariantpreview > .wallpaper { - outline-color: rgba(251, 241, 199, 0.3); -} - -.style-variant button.toggle:checked > stylevariantpreview > .wallpaper { - outline-color: #7daea3; -} - -playlistview scrollbar.overlay-indicator.dragging, playlistview scrollbar.overlay-indicator.hovering { - background-color: transparent; -} - -playlistview queuerow picture.cover, -playlistview queuerow image.card { - border: none; -} - -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; -} - -/* Tagger */ -list.music-list { - margin: -40px 0; - background-color: transparent; -} - -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: #fbf1c7; -} - -avatar.image { - background: none; -} - -.card { - border-radius: 12px; - border: none; - background-clip: border-box; - color: rgba(251, 241, 199, 0.7); - box-shadow: none; - outline: none; - background-color: rgba(251, 241, 199, 0.04); - color: #fbf1c7; -} - -.card.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 300ms cubic-bezier(0, 0, 0.2, 1); - background-color: rgba(251, 241, 199, 0.08); - background-image: radial-gradient(circle, transparent 10%, transparent 0%); - background-repeat: no-repeat; - background-position: center; - background-size: 1000% 1000%; - outline: 0 solid transparent; - outline-offset: 2px; - color: #fbf1c7; - background-color: rgba(251, 241, 199, 0.04); -} - -.card.activatable:hover { - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -.card.activatable: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, alpha(currentColor, 0.08) 10%, transparent 0%); - background-size: 0% 0%; - background-color: alpha(currentColor, 0.08); - color: #fbf1c7; - outline: 0 solid transparent; -} - -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.1), 0 4px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.1), inset 0 1px rgba(251, 241, 199, 0.1); - background-color: #242220; - color: #fbf1c7; - border: none; -} - -toast:dir(ltr) { - padding-left: 12px; -} - -toast:dir(rtl) { - padding-right: 12px; -} - -toast > label { - margin: 0 6px; -} - -viewswitcher { - margin: 0; - border-spacing: 3px; -} - -viewswitcher.wide button.toggle { - border-radius: 3px; -} - -viewswitcher.wide button.toggle:first-child { - border-top-left-radius: 18px; - border-bottom-left-radius: 18px; -} - -viewswitcher.wide button.toggle:last-child { - border-top-right-radius: 18px; - border-bottom-right-radius: 18px; -} - -viewswitcher.narrow button.toggle { - border-radius: 0 0 3px 3px; - margin: 0; -} - -viewswitcher.narrow button.toggle:first-child { - border-bottom-left-radius: 12px; -} - -viewswitcher.narrow button.toggle:last-child { - border-bottom-right-radius: 12px; -} - -viewswitcher button.toggle { - font-weight: bold; - padding: 0; -} - -viewswitcher button.toggle:focus:not(:hover):not(:active) { - box-shadow: none; - outline: none; -} - -viewswitcher button.toggle > stack > box.narrow { - font-size: 0.75rem; - padding-top: 8px; - padding-bottom: 4px; - border-spacing: 3px; -} - -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; -} - -viewswitcherbar actionbar > revealer > box { - padding: 0; -} - -viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle { - border-radius: 12px; - margin: 3px 0; -} - -viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle > stack > box.narrow { - padding-top: 5px; - padding-bottom: 1px; - border-spacing: 0; -} - -viewswitchertitle { - margin-top: 0; - margin-bottom: 0; -} - -viewswitchertitle viewswitcher { - margin-left: 12px; - margin-right: 12px; -} - -viewswitchertitle viewswitcher.narrow { - margin-top: 0; - margin-bottom: 0; -} - -viewswitchertitle viewswitcher.narrow button.toggle > stack > box.narrow { - padding-top: 0; - padding-bottom: 0; - border-spacing: 0; -} - -viewswitchertitle viewswitcher.wide { - margin-top: 0; - margin-bottom: 0; -} - -viewswitchertitle windowtitle { - margin-top: 0; - margin-bottom: 0; -} - -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: #fbf1c7; -} - -indicatorbin > mask { - padding: 1px; - background: black; -} - -indicatorbin.needs-attention > indicator { - background-color: #7daea3; -} - -indicatorbin.needs-attention > indicator > label { - color: rgba(29, 32, 33, 0.87); -} - -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: 12px; -} - -preferencesgroup > box button.background-preview-button.toggle:hover { - outline-color: rgba(251, 241, 199, 0.04); -} - -preferencesgroup > box button.background-preview-button.toggle:active { - outline-color: rgba(251, 241, 199, 0.3); -} - -preferencesgroup > box button.background-preview-button.toggle:checked { - outline-color: #7daea3; -} - -preferencesgroup > box .cutout-button { - background-color: #282524; -} - -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; - color: #7daea3; - border-radius: 12px; - margin-top: 3px; -} - -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; -} - -flap > dimming, -leaflet > dimming, -navigation-view > dimming, -overlay-split-view > dimming { - background-color: rgba(29, 32, 33, 0.2); - background-image: none; -} - -flap > border, -leaflet > border, -navigation-view > border, -overlay-split-view > border { - background-color: transparent; - background-image: none; -} - -flap > shadow, -leaflet > shadow, -navigation-view > shadow, -overlay-split-view > shadow { - min-width: 56px; - min-height: 56px; -} - -flap > shadow.left, -leaflet > shadow.left, -navigation-view > shadow.left, -overlay-split-view > shadow.left { - background-image: linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.7), alpha(rgba(29, 32, 33, 0.2), 0.14) 40px, alpha(rgba(29, 32, 33, 0.2), 0) 56px), linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.4), alpha(rgba(29, 32, 33, 0.2), 0.14) 7px, alpha(rgba(29, 32, 33, 0.2), 0) 24px); -} - -flap > shadow.right, -leaflet > shadow.right, -navigation-view > shadow.right, -overlay-split-view > shadow.right { - background-image: linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.7), alpha(rgba(29, 32, 33, 0.2), 0.14) 40px, alpha(rgba(29, 32, 33, 0.2), 0) 56px), linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.4), alpha(rgba(29, 32, 33, 0.2), 0.14) 7px, alpha(rgba(29, 32, 33, 0.2), 0) 24px); -} - -flap > shadow.up, -leaflet > shadow.up, -navigation-view > shadow.up, -overlay-split-view > shadow.up { - background-image: linear-gradient(to bottom, alpha(rgba(29, 32, 33, 0.2), 0.7), alpha(rgba(29, 32, 33, 0.2), 0.14) 40px, alpha(rgba(29, 32, 33, 0.2), 0) 56px), linear-gradient(to bottom, alpha(rgba(29, 32, 33, 0.2), 0.4), alpha(rgba(29, 32, 33, 0.2), 0.14) 7px, alpha(rgba(29, 32, 33, 0.2), 0) 24px); -} - -flap > shadow.down, -leaflet > shadow.down, -navigation-view > shadow.down, -overlay-split-view > shadow.down { - background-image: linear-gradient(to top, alpha(rgba(29, 32, 33, 0.2), 0.7), alpha(rgba(29, 32, 33, 0.2), 0.14) 40px, alpha(rgba(29, 32, 33, 0.2), 0) 56px), linear-gradient(to top, alpha(rgba(29, 32, 33, 0.2), 0.4), alpha(rgba(29, 32, 33, 0.2), 0.14) 7px, alpha(rgba(29, 32, 33, 0.2), 0) 24px); -} - -.sidebar-pane .sidebar > scrolledwindow, -.sidebar-pane toolbarview > scrolledwindow, .sidebar-pane, .toolbar, filechooser paned > box, placessidebar > scrolledwindow, agenda-view list.background, .tweak-titlebar-left, .tweak-titlebar-left:backdrop, leaflet.unfolded > box > scrolledwindow, leaflet.unfolded .contacts-contact-list > scrolledwindow, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow { - background-color: #141617; - color: #fbf1c7; - border-radius: none; - margin: 0; -} - -.sidebar-pane .sidebar > scrolledwindow .dim-label, -.sidebar-pane toolbarview > scrolledwindow .dim-label, .sidebar-pane .dim-label, .toolbar .dim-label, filechooser paned > box .dim-label, placessidebar > scrolledwindow .dim-label, agenda-view list.background .dim-label, .tweak-titlebar-left .dim-label, leaflet.unfolded > box > scrolledwindow .dim-label, leaflet.unfolded .contacts-contact-list > scrolledwindow .dim-label, .sidebar-pane row label.subtitle, row .sidebar-pane label.subtitle, .toolbar row label.subtitle, row .toolbar label.subtitle, filechooser paned > box row label.subtitle, row filechooser paned > box label.subtitle, placessidebar > scrolledwindow row label.subtitle, row placessidebar > scrolledwindow label.subtitle, agenda-view list.background row label.subtitle, row agenda-view list.background label.subtitle, .tweak-titlebar-left row label.subtitle, row .tweak-titlebar-left label.subtitle, leaflet.unfolded > box > scrolledwindow row label.subtitle, row leaflet.unfolded > box > scrolledwindow label.subtitle, leaflet.unfolded .contacts-contact-list > scrolledwindow row label.subtitle, row leaflet.unfolded .contacts-contact-list > scrolledwindow label.subtitle, .sidebar-pane row.expander image.expander-row-arrow, row.expander .sidebar-pane image.expander-row-arrow, .toolbar row.expander image.expander-row-arrow, row.expander .toolbar image.expander-row-arrow, filechooser paned > box row.expander image.expander-row-arrow, row.expander filechooser paned > box image.expander-row-arrow, placessidebar > scrolledwindow row.expander image.expander-row-arrow, row.expander placessidebar > scrolledwindow image.expander-row-arrow, agenda-view list.background row.expander image.expander-row-arrow, row.expander agenda-view list.background image.expander-row-arrow, .tweak-titlebar-left row.expander image.expander-row-arrow, row.expander .tweak-titlebar-left image.expander-row-arrow, leaflet.unfolded > box > scrolledwindow row.expander image.expander-row-arrow, row.expander leaflet.unfolded > box > scrolledwindow image.expander-row-arrow, leaflet.unfolded .contacts-contact-list > scrolledwindow row.expander image.expander-row-arrow, row.expander leaflet.unfolded .contacts-contact-list > scrolledwindow image.expander-row-arrow { - color: rgba(29, 32, 33, 0.38); -} - -.nautilus-window placessidebar > scrolledwindow { - background-color: #1d2021; - color: #fbf1c7; - border-radius: none; - margin: 0; -} - -.nautilus-window placessidebar > scrolledwindow .dim-label, .nautilus-window placessidebar > scrolledwindow row label.subtitle, row .nautilus-window placessidebar > scrolledwindow label.subtitle, .nautilus-window placessidebar > scrolledwindow row.expander image.expander-row-arrow, row.expander .nautilus-window placessidebar > scrolledwindow image.expander-row-arrow { - color: rgba(29, 32, 33, 0.38); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider, placessidebar > scrolledwindow > scrollbar > range > trough > slider, .nautilus-window placessidebar scrollbar > range > trough > slider, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar > range > trough > slider { - background-color: rgba(251, 241, 199, 0.5); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider:hover, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider:hover, placessidebar > scrolledwindow > scrollbar > range > trough > slider:hover, .nautilus-window placessidebar scrollbar > range > trough > slider:hover, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider:hover, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider:hover { - background-color: rgba(251, 241, 199, 0.7); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider:active, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider:active, placessidebar > scrolledwindow > scrollbar > range > trough > slider:active, .nautilus-window placessidebar scrollbar > range > trough > slider:active, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider:active, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider:active { - background-color: #fbf1c7; -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider:disabled, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider:disabled, placessidebar > scrolledwindow > scrollbar > range > trough > slider:disabled, .nautilus-window placessidebar scrollbar > range > trough > slider:disabled, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider:disabled, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider:disabled { - background-color: rgba(251, 241, 199, 0.32); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - background-color: rgba(29, 32, 33, 0.38); -} - -.sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { - background-color: rgba(29, 32, 33, 0.3); -} - -.content-pane toolbarview > stack, -.content-pane toolbarview > box > stack.view, calendar-view { - /* background-color: if($variant == 'light', $grey-150, $grey-850); - border-radius: $corner-radius; */ - margin: 6px; -} - -.nautilus-window .nautilus-grid-view, -.nautilus-window .nautilus-list-view { - background-color: rgba(251, 241, 199, 0.04); - border-radius: 12px; - margin: 6px; -} - -placessidebar list.navigation-sidebar, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar { - padding: 6px 0 6px 6px; - background: none; - color: rgba(251, 241, 199, 0.7); -} - -placessidebar list.navigation-sidebar > separator, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > separator, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > separator, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > separator { - background-color: transparent; -} - -placessidebar list.navigation-sidebar > row, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row { - color: rgba(29, 32, 33, 0.6); - border-radius: 9px; - color: #fbf1c7; - padding: 7px 0; -} - -placessidebar list.navigation-sidebar > row:hover, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:hover, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:hover, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:hover, placessidebar list.navigation-sidebar > row:active, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:active, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:active, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:active, placessidebar list.navigation-sidebar > row:focus, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:focus, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:focus, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:focus { - color: #fbf1c7; -} - -placessidebar list.navigation-sidebar > row:selected, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:selected, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:selected, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:selected { - font-weight: 500; - background-color: rgba(251, 241, 199, 0.04); - color: #7daea3; - /* border-left: 3px solid $primary; */ -} - -placessidebar list.navigation-sidebar > row:selected:hover, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:selected:hover, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:selected:hover, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:selected:hover, placessidebar list.navigation-sidebar > row:selected:focus, .nautilus-window placessidebar > scrolledwindow > viewport > .navigation-sidebar > row:selected:focus, leaflet.unfolded .contacts-contact-list > scrolledwindow > viewport > .navigation-sidebar > row:selected:focus, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > .navigation-sidebar > row:selected:focus { - background-color: rgba(40, 37, 36, 0.9); - color: #fbf1c7; -} - -.content-pane scrolledwindow scrollbar.top, .sidebar-pane .sidebar > scrolledwindow > scrollbar.top, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.top, filechooser paned > box scrolledwindow scrollbar.top, placessidebar > scrolledwindow > scrollbar.top, .nautilus-window placessidebar scrollbar.top, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.top, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.top, leaflet.unfolded > box > scrolledwindow > scrollbar.top, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.top, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.top { - border-bottom: none; -} - -.content-pane scrolledwindow scrollbar.bottom, .sidebar-pane .sidebar > scrolledwindow > scrollbar.bottom, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.bottom, filechooser paned > box scrolledwindow scrollbar.bottom, placessidebar > scrolledwindow > scrollbar.bottom, .nautilus-window placessidebar scrollbar.bottom, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.bottom, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.bottom, leaflet.unfolded > box > scrolledwindow > scrollbar.bottom, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.bottom, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.bottom { - border-top: none; -} - -.content-pane scrolledwindow scrollbar.left, .sidebar-pane .sidebar > scrolledwindow > scrollbar.left, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.left, filechooser paned > box scrolledwindow scrollbar.left, placessidebar > scrolledwindow > scrollbar.left, .nautilus-window placessidebar scrollbar.left, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.left, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.left, leaflet.unfolded > box > scrolledwindow > scrollbar.left, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.left, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.left { - border-right: none; -} - -.content-pane scrolledwindow scrollbar.right, .sidebar-pane .sidebar > scrolledwindow > scrollbar.right, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.right, filechooser paned > box scrolledwindow scrollbar.right, placessidebar > scrolledwindow > scrollbar.right, .nautilus-window placessidebar scrollbar.right, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.right, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.right, leaflet.unfolded > box > scrolledwindow > scrollbar.right, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.right, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.right { - border-left: none; -} - -.content-pane scrolledwindow scrollbar > range > trough > slider, .sidebar-pane .sidebar > scrolledwindow > scrollbar > range > trough > slider, -.sidebar-pane toolbarview > scrolledwindow > scrollbar > range > trough > slider, filechooser paned > box scrolledwindow scrollbar > range > trough > slider, placessidebar > scrolledwindow > scrollbar > range > trough > slider, .nautilus-window placessidebar scrollbar > range > trough > slider, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar > range > trough > slider, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar > range > trough > slider, leaflet.unfolded > box > scrolledwindow > scrollbar > range > trough > slider, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar > range > trough > slider, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar > range > trough > slider { - border: 4px solid transparent; -} - -.content-pane scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering), .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), filechooser paned > box scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering), placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering), .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering), -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering), leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering), .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) { - border-color: transparent; - background-color: transparent; -} - -.content-pane scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, filechooser paned > box scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider { - border: none; - margin: 1px; -} - -.content-pane scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, filechooser paned > box scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, placessidebar > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, .nautilus-window placessidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - border: none; -} - -.content-pane scrolledwindow scrollbar.overlay-indicator.dragging, .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator.dragging, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator.dragging, filechooser paned > box scrolledwindow scrollbar.overlay-indicator.dragging, placessidebar > scrolledwindow > scrollbar.overlay-indicator.dragging, .nautilus-window placessidebar scrollbar.overlay-indicator.dragging, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator.dragging, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator.dragging, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator.dragging, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator.dragging, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.overlay-indicator.dragging, .content-pane scrolledwindow scrollbar.overlay-indicator.hovering, .sidebar-pane .sidebar > scrolledwindow > scrollbar.overlay-indicator.hovering, -.sidebar-pane toolbarview > scrolledwindow > scrollbar.overlay-indicator.hovering, filechooser paned > box scrolledwindow scrollbar.overlay-indicator.hovering, placessidebar > scrolledwindow > scrollbar.overlay-indicator.hovering, .nautilus-window placessidebar scrollbar.overlay-indicator.hovering, .nautilus-window .nautilus-grid-view scrolledwindow scrollbar.overlay-indicator.hovering, -.nautilus-window .nautilus-list-view scrolledwindow scrollbar.overlay-indicator.hovering, leaflet.unfolded > box > scrolledwindow > scrollbar.overlay-indicator.hovering, leaflet.unfolded .contacts-contact-list > scrolledwindow > scrollbar.overlay-indicator.hovering, .sidebar-pane toolbarview > stack > box > widget > widget > scrolledwindow > scrollbar.overlay-indicator.hovering { - background-color: transparent; -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-top > undershoot.top, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-top > undershoot.top { - border-radius: 12px 12px 0 0; - box-shadow: none; - background: linear-gradient(to bottom, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-bottom > undershoot.bottom, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-bottom > undershoot.bottom { - border-radius: 0 0 12px 12px; - box-shadow: none; - background: linear-gradient(to top, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-start:dir(ltr) > undershoot.left, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-start:dir(ltr) > undershoot.left { - border-radius: 12px 0 0 12px; - box-shadow: none; - background: linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-start:dir(rtl) > undershoot.right, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-start:dir(rtl) > undershoot.right { - border-radius: 0 12px 12px 0; - box-shadow: none; - background: linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-end:dir(ltr) > undershoot.right, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-end:dir(ltr) > undershoot.right { - border-radius: 0 12px 12px 0; - box-shadow: none; - background: linear-gradient(to left, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.nautilus-window .nautilus-grid-view scrolledwindow.undershoot-end:dir(rtl) > undershoot.left, -.nautilus-window .nautilus-list-view scrolledwindow.undershoot-end:dir(rtl) > undershoot.left { - border-radius: 12px 0 0 12px; - box-shadow: none; - background: linear-gradient(to right, alpha(rgba(29, 32, 33, 0.2), 0.75), transparent 4px); -} - -.sidebar-pane { - color: #fbf1c7; - border-top-left-radius: 12px; -} - -.sidebar-pane .sidebar-pane { - background-color: transparent; - color: inherit; -} - -.sidebar-pane headerbar, -.sidebar-pane .navigation-sidebar, -.sidebar-pane searchbar > revealer > box { - background-color: transparent; - box-shadow: none; - border: none; -} - -.sidebar-pane .navigation-sidebar { - padding: 2px 4px; - background: none; - color: rgba(251, 241, 199, 0.7); -} - -.sidebar-pane:dir(ltr), -.sidebar-pane:dir(ltr) banner > revealer > widget, .sidebar-pane.end:dir(rtl), -.sidebar-pane.end:dir(rtl) banner > revealer > widget { - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); - border-right: none; -} - -.content-pane toolbarview, .content-pane toolbarview.view { - background-color: transparent; -} - -/* Middle pane in three-pane setups */ -.content-pane .sidebar-pane, -.sidebar-pane .content-pane { - background-color: transparent; - color: #fbf1c7; -} - -.content-pane .sidebar-pane:backdrop, -.sidebar-pane .content-pane:backdrop { - background-color: transparent; - transition: none; -} - -.content-pane { - background-color: #1d2021; - color: #fbf1c7; - border-top-right-radius: 12px; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.content-pane headerbar, .content-pane headerbar:backdrop { - background-color: transparent; - box-shadow: none; - border: none; -} - -.maximized .content-pane, .fullscreen .content-pane, .tiled .content-pane, .tiled-top .content-pane, .tiled-right .content-pane, .tiled-bottom .content-pane, .tiled-left .content-pane { - border-radius: 0; - box-shadow: inset 0 1px rgba(251, 241, 199, 0.1); -} - -.top-bar { - box-shadow: none; - background: none; - border: none; -} - -.top-bar headerbar, .top-bar headerbar:backdrop { - background-color: transparent; - box-shadow: none; -} - -.top-bar .collapse-spacing { - padding: 0; -} - -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(251, 241, 199, 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 #7daea3; -} - -themeselector checkbutton.follow, -panelthemeselector checkbutton.follow { - background-image: linear-gradient(to bottom right, #f9f5d7 50%, #242220 50%); -} - -themeselector checkbutton.light, -panelthemeselector checkbutton.light { - background-color: #f9f5d7; -} - -themeselector checkbutton.dark, -panelthemeselector checkbutton.dark { - background-color: #242220; -} - -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/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/checkbox-checked-symbolic@2.svg"))); - color: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -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: rgba(29, 32, 33, 0.87); - background-color: #7daea3; -} - -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(251, 241, 199, 0.12); -} - -themeswitcher checkbutton:checked { - box-shadow: inset 0 0 0 2px #7daea3; -} - -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, #1d2021 50%, #fbf1c7 50%); -} - -themeswitcher checkbutton.light { - color: alpha(black, 0.8); - background-color: #fbf1c7; -} - -themeswitcher checkbutton.dark { - color: #fbf1c7; - background-color: #1d2021; -} - -/* GTK NAMED COLORS - ---------------- - use responsibly! */ -/* widget text/foreground color */ -@define-color theme_fg_color #fbf1c7; -/* text color for entries, views and content in general */ -@define-color theme_text_color #fbf1c7; -/* widget base background color */ -@define-color theme_bg_color #1d2021; -/* text widgets and the like base background color */ -@define-color theme_base_color #282524; -/* base background color of selections */ -@define-color theme_selected_bg_color #7daea3; -/* text/foreground color of selections */ -@define-color theme_selected_fg_color rgba(29, 32, 33, 0.87); -/* base background color of insensitive widgets */ -@define-color insensitive_bg_color #1d2021; -/* text foreground color of insensitive widgets */ -@define-color insensitive_fg_color rgba(251, 241, 199, 0.5); -/* insensitive text widgets and the like base background color */ -@define-color insensitive_base_color #282524; -/* widget text/foreground color on backdrop windows */ -@define-color theme_unfocused_fg_color #fbf1c7; -/* text color for entries, views and content in general on backdrop windows */ -@define-color theme_unfocused_text_color #fbf1c7; -/* widget base background color on backdrop windows */ -@define-color theme_unfocused_bg_color #1d2021; -/* text widgets and the like base background color on backdrop windows */ -@define-color theme_unfocused_base_color #282524; -/* base background color of selections on backdrop windows */ -@define-color theme_unfocused_selected_bg_color #7daea3; -/* text/foreground color of selections on backdrop windows */ -@define-color theme_unfocused_selected_fg_color rgba(29, 32, 33, 0.87); -/* insensitive color on backdrop windows */ -@define-color unfocused_insensitive_color rgba(251, 241, 199, 0.5); -/* widgets main borders color */ -@define-color borders rgba(251, 241, 199, 0.12); -/* widgets main borders color on backdrop windows */ -@define-color unfocused_borders rgba(251, 241, 199, 0.12); -/* these are pretty self explicative */ -@define-color warning_color #b47109; -@define-color error_color #c14a4a; -@define-color success_color #6c782e; -/* 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_focused_title #fbf1c7; -@define-color wm_unfocused_title rgba(251, 241, 199, 0.7); -@define-color wm_highlight rgba(251, 241, 199, 0.1); -@define-color wm_border #080707; -@define-color wm_focused_bg #1d2021; -@define-color wm_unfocused_bg #1d2021; -@define-color wm_button_icon #fbf1c7; -@define-color wm_button_focused_bg rgba(251, 241, 199, 0.04); -@define-color wm_button_unfocused_bg rgba(251, 241, 199, 0.04); -@define-color wm_button_hover_fg rgba(29, 32, 33, 0.87); -@define-color wm_button_active_fg rgba(29, 32, 33, 0.87); -@define-color wm_button_hover_bg #fbf1c7; -@define-color wm_button_active_bg #fbf1c7; -/* FIXME this is really an API */ -@define-color content_view_bg #282524; -@define-color placeholder_text_color #bcb496; -/* Very contrasty background for text views (@theme_text_color foreground) */ -@define-color text_view_bg #282524; -@define-color budgie_tasklist_indicator_color rgba(251, 241, 199, 0.3); -@define-color budgie_tasklist_indicator_color_active #7daea3; -@define-color budgie_tasklist_indicator_color_active_window rgba(99, 136, 128, 0.816); -@define-color budgie_tasklist_indicator_color_attention #b47109; -@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 #7daea3; -@define-color accent_fg_color rgba(29, 32, 33, 0.87); -@define-color accent_color #7daea3; -@define-color destructive_bg_color #c14a4a; -@define-color destructive_fg_color #fbf1c7; -@define-color destructive_color #c14a4a; -@define-color success_bg_color #6c782e; -@define-color success_fg_color #fbf1c7; -@define-color success_color #6c782e; -@define-color warning_bg_color #b47109; -@define-color warning_fg_color #fbf1c7; -@define-color warning_color #b47109; -@define-color error_bg_color #c14a4a; -@define-color error_fg_color #fbf1c7; -@define-color error_color #c14a4a; -@define-color window_bg_color #1d2021; -@define-color window_fg_color #fbf1c7; -@define-color view_bg_color #282524; -@define-color view_fg_color #fbf1c7; -@define-color headerbar_bg_color #1d2021; -@define-color headerbar_fg_color #fbf1c7; -@define-color headerbar_border_color rgba(251, 241, 199, 0.12); -@define-color headerbar_backdrop_color #1d2021; -@define-color headerbar_shade_color rgba(251, 241, 199, 0.12); -@define-color card_bg_color #282524; -@define-color card_fg_color #fbf1c7; -@define-color card_shade_color rgba(251, 241, 199, 0.12); -@define-color dialog_bg_color #282524; -@define-color dialog_fg_color #fbf1c7; -@define-color popover_bg_color #242220; -@define-color popover_fg_color #fbf1c7; -@define-color shade_color rgba(251, 241, 199, 0.12); -@define-color scrollbar_outline_color rgba(251, 241, 199, 0.12); diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/thumbnail.png b/local/share/themes/Gruvbox-Dark/gtk-4.0/thumbnail.png deleted file mode 100644 index 70b940018..000000000 Binary files a/local/share/themes/Gruvbox-Dark/gtk-4.0/thumbnail.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/index.theme b/local/share/themes/Gruvbox-Dark/index.theme deleted file mode 100644 index 4a49a8760..000000000 --- a/local/share/themes/Gruvbox-Dark/index.theme +++ /dev/null @@ -1,12 +0,0 @@ -Type=X-GNOME-Metatheme -[Desktop Entry] -Name=Gruvbox-Dark -Comment=An Flat Gtk+ theme based on Elegant Design -Encoding=UTF-8 - -[X-GNOME-Metatheme] -GtkTheme=Gruvbox-Dark -MetacityTheme=Gruvbox-Dark -IconTheme=Tela-circle-Dark -CursorTheme=Gruvbox-cursors -ButtonLayout=close,minimize,maximize:menu diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/assets/button.svg b/local/share/themes/Gruvbox-Dark/metacity-1/assets/button.svg deleted file mode 100644 index c2a738d88..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/assets/button.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/assets/close.svg b/local/share/themes/Gruvbox-Dark/metacity-1/assets/close.svg deleted file mode 100644 index fb798d736..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/assets/close.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/assets/maximize.svg b/local/share/themes/Gruvbox-Dark/metacity-1/assets/maximize.svg deleted file mode 100644 index 0c2f1700d..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/assets/maximize.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/assets/menu.svg b/local/share/themes/Gruvbox-Dark/metacity-1/assets/menu.svg deleted file mode 100644 index 179ff4c4e..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/assets/menu.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/assets/minimize.svg b/local/share/themes/Gruvbox-Dark/metacity-1/assets/minimize.svg deleted file mode 100644 index 76fe7cbd0..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/assets/minimize.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/assets/shade.svg b/local/share/themes/Gruvbox-Dark/metacity-1/assets/shade.svg deleted file mode 100644 index 8213b0363..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/assets/shade.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/assets/unmaximize.svg b/local/share/themes/Gruvbox-Dark/metacity-1/assets/unmaximize.svg deleted file mode 100644 index 8d60a5702..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/assets/unmaximize.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/assets/unshade.svg b/local/share/themes/Gruvbox-Dark/metacity-1/assets/unshade.svg deleted file mode 100644 index a1615644e..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/assets/unshade.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-1.xml b/local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-1.xml deleted file mode 120000 index 562ac74de..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-1.xml +++ /dev/null @@ -1 +0,0 @@ -metacity-theme-3.xml \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-2.xml b/local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-2.xml deleted file mode 120000 index 562ac74de..000000000 --- a/local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-2.xml +++ /dev/null @@ -1 +0,0 @@ -metacity-theme-3.xml \ No newline at end of file diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/thumbnail.png b/local/share/themes/Gruvbox-Dark/metacity-1/thumbnail.png deleted file mode 100644 index 9f2f0b79e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/metacity-1/thumbnail.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/bottom-active.png deleted file mode 100644 index 79faf7a62..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/bottom-inactive.png deleted file mode 100644 index c048356a6..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-left-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/bottom-left-active.png deleted file mode 100644 index 078f986f6..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-left-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/bottom-left-inactive.png deleted file mode 100644 index 6ebc20b06..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-right-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/bottom-right-active.png deleted file mode 100644 index a9159e504..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-right-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/bottom-right-inactive.png deleted file mode 100644 index e44968f96..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/bottom-right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/close-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/close-active.png deleted file mode 100644 index b0f341e7e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/close-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/close-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/close-inactive.png deleted file mode 100644 index 859f6098f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/close-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/close-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/close-prelight.png deleted file mode 100644 index 3721ffab3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/close-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/close-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/close-pressed.png deleted file mode 100644 index 657eb25b6..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/close-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/hide-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/hide-active.png deleted file mode 100644 index c7d0fb69c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/hide-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/hide-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/hide-inactive.png deleted file mode 100644 index 672800748..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/hide-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/hide-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/hide-prelight.png deleted file mode 100644 index 7b72bc7fc..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/hide-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/hide-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/hide-pressed.png deleted file mode 100644 index 2585c92a3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/hide-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/left-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/left-active.png deleted file mode 100644 index 5c78aa05d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/left-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/left-inactive.png deleted file mode 100644 index 4ab1ef58e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/maximize-active.png deleted file mode 100644 index c1565d90b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/maximize-inactive.png deleted file mode 100644 index 0f29e03eb..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/maximize-prelight.png deleted file mode 100644 index 31293dd39..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/maximize-pressed.png deleted file mode 100644 index 3368adfd0..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-active.png deleted file mode 100644 index a330d5c02..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-inactive.png deleted file mode 100644 index 0f6034ca5..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-prelight.png deleted file mode 100644 index 79abd6f53..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-pressed.png deleted file mode 100644 index 63840f6da..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/maximize-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/menu-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/menu-active.png deleted file mode 100644 index c58521f75..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/menu-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/menu-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/menu-inactive.png deleted file mode 100644 index 2f157046d..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/menu-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/menu-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/menu-prelight.png deleted file mode 100644 index 52ad8940c..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/menu-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/menu-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/menu-pressed.png deleted file mode 100644 index 9e8f40189..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/menu-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/right-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/right-active.png deleted file mode 100644 index 57e6d6b25..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/right-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/right-inactive.png deleted file mode 100644 index 4ab1ef58e..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/shade-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/shade-active.png deleted file mode 100644 index 9c13bb926..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/shade-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/shade-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/shade-inactive.png deleted file mode 100644 index 807d8d498..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/shade-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/shade-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/shade-prelight.png deleted file mode 100644 index 7f0593e22..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/shade-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/shade-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/shade-pressed.png deleted file mode 100644 index e49f26d11..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/shade-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-active.png deleted file mode 100644 index 6bcdc144b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-inactive.png deleted file mode 100644 index b0bca5b42..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-prelight.png deleted file mode 100644 index 69f600bb1..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-pressed.png deleted file mode 100644 index 380da0eb6..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/shade-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/stick-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/stick-active.png deleted file mode 100644 index 33d4dadc3..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/stick-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/stick-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/stick-inactive.png deleted file mode 100644 index e4b354025..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/stick-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/stick-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/stick-prelight.png deleted file mode 100644 index fa6b47027..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/stick-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/stick-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/stick-pressed.png deleted file mode 100644 index 58c38fe19..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/stick-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-active.png deleted file mode 100644 index e722aacc1..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-inactive.png deleted file mode 100644 index 99de9df3b..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-prelight.png b/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-prelight.png deleted file mode 100644 index 23fa1b2ae..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-prelight.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-pressed.png b/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-pressed.png deleted file mode 100644 index b9eba2208..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/stick-toggled-pressed.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/themerc b/local/share/themes/Gruvbox-Dark/xfwm4/themerc deleted file mode 100644 index 22732f3b5..000000000 --- a/local/share/themes/Gruvbox-Dark/xfwm4/themerc +++ /dev/null @@ -1,23 +0,0 @@ -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=#f0f7fe -active_text_shadow_color=#222426 - -inactive_text_color=#999da3 -inactive_text_shadow_color=#222426 - -shadow_delta_height=2 -shadow_delta_width=0 -shadow_delta_x=0 -shadow_delta_y=-5 -shadow_opacity=40 diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-1-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-1-active.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-1-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-1-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-1-inactive.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-1-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-2-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-2-active.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-2-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-2-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-2-inactive.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-2-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-3-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-3-active.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-3-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-3-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-3-inactive.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-3-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-4-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-4-active.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-4-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-4-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-4-inactive.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-4-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-5-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-5-active.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-5-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/title-5-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/title-5-inactive.png deleted file mode 100644 index 64121eaaf..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/title-5-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/top-left-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/top-left-active.png deleted file mode 100644 index b4da3ab35..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/top-left-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/top-left-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/top-left-inactive.png deleted file mode 100644 index 2890f9838..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/top-left-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/top-right-active.png b/local/share/themes/Gruvbox-Dark/xfwm4/top-right-active.png deleted file mode 100644 index 024dec88f..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/top-right-active.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Dark/xfwm4/top-right-inactive.png b/local/share/themes/Gruvbox-Dark/xfwm4/top-right-inactive.png deleted file mode 100644 index f0c8b7bd7..000000000 Binary files a/local/share/themes/Gruvbox-Dark/xfwm4/top-right-inactive.png and /dev/null differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/COPYING b/local/share/themes/Gruvbox-Material-Dark-HIDPI/COPYING new file mode 100644 index 000000000..d159169d1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/COPYING @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/INSTALL_GDM_THEME.md b/local/share/themes/Gruvbox-Material-Dark-HIDPI/INSTALL_GDM_THEME.md new file mode 100644 index 000000000..58e0708bc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/INSTALL_GDM_THEME.md @@ -0,0 +1,47 @@ +# How to change the GDM theme + +To change the GDM (lock/login screen) theme, you need to replace the system's _default_ GNOME Shell theme. + +## :warning: Cautions :warning: + +- If the replacement fails, your desktop environment will not work properly. So please **be careful** if doing this. +- When applying this, other third-party GNOME Shell themes would look broken until you restore to the original theme. +- If GNOME Shell has been updated and restored to the original theme, you will need to install this again. + > Tip: On Arch Linux, you can automatically reinstall the GDM theme by creating a [hook](https://wiki.archlinux.org/index.php/Pacman#Hooks) file. For example, if you use Materia-compact as your GDM theme, put [this file](https://gist.github.com/looselyrigorous/a1aa931ce48627cc39daccc9253b30c7) in the `/usr/share/libalpm/hooks/` directory. + +## Requirements + +- `glib-compile-resources` — The package name depends on the distro. + - `glib2` (Arch Linux) + - `glib2-devel` (Fedora, openSUSE, etc.) + - `libglib2.0-dev-bin` (Debian, Ubuntu, etc.) +- `libxml2-utils` — Ubuntu users only. + +## Installation + +1. **Back up** the original theme file first. If you are already using a custom GDM theme, skip this: + + ```sh + sudo cp -av /usr/share/gnome-shell/gnome-shell-theme.gresource{,~} + ``` + +2. Select a **GTK** theme to decide which variant to install. +3. Replace the default theme file: + + ```sh + THEME_NAME="$(gsettings get org.gnome.desktop.interface gtk-theme | sed "s/'//g")" + THEME_SRC_DIR="/usr/share/themes/$THEME_NAME/gnome-shell" + sudo glib-compile-resources --target="/usr/share/gnome-shell/gnome-shell-theme.gresource" --sourcedir="$THEME_SRC_DIR" "$THEME_SRC_DIR/gnome-shell-theme.gresource.xml" + ``` + +4. Reload the theme. If you are running GNOME Shell, press Alt + F2 then type `rt`. + +## Uninstallation + +1. Restore to the original theme file from the backup: + + ```sh + sudo mv -v /usr/share/gnome-shell/gnome-shell-theme.gresource{~,} + ``` + +2. Reload the theme. If you are running GNOME Shell, press Alt + F2 then type `rt`. diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/chrome/chrome-scrollbar.crx b/local/share/themes/Gruvbox-Material-Dark-HIDPI/chrome/chrome-scrollbar.crx new file mode 100644 index 000000000..b1d77c796 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/chrome/chrome-scrollbar.crx differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/chrome/chrome-theme.crx b/local/share/themes/Gruvbox-Material-Dark-HIDPI/chrome/chrome-theme.crx new file mode 100644 index 000000000..a89287a3b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/chrome/chrome-theme.crx differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace-active.svg new file mode 100644 index 000000000..7f6573de4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace-active.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace-hover.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace-hover.svg new file mode 100644 index 000000000..c52e0b5e1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace-hover.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace.svg new file mode 100644 index 000000000..559062962 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/add-workspace.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/calendar-arrow-left.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/calendar-arrow-left.svg new file mode 100644 index 000000000..5448aacea --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/calendar-arrow-right.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/calendar-arrow-right.svg new file mode 100644 index 000000000..f089edbc5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/checkbox-off.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/checkbox-off.svg new file mode 100644 index 000000000..54317fdf5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/checkbox.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/checkbox.svg new file mode 100644 index 000000000..c2473a4cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/checkbox.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/corner-ripple.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/corner-ripple.png new file mode 100644 index 000000000..35d95ffef Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/corner-ripple.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/radiobutton-off.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/radiobutton-off.svg new file mode 100644 index 000000000..43467e850 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/radiobutton-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/radiobutton.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/radiobutton.svg new file mode 100644 index 000000000..772feeb24 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/radiobutton.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/toggle-off.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/toggle-off.svg new file mode 100644 index 000000000..b2ab136f6 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/toggle-off.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/toggle-on.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/toggle-on.svg new file mode 100644 index 000000000..1e713b651 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/toggle-on.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/trash-icon.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/trash-icon.png new file mode 100644 index 000000000..270fe2ef4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/trash-icon.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close-active.svg new file mode 100644 index 000000000..f3a1c9a25 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close-active.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close-hover.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close-hover.svg new file mode 100644 index 000000000..48c97c806 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close-hover.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close.svg new file mode 100644 index 000000000..22cba72e3 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/assets/window-close.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/cinnamon.css b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/cinnamon.css new file mode 100644 index 000000000..ac040ad8e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/cinnamon.css @@ -0,0 +1,1711 @@ +.notification-button, .modal-dialog-button { + color: #d4be98; + background-color: #3C3836; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; + font-size: 10.5pt; + font-weight: 500; + min-height: 32px; + padding: 0 16px; + border-radius: 6px; +} +.notification-button:focus, .modal-dialog-button:focus { + color: #d4be98; + background-color: #48433e; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.notification-button:hover, .modal-dialog-button:hover, .notification-button:checked, .modal-dialog-button:checked { + color: #d4be98; + background-color: #48433e; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.notification-button:active, .modal-dialog-button:active { + color: #d4be98; + background-color: #4e4842; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.notification-button:insensitive, .modal-dialog-button:insensitive { + color: rgba(212, 190, 152, 0.5); + background-color: rgba(212, 190, 152, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.notification-icon-button, .keyboard-key, .sound-player StButton { + color: #d4be98; + background-color: #3C3836; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; + min-height: 32px; + min-width: 32px; + padding: 6px; + border-radius: 6px; +} +.notification-icon-button:focus, .keyboard-key:focus, .sound-player StButton:focus { + color: #d4be98; + background-color: #48433e; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.notification-icon-button:hover, .keyboard-key:hover, .sound-player StButton:hover, .notification-icon-button:checked, .keyboard-key:checked, .sound-player StButton:checked { + color: #d4be98; + background-color: #48433e; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.notification-icon-button:active, .keyboard-key:active, .sound-player StButton:active { + color: #d4be98; + background-color: #4e4842; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.notification-icon-button:insensitive, .keyboard-key:insensitive, .sound-player StButton:insensitive { + color: rgba(212, 190, 152, 0.5); + background-color: rgba(212, 190, 152, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.slider, .popup-slider-menu-item, .sound-player .slider { + height: 20px; + color: #7c6f64; + -slider-height: 2px; + -slider-background-color: rgba(212, 190, 152, 0.3); + -slider-border-color: transparent; + -slider-active-background-color: #7c6f64; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 6px; +} + +.separator, .popup-separator-menu-item { + -gradient-height: 1px; + -gradient-start: rgba(212, 190, 152, 0.2); + -gradient-end: rgba(212, 190, 152, 0.2); + -margin-horizontal: 4px; + height: 1.5em; +} + +#notification StEntry, .run-dialog-entry, #menu-search-entry { + transition-duration: 100ms; + background-color: rgba(212, 190, 152, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + width: 250px; + min-height: 32px; + padding: 0 8px; + border-radius: 6px 6px 0 0; + color: #d4be98; + caret-color: #d4be98; + selection-background-color: rgba(124, 111, 100, 0.6); + selected-color: #d4be98; +} +#notification StEntry:focus, .run-dialog-entry:focus, #menu-search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #7c6f64; + padding: 0 8px; + border-width: 0; + color: #d4be98; +} + +.desklet-with-borders, .desklet-with-borders-and-header, .desklet-header, .photoframe-box { + color: #d4be98; + border: none; + padding: 12px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); +} + +.calendar-change-month-back, .calendar-change-month-forward { + width: 16px; + height: 16px; + border-radius: 999px; + transition-duration: 100ms; +} +.calendar-change-month-back:active, .calendar-change-month-forward:active { + background-color: rgba(212, 190, 152, 0.3); +} + +.menu, .popup-combo-menu { + background-color: #3C3836; + border-radius: 6px; + color: #d4be98; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} + +.menu-application-button-label:ltr, .menu-category-button-label:ltr { + padding-left: 4px; +} +.menu-application-button-label:rtl, .menu-category-button-label:rtl { + padding-right: 4px; +} + +.show-processes-dialog-subject, .mount-question-dialog-subject { + font-weight: bold; + color: #d4be98; + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; +} + +.show-processes-dialog-subject:rtl, .mount-question-dialog-subject:rtl { + padding-left: 0; + padding-right: 17px; +} + +.show-processes-dialog-description, .mount-question-dialog-description { + color: #d4be98; + padding-left: 17px; + width: 28em; +} + +.check-box StBin, .check-box:focus StBin { + width: 24px; + height: 24px; + padding: 4px; + border-radius: 100px; + background-image: url(assets/checkbox-off.svg); +} + +.radiobutton StBin, .radiobutton:focus StBin { + width: 20px; + height: 20px; + padding: 6px; + border-radius: 100px; + background-image: url(assets/radiobutton-off.svg); +} + +.tile-preview, .tile-hud { + background-color: rgba(0, 0, 0, 0.3); + border: 2px solid rgba(212, 190, 152, 0.2); +} + +.tile-preview.snap, .tile-hud.snap { + background-color: rgba(0, 0, 0, 0.3); + border: 2px solid #7c6f64; +} + +#LookingGlassDialog, .switcher-list, .modal-dialog, .osd-window, .overview-empty-placeholder, .info-osd, .workspace-osd { + color: #d4be98; + background-color: #3C3836; + border: none; + border-radius: 6px; + padding: 12px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); +} + +.overview-empty-placeholder, .info-osd, .workspace-osd { + font-size: 15pt; + font-weight: 500; + text-align: center; + padding: 8px 10px; +} + +stage { + font-size: 10.5pt; + font-weight: 400; + font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif; + color: #d4be98; +} + +.cinnamon-link { + color: #7c6f64; + font-style: italic; +} +.cinnamon-link:hover { + color: #7c6f64; +} + +.label-shadow { + color: transparent; +} + +StScrollBar { + padding: 0px; +} +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + background-color: rgba(212, 190, 152, 0.5); + border-radius: 100px; + margin: 4px; +} +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: rgba(212, 190, 152, 0.7); +} +StScrollBar StBin#trough { + margin: 4px; + border-radius: 100px; + background-color: rgba(212, 190, 152, 0.2); +} + +StScrollView.vfade { + -st-vfade-offset: 32px; +} +StScrollView.hfade { + -st-hfade-offset: 32px; +} +StScrollView StScrollBar { + min-width: 16px; + min-height: 16px; +} + +#Tooltip { + font-size: 9pt; + font-weight: 400; + padding: 6px 8px; + color: #ddc7a1; + text-align: center; + border-radius: 6px; + background-color: rgba(50, 48, 47, 0.9); +} + +.menu { + min-width: 100px; + margin: 4px; +} + +.menu-top-box { + spacing: 5px; +} + +.menu-systembuttons-box { + padding: 10px; +} + +.popup-sub-menu { + background-color: rgba(212, 190, 152, 0.04); +} + +.popup-menu-arrow { + icon-size: 1.14em; +} + +.popup-combo-menu { + padding: 8px 0; +} + +.popup-menu-content { + padding: 8px 0; +} + +.popup-menu-item { + padding: 0.4em 16px; + spacing: 8px; + transition-duration: 100ms; +} +.popup-menu-item:active { + background-color: rgba(212, 190, 152, 0.08); + color: #d4be98; + transition-duration: 0ms; +} +.popup-menu-item:insensitive { + color: rgba(212, 190, 152, 0.5); +} + +.popup-image-menu-item { + color: rgba(212, 190, 152, 0.7); +} + +.popup-combobox-item { + padding: 0.4em 16px; +} + +.popup-device-menu-item { + spacing: 0.5em; +} + +.popup-inactive-menu-item { + color: #d4be98; +} +.popup-inactive-menu-item:insensitive { + color: rgba(212, 190, 152, 0.5); +} + +.popup-subtitle-menu-item { + font-size: 10.5pt; + font-weight: 500; +} + +.popup-menu-icon { + icon-size: 1.14em; +} + +.popup-alternating-menu-item:alternate { + font-size: 10.5pt; + font-weight: 500; +} + +.toggle-switch { + width: 40px; + height: 20px; +} + +.toggle-switch-us, .toggle-switch-intl { + background-image: url(assets/toggle-off.svg); +} +.toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url(assets/toggle-on.svg); +} + +.nm-menu-item-icons { + spacing: 0.5em; + icon-size: 1.14em; +} + +#panel { + color: rgba(221, 199, 161, 0.7); + background-color: black; + height: 2.5em; + width: 3.2em; +} +#panel:highlight { + background-color: rgba(221, 199, 161, 0.3); +} + +.panel-dummy { + background-color: rgba(255, 0, 0, 0.6); +} +.panel-dummy:entered { + background-color: rgba(0, 255, 0, 0.6); +} + +.panelLeft { + spacing: 4px; +} +.panelLeft:dnd { + background-color: rgba(255, 0, 0, 0.6); +} +.panelLeft:ltr { + padding-right: 4px; +} +.panelLeft:rtl { + padding-left: 4px; +} +.panelLeft.vertical { + padding: 0; +} +.panelCenter { + spacing: 4px; +} +.panelCenter:dnd { + background-color: rgba(0, 255, 0, 0.6); +} +.panelCenter.vertical { + padding-left: 0; + padding-right: 0; +} +.panelRight { + spacing: 4px; +} +.panelRight:dnd { + background-color: rgba(0, 0, 255, 0.6); +} +.panelRight:ltr { + padding-left: 0; + spacing: 0; +} +.panelRight:rtl { + padding-right: 0; + spacing: 0; +} +.panelRight.vertical { + padding: 0; +} +.panel-top .window-list-item-box:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .window-list-item-box:active:hover, .panel-top .window-list-item-box:checked:hover, .panel-top .window-list-item-box:focus:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .grouped-window-list-item-box:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .grouped-window-list-item-box:active:hover, .panel-top .grouped-window-list-item-box:checked:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .grouped-window-list-item-box:focus:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .grouped-window-list-badge { + margin-top: 2px; +} +.panel-top .workspace-switcher, .panel-top .workspace-graph, .panel-top .workspace-button { + padding: 1px 4px; +} +.panel-top .workspace-graph:hover, .panel-top .workspace-button:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .applet-box { + padding: 0 4px; +} +.panel-top .applet-box:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .panel-launchers .launcher:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .applet-separator { + padding: 3px 4px; +} +.panel-top .systray:hover { + box-shadow: 0 4px 0 0 #7c6f64 inset; +} + +.panel-bottom .window-list-item-box:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .window-list-item-box:active:hover, .panel-bottom .window-list-item-box:checked:hover, .panel-bottom .window-list-item-box:focus:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .grouped-window-list-item-box:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .grouped-window-list-item-box:active:hover, .panel-bottom .grouped-window-list-item-box:checked:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .grouped-window-list-item-box:focus:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .workspace-switcher, .panel-bottom .workspace-graph, .panel-bottom .workspace-button { + padding: 1px 4px; +} +.panel-bottom .workspace-graph:hover, .panel-bottom .workspace-button:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .applet-box { + padding: 0 4px; +} +.panel-bottom .applet-box:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .panel-launchers .launcher:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .applet-separator { + padding: 3px 4px; +} +.panel-bottom .systray:hover { + box-shadow: 0 4px 0 0 #7c6f64 inset; +} + +.panel-left .window-list-item-box:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .window-list-item-box:active:hover, .panel-left .window-list-item-box:checked:hover, .panel-left .window-list-item-box:focus:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .grouped-window-list-item-box:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .grouped-window-list-item-box:active:hover, .panel-left .grouped-window-list-item-box:checked:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .grouped-window-list-item-box:focus:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .grouped-window-list-badge { + margin-left: 2px; +} +.panel-left .workspace-switcher, .panel-left .workspace-graph, .panel-left .workspace-button { + padding: 4px 1px; + min-height: 1.2em; +} +.panel-left .workspace-graph:hover, .panel-left .workspace-button:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .applet-box { + padding: 4px 0; +} +.panel-left .applet-box:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .panel-launchers .launcher:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .applet-separator { + padding: 4px 3px; +} +.panel-left .systray:hover { + box-shadow: 4px 0 0 0 #7c6f64 inset; +} + +.panel-right .window-list-item-box:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .window-list-item-box:active:hover, .panel-right .window-list-item-box:checked:hover, .panel-right .window-list-item-box:focus:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .grouped-window-list-item-box:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .grouped-window-list-item-box:active:hover, .panel-right .grouped-window-list-item-box:checked:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .grouped-window-list-item-box:focus:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .workspace-switcher, .panel-right .workspace-graph, .panel-right .workspace-button { + padding: 4px 1px; + min-height: 1.2em; +} +.panel-right .workspace-graph:hover, .panel-right .workspace-button:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .applet-box { + padding: 4px 0; +} +.panel-right .applet-box:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .panel-launchers .launcher:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .applet-separator { + padding: 4px 3px; +} +.panel-right .systray:hover { + box-shadow: -4px 0 0 0 #7c6f64 inset; +} + +.panel-status-button { + font-size: 10.5pt; + font-weight: 500; + -natural-hpadding: 4px; + -minimum-hpadding: 4px; + color: rgba(221, 199, 161, 0.7); +} +.panel-status-button:hover { + color: #ddc7a1; +} + +.system-status-icon { + icon-size: 1.14em; + padding: 0; + spacing: 0; +} +.system-status-icon.warning { + color: #d8a657; +} +.system-status-icon.error { + color: #ea6962; +} + +#overview { + spacing: 12px; +} + +.window-caption { + font-size: 9pt; + font-weight: 400; + background-color: rgba(0, 0, 0, 0.01); + color: rgba(221, 199, 161, 0.7); + padding: 4px 6px; + text-align: center; + height: 1.5em; + -cinnamon-caption-spacing: 12px; +} +.window-caption#selected, .window-caption:focus { + color: #ddc7a1; + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} + +.workspace-controls { + visible-height: 32px; +} + +.workspace-thumbnails-background { + color: rgba(221, 199, 161, 0.7); + background-color: rgba(255, 255, 255, 0.08); + border: none; + padding: 8px; + border-radius: 6px 0 0 6px; +} +.workspace-thumbnails-background:rtl { + border-radius: 0 6px 6px 0; +} + +.workspace-thumbnails { + spacing: 32px; +} + +.workspace-add-button { + background-image: url(assets/add-workspace.svg); + height: 200px; + width: 35px; + transition-duration: 100ms; +} +.workspace-add-button:hover { + background-image: url(assets/add-workspace-hover.svg); +} +.workspace-add-button:active { + background-image: url(assets/add-workspace-active.svg); +} + +.workspace-close-button, .window-close { + background-image: url(assets/window-close.svg); + height: 32px; + width: 32px; + -cinnamon-close-overlap: 20px; +} +.workspace-close-button:hover, .window-close:hover { + background-image: url(assets/window-close-hover.svg); +} +.workspace-close-button:active, .window-close:active { + background-image: url(assets/window-close-active.svg); +} +.workspace-close-button:rtl, .window-close:rtl { + -st-background-image-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); +} + +.window-border { + border: 1px solid rgba(212, 190, 152, 0.2); +} + +.window-close-area { + background-image: url(assets/trash-icon.png); + background-size: 100px; + background-color: rgba(0, 0, 0, 0.3); + border: 1px solid rgba(212, 190, 152, 0.2); + border-bottom-width: 0; + border-radius: 20px 20px 0 0; + height: 120px; + width: 400px; +} + +.expo-background { + background-color: black; +} + +.workspace-overview-background-shade { + background-color: black; +} + +.expo-workspace-thumbnail-frame { + border: 1px solid rgba(212, 190, 152, 0.2); +} +.expo-workspace-thumbnail-frame#active { + border: 1px solid #7c6f64; +} + +#LookingGlassDialog { + spacing: 4px; + padding: 8px; +} + +.calendar { + padding: 4px 8px; + spacing-rows: 2px; + spacing-columns: 4px; +} + +.datemenu-date-label { + font-size: 15pt; + font-weight: 500; + height: 24px; + margin: 2px; + padding: 6px 16px; + border-radius: 6px; + color: #d4be98; + text-align: center; +} +.datemenu-date-label:focus { + background-color: rgba(212, 190, 152, 0.2); +} + +.calendar-month-label { + font-size: 10.5pt; + font-weight: 500; + height: 16px; + margin: 2px; + padding: 6px 16px; + border-radius: 6px; + color: #d4be98; + text-align: center; +} +.calendar-month-label:focus { + background-color: rgba(212, 190, 152, 0.2); +} + +.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); +} + +.calendar-day-base { + font-size: 9pt; + font-weight: 400; + text-align: center; + width: 28px; + height: 28px; + padding: 0; + margin: 2px; + border-radius: 100px; +} +.calendar-day-base:hover, .calendar-day-base:focus { + background-color: rgba(221, 199, 161, 0.3); +} +.calendar-day-base:active { + color: rgba(255, 255, 255, 0.87); + background-color: #7c6f64; + border-color: transparent; +} + +.calendar-week-number { + font-size: 9pt; + font-weight: 400; + width: 21px; + height: 28px; + margin: 2px; + padding: 0; + border-radius: 100px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + text-align: center; +} + +.calendar-day-heading { + font-size: 9pt; + font-weight: 400; + width: 28px; + height: 21px; + margin: 2px; + padding: 0; + border-radius: 100px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + text-align: center; +} + +.calendar-day { + border-width: 0; +} + +.calendar-day-top { + border-top-width: 0; +} + +.calendar-day-left { + border-left-width: 0; +} + +.calendar-nonwork-day { + color: #d4be98; +} + +.calendar-today { + font-weight: bold; + border: none; +} + +.calendar-day-with-events { + color: #7c6f64; + font-weight: normal; + text-decoration: underline; + background-image: none; +} + +.calendar-other-month-day { + color: rgba(212, 190, 152, 0.3); + opacity: 0.5; +} + +.calendar-week-number { + width: 28px; + height: 21px; + margin: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + font-size: inherit; + font-weight: bold; + text-align: center; +} + +#notification { + background-color: #3C3836; + border-radius: 6px; + border: 1px solid rgba(212, 190, 152, 0.2); + padding: 8px; + spacing-rows: 4px; + spacing-columns: 8px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #d4be98; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +#notification.multi-line-notification { + padding-bottom: 8px; +} +#notification .url-highlighter { + link-color: #7c6f64; +} + +.notification-with-image { + min-height: 159px; + color: #d4be98; +} + +#notification-scrollview { + max-height: 10em; +} +#notification-scrollview > .top-shadow { + height: 1em; +} +#notification-scrollview > .bottom-shadow { + height: 1em; +} +#notification-scrollview:ltr > StScrollBar { + padding-left: 6px; +} +#notification-scrollview:rtl > StScrollBar { + padding-right: 6px; +} + +#notification-body { + spacing: 4px; +} + +#notification-actions { + spacing: 8px; +} + +.notification-icon-button > StIcon { + icon-size: 1.5em; +} + +#altTabPopup { + padding: 8px; + spacing: 16px; +} + +.switcher-list { + transition-duration: 100ms; +} +.switcher-list .item-box { + padding: 8px; + border-radius: 6px; +} +.switcher-list .item-box:selected { + background-color: rgba(212, 190, 152, 0.2); +} +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} +.switcher-list .thumbnail { + width: 256px; +} +.switcher-list .separator { + width: 1px; + background: rgba(212, 190, 152, 0.2); +} + +.switcher-list-item-container { + spacing: 8px; +} + +.thumbnail-scroll-gradient-left { + background-gradient-direction: horizontal; + background-gradient-start: #333333; + background-gradient-end: rgba(51, 51, 51, 0); + border-radius: 6px; + border-radius-topright: 0; + border-radius-bottomright: 0; + width: 60px; +} + +.thumbnail-scroll-gradient-right { + background-gradient-direction: horizontal; + background-gradient-start: rgba(51, 51, 51, 0); + background-gradient-end: #333333; + border-radius: 6px; + border-radius-topleft: 0; + border-radius-bottomleft: 0; + width: 60px; +} + +.switcher-arrow { + border-color: rgba(0, 0, 0, 0); + color: rgba(212, 190, 152, 0.7); +} +.switcher-arrow:highlighted { + color: #d4be98; +} + +.switcher-preview-backdrop { + background-color: black; +} + +.ripple-box { + width: 104px; + height: 104px; + background-image: url(assets/corner-ripple.png); + background-color: #7c6f64; + border-radius: 52px; +} + +.modal-dialog { + padding: 16px 20px; +} + +.modal-dialog-button-box { + spacing: 16px; +} + +.run-dialog-label { + color: rgba(212, 190, 152, 0.7); + padding-bottom: 0.4em; +} + +.run-dialog-error-label { + color: #ea6962; +} + +.run-dialog-error-box { + padding-top: 16px; + spacing: 6px; +} + +.run-dialog-completion-box { + padding-left: 15px; +} + +.run-dialog { + border-radius: 6px; + padding: 16px 20px; +} + +.lightbox { + background-color: rgba(0, 0, 0, 0.3); +} + +.cinnamon-mount-operation-icon { + icon-size: 4.8em; +} + +.mount-password-reask { + color: #d8a657; +} + +.show-processes-dialog { + spacing: 24px; +} + +.mount-question-dialog { + spacing: 24px; +} + +.show-processes-dialog-description:rtl { + padding-right: 17px; +} + +.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: #d4be98; +} +.show-processes-dialog-app-list-item:hover { + color: #d4be98; +} +.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; +} + +.magnifier-zoom-region { + border: 3px solid rgba(212, 190, 152, 0.2); +} +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +#keyboard { + background-color: black; +} + +.keyboard-key { + font-size: 10.5pt; + font-weight: 500; +} + +.keyboard-layout { + spacing: 8px; + padding: 8px; +} + +.keyboard-row { + spacing: 16px; +} + +.keyboard-subkeys { + color: inherit; + padding: 5px; + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -boxpointer-gap: 5px; + background-color: #3C3836; + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} + +.menu-favorites-box { + padding: 8px; +} + +.menu-favorites-button { + padding: 0.4em 4px; +} +.menu-favorites-button:hover { + background-color: rgba(212, 190, 152, 0.2); + border-radius: 6px; + color: #d4be98; +} + +.menu-categories-box { + padding: 8px; +} + +.menu-applications-inner-box { + padding: 8px; +} + +.menu-applications-outer-box { + padding: 8px; + border-radius: 6px; +} + +.menu-application-button { + padding: 0.4em 4px; +} +.menu-application-button:highlighted { + font-weight: bold; +} + +.menu-application-button-selected { + padding: 0.4em 4px; + background-color: rgba(212, 190, 152, 0.2); + border-radius: 6px; + color: #d4be98; +} +.menu-application-button-selected:highlighted { + font-weight: bold; +} + +.menu-category-button { + padding: 0.4em 4px; +} + +.menu-category-button-greyed { + padding: 0.4em 4px; + color: rgba(212, 190, 152, 0.7); + font-style: italic; +} + +.menu-category-button-selected { + padding: 0.4em 4px; + background-color: rgba(212, 190, 152, 0.2); + border-radius: 6px; + color: #d4be98; +} +.menu-selected-app-box { + padding: 8px; + margin-bottom: 4px; + text-align: right; +} +.menu-selected-app-box:rtl { + text-align: left; +} + +.menu-selected-app-title { + font-size: 9pt; + font-weight: 400; +} + +.menu-selected-app-description { + font-size: 9pt; + font-weight: 400; + max-width: 150px; +} + +.menu-search-box:ltr { + padding-left: 30px; + padding-bottom: 5px; + padding-top: 5px; +} +.menu-search-box:rtl { + padding-right: 30px; + padding-bottom: 5px; + padding-top: 5px; +} + +.menu-search-entry-icon { + icon-size: 1em; + padding: 0 0; + color: rgba(212, 190, 152, 0.5); +} + +.window-list-box { + font-size: 9pt; + font-weight: 400; + spacing: 4px; + padding: 0 3px; +} +.window-list-box.vertical { + spacing: 4px; + padding: 3px 0; +} +.window-list-box:highlight { + background: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} + +.window-list-item-box { + background-color: rgba(0, 0, 0, 0.01); + transition-duration: 100ms; +} +.window-list-item-box:hover { + color: #ddc7a1; +} +.window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + background-color: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} +.window-list-item-box:active:hover, .window-list-item-box:checked:hover, .window-list-item-box:focus:hover { + color: #ddc7a1; +} +.window-list-item-box .progress { + background-color: #a9b665; +} + +.window-list-item-box.top StLabel, .window-list-item-box.bottom StLabel { + padding-left: 3px; +} + +.window-list-item-demands-attention { + background-color: #32302f; + color: rgba(221, 199, 161, 0.7); +} + +.window-list-preview { + background-color: #3C3836; + border-radius: 6px; + padding: 10px 15px; + spacing: 1em; + color: #d4be98; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); +} + +.grouped-window-list-thumbnail-label { + padding-left: 3px; + padding-bottom: 6px; +} +.grouped-window-list-number-label { + font-size: 9pt; + font-weight: 400; + z-index: 99; +} +.grouped-window-list-list-button-label { + padding-left: 3px; +} +.grouped-window-list-badge { + border-radius: 9999px; + background-color: #1e1c1b; +} +.grouped-window-list-thumbnail-alert { + background: #d8a657; +} +.grouped-window-list-item-box { + background-color: rgba(0, 0, 0, 0.01); + transition-duration: 100ms; +} +.grouped-window-list-item-box:hover { + color: #ddc7a1; +} +.grouped-window-list-item-box:active, .grouped-window-list-item-box:checked { + background-color: rgba(221, 199, 161, 0.2); +} +.grouped-window-list-item-box:active:hover, .grouped-window-list-item-box:checked:hover { + color: #ddc7a1; +} +.grouped-window-list-item-box:focus { + background-color: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} +.grouped-window-list-item-box:focus:hover { + color: #ddc7a1; +} +.grouped-window-list-item-box .progress { + background-color: #a9b665; +} +.grouped-window-list-item-demands-attention { + background-color: #32302f; + color: rgba(221, 199, 161, 0.7); +} +.grouped-window-list-thumbnail-menu { + padding: 20px; + border: none; + border-radius: 6px; + color: rgba(221, 199, 161, 0.7); + background: none; +} +.grouped-window-list-thumbnail-menu .item-box { + padding: 8px; + spacing: 2px; + border-radius: 6px; +} +.grouped-window-list-thumbnail-menu .item-box:outlined { + border: 2px solid rgba(212, 190, 152, 0.2); + color: #ddc7a1; +} +.grouped-window-list-thumbnail-menu .item-box:selected { + background: rgba(221, 199, 161, 0.2); + color: #ddc7a1; +} +.grouped-window-list-thumbnail-menu .item-box > StBoxLayout:ltr { + margin: 1px 0 0 6px; +} +.grouped-window-list-thumbnail-menu .item-box > StBoxLayout:rtl { + margin: 1px 6px 0 0; +} +.grouped-window-list-thumbnail-menu .item-box > StBoxLayout StLabel { + padding-bottom: 2px; +} +.grouped-window-list-thumbnail-menu .item-box > StButton:ltr { + margin: 1px 6px 0 0; +} +.grouped-window-list-thumbnail-menu .item-box > StButton:rtl { + margin: 1px 0 0 6px; +} +.grouped-window-list-thumbnail-menu .thumbnail-box { + padding: 2px; +} +.grouped-window-list-thumbnail-menu .thumbnail { + width: 256px; +} +.grouped-window-list-thumbnail-menu .separator { + width: 1px; + background: rgba(212, 190, 152, 0.2); +} + +.sound-player StButton:small { + min-width: 24px; + min-height: 24px; + padding: 4px; +} +.sound-player StButton:small StIcon { + icon-size: 1em; +} +.sound-player StButton StIcon { + icon-size: 1.5em; +} +.sound-player .slider { + height: 5px; +} +.sound-player StBoxLayout { + spacing: 0.5em; +} +.sound-player > StBoxLayout { + padding: 5px; +} + +.sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); +} + +.sound-player-overlay { + background-color: #3C3836; + min-width: 300px; + padding: 12px 16px; + spacing: 0.5em; + color: rgba(212, 190, 152, 0.7); +} + +.workspace-button { + background-color: #1e1c1b; + width: 2em; + height: 1em; + color: rgba(221, 199, 161, 0.7); + margin: 2px; +} +.workspace-button:outlined { + background-color: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} + +.workspace-graph { + background-color: black; +} +.workspace-graph .workspace { + background-color: #1e1c1b; + border: 1px solid rgba(212, 190, 152, 0.2); +} +.workspace-graph .workspace:active { + background-color: rgba(221, 199, 161, 0.3); + border: 1px solid rgba(212, 190, 152, 0.2); +} +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(255, 255, 255, 0.8); + -active-window-border: rgba(0, 0, 0, 0.9); + -inactive-window-background: rgba(140, 140, 140, 0.8); + -inactive-window-border: rgba(0, 0, 0, 0.7); +} +.workspace-graph .workspace .windows { + -active-window-background: rgba(140, 140, 140, 0.8); + -active-window-border: rgba(0, 0, 0, 0.7); + -inactive-window-background: rgba(140, 140, 140, 0.8); + -inactive-window-border: rgba(0, 0, 0, 0.7); +} + +.panel-launchers { + padding: 0 4px; + spacing: 4px; + transition-duration: 100ms; +} +.panel-launchers .launcher { + background-color: rgba(0, 0, 0, 0.01); +} +.panel-launchers.vertical { + padding: 4px 0; + spacing: 4px; +} +.panel-launchers.vertical .launcher .icon-box { + padding-top: 0; +} + +.applet-separator-line, .applet-separator-line-vertical { + width: 2px; + background: rgba(221, 199, 161, 0.2); +} + +.applet-spacer:highlight { + background: rgba(255, 255, 255, 0.05); +} + +.applet-box { + background-color: rgba(0, 0, 0, 0.01); + color: rgba(221, 199, 161, 0.7); + transition-duration: 100ms; +} +.applet-box:checked { + color: #ddc7a1; +} +.applet-box:checked .applet-label { + color: #ddc7a1; +} +.applet-box:hover { + color: #ddc7a1; +} +.applet-box:hover .applet-label { + color: #ddc7a1; +} +.applet-box:highlight { + background: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} +.applet-box:highlight .applet-label { + color: #ddc7a1; +} + +.applet-label { + font-size: 10.5pt; + font-weight: 500; + color: rgba(221, 199, 161, 0.7); +} + +.applet-icon { + color: rgba(221, 199, 161, 0.7); + padding: 0; + spacing: 0; + icon-size: 22px; +} + +.desklet { + font-size: 9pt; + font-weight: 400; + color: #ddc7a1; + border: none; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + padding: 12px; + background-color: rgba(0, 0, 0, 0.3); + border-radius: 6px; +} + +.desklet-with-borders { + font-size: 9pt; + font-weight: 400; + background-color: #3C3836; + border-radius: 6px; +} +.desklet-with-borders:highlight { + background-color: rgba(255, 255, 255, 0.05); +} + +.desklet-with-borders-and-header { + font-size: 9pt; + font-weight: 400; + background-color: #3C3836; + border-radius-bottomleft: 2px; + border-radius-bottomright: 2px; +} +.desklet-with-borders-and-header:highlight { + background-color: rgba(255, 255, 255, 0.05); +} + +.desklet-header { + font-size: 15pt; + font-weight: 500; + background-color: #3C3836; + border-radius-topleft: 2px; + border-radius-topright: 2px; +} +.desklet-header:highlight { + background-color: rgba(255, 255, 255, 0.05); +} + +.photoframe-box { + background-color: #3C3836; + border-radius: 6px; +} +.photoframe-box:highlight { + background-color: rgba(255, 255, 255, 0.05); +} + +.desklet-drag-placeholder { + border: 2px solid #7c6f64; + background-color: rgba(0, 0, 0, 0.3); + border-radius: 6px; +} + +.launcher { + padding: 1px; +} +.launcher .icon-box { + padding-top: 2px; +} + +.about-content { + min-width: 250px; + min-height: 150px; + spacing: 8px; + padding-bottom: 16px; +} + +.about-title { + font-size: 15pt; + font-weight: 500; +} + +.about-uuid { + font-size: 9pt; + font-weight: 400; +} + +.about-icon { + padding-right: 20px; +} + +.about-scrollBox { + border: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 6px; +} + +.about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; +} + +.about-description { + padding-top: 4px; +} + +.about-version { + padding-left: 7px; +} + +.expo-workspaces-name-entry { + font-size: 11.25pt; + font-weight: 400; + background-color: rgba(255, 255, 255, 0.04); + color: #fff; + padding: 0 8px; + selection-background-color: rgba(255, 255, 255, 0.3); + selected-color: #fff; + caret-color: #fff; + text-align: center; + height: 32px; + border-radius: 6px 6px 0 0; + -cinnamon-caption-spacing: 12px; +} +.expo-workspaces-name-entry#selected { + color: #fff; + background-color: rgba(255, 255, 255, 0.3); +} +.expo-workspaces-name-entry:focus { + color: #fff; + box-shadow: inset 0 -2px #fff; +} +.expo-workspaces-name-entry:hover { + background-color: rgba(255, 255, 255, 0.2); +} + +.notification-applet-padding { + padding: 0.5em 1em; +} + +.notification-applet-container { + max-height: 100px; +} + +.check-box CinnamonGenericContainer { + spacing: 8px; +} +.check-box:focus:checked StBin { + background-image: url(assets/checkbox.svg); +} +.check-box:checked StBin { + background-image: url(assets/checkbox.svg); +} + +.radiobutton CinnamonGenericContainer { + spacing: 8px; +} +.radiobutton:focus:checked StBin { + background-image: url(assets/radiobutton.svg); +} +.radiobutton:checked StBin { + background-image: url(assets/radiobutton.svg); +} + +.flashspot { + background-color: #7c6f64; +} + +.osd-window { + spacing: 1em; + padding: 16px; +} +.osd-window .level { + height: 0.7em; + border-radius: 0.3em; + background-color: rgba(212, 190, 152, 0.3); +} +.osd-window .level-bar { + border-radius: 0.3em; + background-color: #7c6f64; +} + +.tile-hud:top { + border-top-width: 0; + border-radius: 0 0 10px 10px; +} +.tile-hud:bottom { + border-bottom-width: 0; + border-radius: 6px 6px 0 0; +} +.tile-hud:left { + border-left-width: 0; + border-radius: 0 10px 10px 0; +} +.tile-hud:right { + border-right-width: 0; + border-radius: 10px 0 0 10px; +} +.tile-hud:top-left { + border-top-width: 0; + border-left-width: 0; + border-radius: 0 0 10px 0; +} +.tile-hud:top-right { + border-top-width: 0; + border-right-width: 0; + border-radius: 0 0 0 10px; +} +.tile-hud:bottom-left { + border-bottom-width: 0; + border-left-width: 0; + border-radius: 0 10px 0 0; +} +.tile-hud:bottom-right { + border-bottom-width: 0; + border-right-width: 0; + border-radius: 10px 0 0 0; +} + +.systray { + spacing: 4px; +} + +.user-box { + padding: 0.4em 1.3em; + spacing: 10px; +} + +.user-icon { + padding: 4px; + border: none; +} + +.user-label { + font-size: 10.5pt; + font-weight: 500; + color: #d4be98; +} diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/thumbnail.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/thumbnail.png new file mode 100644 index 000000000..ac66aa16f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/cinnamon/thumbnail.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-arrow-left.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-arrow-left.svg new file mode 100644 index 000000000..6cf25440e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-arrow-right.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-arrow-right.svg new file mode 100644 index 000000000..33fd39266 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-event.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-event.svg new file mode 100644 index 000000000..2604cfa67 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/calendar-event.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/checkbox-off.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/checkbox-off.svg new file mode 100644 index 000000000..6aefb37ef --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/checkbox.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/checkbox.svg new file mode 100644 index 000000000..79b0c949f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/checkbox.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/close.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/close.svg new file mode 100644 index 000000000..c64e0d49b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/dash-placeholder.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash-placeholder.svg similarity index 55% rename from local/share/themes/Gruvbox-Dark/gnome-shell/assets/dash-placeholder.svg rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash-placeholder.svg index 172156ae8..24f0a71b4 100644 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/dash-placeholder.svg +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash-placeholder.svg @@ -1,4 +1,4 @@ - - + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running1-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running1-focused.svg new file mode 100644 index 000000000..c294acbc7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running1.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running1.svg new file mode 100644 index 000000000..c860f4690 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running2-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running2-focused.svg new file mode 100644 index 000000000..5fb41f99e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running2.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running2.svg new file mode 100644 index 000000000..a8f9812af --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running3-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running3-focused.svg new file mode 100644 index 000000000..a310296ad --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running3.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running3.svg new file mode 100644 index 000000000..cf4319193 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running4-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running4-focused.svg new file mode 100644 index 000000000..55d141529 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running4.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running4.svg new file mode 100644 index 000000000..0718aeff5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/bottom-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running1-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running1-focused.svg new file mode 100644 index 000000000..90b9f29d0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running1.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running1.svg new file mode 100644 index 000000000..2b91fe455 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running2-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running2-focused.svg new file mode 100644 index 000000000..4ed89bc64 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running2.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running2.svg new file mode 100644 index 000000000..0f5b2bae4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running3-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running3-focused.svg new file mode 100644 index 000000000..71821aa41 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running3.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running3.svg new file mode 100644 index 000000000..a091a8a1f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running4-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running4-focused.svg new file mode 100644 index 000000000..0b578e1a9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running4.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running4.svg new file mode 100644 index 000000000..95e2e0df8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/left-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running1-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running1-focused.svg new file mode 100644 index 000000000..934756f57 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running1.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running1.svg new file mode 100644 index 000000000..ab7c100e7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running2-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running2-focused.svg new file mode 100644 index 000000000..69c100d58 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running2.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running2.svg new file mode 100644 index 000000000..d6fd9b3dc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running3-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running3-focused.svg new file mode 100644 index 000000000..bbd2407a0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running3.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running3.svg new file mode 100644 index 000000000..cc0763e7f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running4-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running4-focused.svg new file mode 100644 index 000000000..db88367e8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running4.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running4.svg new file mode 100644 index 000000000..1b58762da --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/right-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running1-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running1-focused.svg new file mode 100644 index 000000000..d3d2694a2 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running1.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running1.svg new file mode 100644 index 000000000..edca858e7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running2-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running2-focused.svg new file mode 100644 index 000000000..04881ed42 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running2.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running2.svg new file mode 100644 index 000000000..baf023137 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running3-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running3-focused.svg new file mode 100644 index 000000000..0529dc574 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running3.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running3.svg new file mode 100644 index 000000000..d0f550150 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running4-focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running4-focused.svg new file mode 100644 index 000000000..23a5405d6 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running4.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running4.svg new file mode 100644 index 000000000..23e7eb711 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/dash/top-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-enter.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-enter.svg new file mode 100644 index 000000000..6b1dc1e85 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-enter.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-hide.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-hide.svg new file mode 100644 index 000000000..b83fd94cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-hide.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-layout.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-layout.svg new file mode 100644 index 000000000..1d64d4b81 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-layout.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift-latched-uppercase.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift-latched-uppercase.svg new file mode 100644 index 000000000..4d87b0f09 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift-latched-uppercase.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift-uppercase.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift-uppercase.svg new file mode 100644 index 000000000..aa46f3db7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift-uppercase.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift.svg new file mode 100644 index 000000000..25ce6a200 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/key-shift.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/menu-item-toggle-off.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/menu-item-toggle-off.svg new file mode 100644 index 000000000..410a6661f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/menu-item-toggle-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/menu-item-toggle-on.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/menu-item-toggle-on.svg new file mode 100644 index 000000000..b2020f14b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/menu-item-toggle-on.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/no-events.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/no-events.svg new file mode 100644 index 000000000..c04f94ab0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/no-events.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/no-notifications.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/no-notifications.svg similarity index 84% rename from local/share/themes/Gruvbox-Dark/gnome-shell/assets/no-notifications.svg rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/no-notifications.svg index ae09f92c0..479dc4e17 100644 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/no-notifications.svg +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/no-notifications.svg @@ -1,3 +1,3 @@ - + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/toggle-off.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/toggle-off.svg new file mode 100644 index 000000000..d2b46d7eb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/toggle-off.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/toggle-on.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/toggle-on.svg new file mode 100644 index 000000000..10d8e087f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/toggle-on.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/window-close.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/window-close.svg new file mode 100644 index 000000000..aa49e830e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/assets/window-close.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css new file mode 100644 index 000000000..2f3aa207b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css @@ -0,0 +1,519 @@ +#workspacestodockTriggerSpacer { + background-color: none; +} + +#workspacestodockContainerWrapper { + background-color: none; +} + +#workspacestodockContainer { + background-color: none; +} + +#workspacestodockDockWrapper { +} + +#workspacestodockDock { + padding: 0; +} + +#workspacestodockDock .workspace-thumbnails { + background-color: #37474F; + background-color: rgba(0, 0, 0, 0.6); +} + +#workspacestodockDock:overview .workspace-thumbnails { + background-color: rgba(255, 255, 255, 0.1); +} + +#workspacestodockDock.fullheight:overview .workspace-thumbnails { + background-color: transparent; +} + +#workspacestodockDock .workspace-thumbnail-indicator { + border-left-width: 0; +} + +#workspacestodockDock.right .workspace-thumbnail-indicator { + border-left-width: 2px; +} + +#workspacestodockDock.left .workspace-thumbnail-indicator { + border-right-width: 2px; +} + +#workspacestodockDock.top .workspace-thumbnail-indicator { + border-bottom-width: 2px; +} + +#workspacestodockDock.bottom .workspace-thumbnail-indicator { + border-top-width: 2px; +} + +#workspacestodockDock.right .workspace-thumbnails { + border-radius: 4px 0 0 4px; +} + +#workspacestodockDock.left .workspace-thumbnails { + border-radius: 0 4px 4px 0; +} + +#workspacestodockDock.top .workspace-thumbnails { + border-radius: 0 0 4px 4px; +} + +#workspacestodockDock.bottom .workspace-thumbnails { + border-radius: 4px 4px 0 0; +} + +#workspacestodockDock.right.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.left.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.top.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.bottom.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.right.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.left.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.top.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.bottom.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock .workspacestodock-shortcuts-panel { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +#workspacestodockDock.right .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-left: 1px; + border-right: none; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-left: none; + border-right: 1px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-top: none; + border-bottom: 1px; +} + +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-top: 1px; + border-bottom: none; +} + +#workspacestodockDock.right.inside .workspacestodock-shortcuts-panel { + border-radius: 4px 0 0 4px; + padding: 0; + spacing: 0; + border-left: none; + border-right: 1px; +} + +#workspacestodockDock.left.inside .workspacestodock-shortcuts-panel { + border-radius: 0 4px 4px 0; + padding: 0; + spacing: 0; + border-left: 1px; + border-right: none; +} + +#workspacestodockDock.top.inside .workspacestodock-shortcuts-panel { + border-radius: 0 0 4px 4px; + padding: 0; + spacing: 0; + border-top: 1px; + border-bottom: none; +} + +#workspacestodockDock.bottom.inside .workspacestodock-shortcuts-panel { + border-radius: 4px 4px 0 0; + padding: 0; + spacing: 0; + border-top: none; + border-bottom: 1px; +} + +#workspacestodockDock.right.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.left.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.top.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.bottom.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock .workspacestodock-shortcuts-panel > * { + border: 0 !important; +} + +.workspacestodock-shortcuts-panel-popupmenu { + padding: 2px; + spacing: 0; +} + +.workspacestodock-shortcuts-panel-favorites { +} + +.workspacestodock-shortcuts-panel-running { +} + +.workspacestodock-shortcuts-panel-places { +} + +/* shortcuts panel buttons */ +#workspacestodockDock .app-well-app { +} + +#workspacestodockDock .workspacestodock-shortcuts-panel > StButton { + background-size: cover; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton { + padding: 3px 6px; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:first-child, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:first-child { + padding: 6px 6px 3px 6px; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:last-child, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:last-child { + padding: 3px 6px 6px 6px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton { + padding: 6px 3px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:first-child, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:first-child { + padding: 6px 3px 6px 6px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:last-child, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:last-child { + padding: 6px 6px 6px 3px; +} + +.workspacestodock-shortcut-button { +} + +.workspacestodock-shortcut-button-symbolic { +} + +/* shortcuts panel button icons */ +#workspacestodockDock .app-well-app > .overview-icon { +} + +.workspacestodock-shortcut-button-icon { + padding: 6px; +} + +.workspacestodock-shortcut-button-symbolic-icon { + padding: 8px; +} + +/* shortcuts panel items */ +#workspacestodockDock .popup-separator-menu-item { + margin: 0; +} + +.workspacestodock-shortcut-panel-separator { + -margin-horizontal: 0; +} + +.workspacestodock-shortcut-panel-filler { + -margin-horizontal: 0; + height: 0; + padding: 0; + border: none; +} + +/* shortcuts panel button window count indicators */ +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/right-running1.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/left-running1.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/top-running1.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/bottom-running1.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/right-running2.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/left-running2.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/top-running2.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/bottom-running2.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/right-running3.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/left-running3.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/top-running3.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/bottom-running3.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/right-running4.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/left-running4.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/top-running4.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/bottom-running4.svg"); +} + +.workspacestodock-workspace-caption-container { + padding: 0; +} + +.workspacestodock-workspace-caption-background { + background-color: rgba(0, 0, 0, 0.6); + /* border-radius: 0 0 4px 4px; */ +} + +.workspacestodock-workspace-caption-background.caption-top { + /* border-radius: 4px 4px 0 0; */ +} + +.workspacestodock-workspace-caption { +} + +/* caption window apps (taskbar) */ +.workspacestodock-caption-windowapps { + padding: 0; +} + +.workspacestodock-caption-windowapps-menu { + -boxpointer-gap: 12px; +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item { + min-height: 24px; + padding-top: 4px; + padding-bottom: 4px; +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item:active { + background-color: rgba(0, 0, 0, 0.12); +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item.selected:active { + background-color: rgba(0, 0, 0, 0.24); +} + +.workspacestodock-caption-windowapps-menu-item { + /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */ +} + +.workspacestodock-caption-windowapps-menu-item:active { + /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */ +} + +.workspacestodock-caption-windowapps-menu-icon { +} + +.workspacestodock-caption-windowapps-menu-label { + padding: 0 8px; +} + +.workspacestodock-caption-windowapps-menu .window-close { + /* GS36+ can override gnome shell class 'window-close' */ + border-radius: 100px; + -st-background-image-shadow: none; + background-image: url("../../assets/close.svg"); + background-size: 24px; + height: 24px; + width: 24px; +} + +.workspacestodock-caption-windowapps-menu .window-close:hover { + background-color: rgba(0, 0, 0, 0.12); +} + +.workspacestodock-caption-windowapps-menu .window-close:active { + background-color: rgba(0, 0, 0, 0.24); +} + +.workspacestodock-caption-windowapps-menu-close { + /*fallback class for GS34 since it can't override gnome shell class 'window-close' */ +} + +.workspacestodock-caption-windowapps-menu-close:hover { + /*fallback class for GS34 since it can't override gnome shell class 'window-close' */ +} + +.workspacestodock-caption-windowapps-button { + padding: 0; +} + +.workspacestodock-caption-windowapps-button-icon { + padding: 2px; + background-color: rgba(0, 0, 0, 0.01); /* needs to draw box-shadow */ +} + +.workspacestodock-caption-windowapps-button:active > .workspacestodock-caption-windowapps-button-icon { + box-shadow: inset 0 -2px rgba(255, 255, 255, 0.3); +} + +.workspacestodock-caption-windowapps-button-active > .workspacestodock-caption-windowapps-button-icon { + box-shadow: inset 0 -2px #FFFFFF; +} + +/* caption workspace number */ +.workspacestodock-caption-number { + margin: 1px; + padding: 0 10px; + border-radius: 0; + background-color: rgba(255, 255, 255, 0.3); + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* caption workspace name */ +.workspacestodock-caption-name { + margin: 0 4px; + color: rgba(255, 255, 255, 0.6); + font-size: 9pt; + text-align: center; +} + +/* caption workspace windowcount */ +.workspacestodock-caption-windowcount { + /* min-width: 16px; */ + margin: 0px 4px; + padding: 0px 4px; + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* caption workspace windowcount image*/ +.workspacestodock-caption-windowcount-image { + width: 20px; + height: 20px; + margin: 1px; + border-radius: 0; + background-color: #FF4081; + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* The classes below are used in conjunction with the above workspacestodock-caption-windowcount-image + * They provide background images that corespond with the window count */ +.workspacestodock-caption-windowcount-image-1 { +} + +.workspacestodock-caption-windowcount-image-2 { +} + +.workspacestodock-caption-windowcount-image-3 { +} + +.workspacestodock-caption-windowcount-image-4 { +} + +/* caption spacer-filler */ +.workspacestodock-caption-spacer { + width: 4px; +} + +/* The classes below are used in conjuction with the above classes + * They provide additional theming for the current workspace caption */ +.workspacestodock-workspace-caption-background-current { +} + +.workspacestodock-workspace-caption-background-current.caption-top { +} + +.workspacestodock-caption-number-current { + /* background-color: #42A5F5; */ +} + +.workspacestodock-caption-name-current { +} + +.workspacestodock-caption-windowcount-current { +} + +.workspacestodock-caption-windowcount-image-current { +} diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell-start.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell-start.svg new file mode 100644 index 000000000..7712c866d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell-start.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell-theme.gresource.xml b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell-theme.gresource.xml new file mode 100644 index 000000000..56a74c761 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell-theme.gresource.xml @@ -0,0 +1,79 @@ + + + + assets/dash/bottom-running1.svg + assets/dash/bottom-running1-focused.svg + assets/dash/bottom-running2.svg + assets/dash/bottom-running2-focused.svg + assets/dash/bottom-running3.svg + assets/dash/bottom-running3-focused.svg + assets/dash/bottom-running4.svg + assets/dash/bottom-running4-focused.svg + assets/dash/left-running1.svg + assets/dash/left-running1-focused.svg + assets/dash/left-running2.svg + assets/dash/left-running2-focused.svg + assets/dash/left-running3.svg + assets/dash/left-running3-focused.svg + assets/dash/left-running4.svg + assets/dash/left-running4-focused.svg + assets/dash/right-running1.svg + assets/dash/right-running1-focused.svg + assets/dash/right-running2.svg + assets/dash/right-running2-focused.svg + assets/dash/right-running3.svg + assets/dash/right-running3-focused.svg + assets/dash/right-running4.svg + assets/dash/right-running4-focused.svg + assets/dash/top-running1.svg + assets/dash/top-running1-focused.svg + assets/dash/top-running2.svg + assets/dash/top-running2-focused.svg + assets/dash/top-running3.svg + assets/dash/top-running3-focused.svg + assets/dash/top-running4.svg + assets/dash/top-running4-focused.svg + assets/calendar-arrow-left.svg + assets/calendar-arrow-right.svg + assets/calendar-event.svg + assets/checkbox.svg + assets/checkbox-off.svg + assets/close.svg + assets/dash-placeholder.svg + assets/key-enter.svg + assets/key-hide.svg + assets/key-layout.svg + assets/key-shift.svg + assets/key-shift-uppercase.svg + assets/key-shift-latched-uppercase.svg + assets/menu-item-toggle-off.svg + assets/menu-item-toggle-on.svg + assets/no-events.svg + assets/no-notifications.svg + assets/toggle-off.svg + assets/toggle-on.svg + assets/window-close.svg + extensions/workspaces-to-dock/workspaces-to-dock.css + gnome-shell.css + gnome-shell-start.svg + icons/scalable/actions/color-pick.svg + icons/scalable/actions/pointer-double-click-symbolic.svg + icons/scalable/actions/pointer-drag-symbolic.svg + icons/scalable/actions/pointer-primary-click-symbolic.svg + icons/scalable/actions/pointer-secondary-click-symbolic.svg + icons/scalable/actions/preview-close-symbolic.svg + icons/scalable/status/carousel-arrow-back-24-symbolic.svg + icons/scalable/status/carousel-arrow-next-24-symbolic.svg + icons/scalable/status/eye-not-looking-symbolic.svg + icons/scalable/status/eye-open-negative-filled-symbolic.svg + icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg + icons/scalable/status/keyboard-enter-symbolic.svg + icons/scalable/status/keyboard-hide-symbolic.svg + icons/scalable/status/keyboard-layout-filled-symbolic.svg + icons/scalable/status/keyboard-shift-filled-symbolic.svg + icons/scalable/status/message-indicator-symbolic.svg + noise-texture.png + pad-osd.css + process-working.svg + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell.css b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell.css new file mode 100644 index 000000000..dbc03a472 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/gnome-shell.css @@ -0,0 +1,3322 @@ +/* Copyright 2009, 2015 Red Hat, Inc. + * + * Portions adapted from Mx's data/style/default.css + * Copyright 2009 Intel Corporation + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU Lesser General Public License, + * version 2.1, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + */ +stage { + color: #d4be98; + font-size: 1em; +} + +.shell-link { + transition-duration: 100ms; + border-radius: 6px; + color: #7c6f64; +} +.shell-link:hover { + background-color: rgba(124, 111, 100, 0.08); + color: #7c6f64; +} +.shell-link:active { + transition-duration: 200ms; + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; +} + +.lowres-icon { + icon-shadow: none; +} + +.icon-dropshadow { + icon-shadow: none; +} + +/* Entries */ +.lg-dialog StEntry, +StEntry { + min-height: 32px; + padding: 0 8px; + border-width: 0; + border-radius: 6px 6px 0 0; + color: #d4be98; + selection-background-color: rgba(124, 111, 100, 0.6); + selected-color: #d4be98; + font-size: 11.25pt; + font-weight: 400; + transition-duration: 100ms; + background-color: rgba(212, 190, 152, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); +} +StEntry:hover { + box-shadow: inset 0 -1px #d4be98; +} +StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #7c6f64; +} +StEntry:insensitive { + color: rgba(212, 190, 152, 0.5); + border-color: transparent; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); +} +StEntry StIcon.capslock-warning { + icon-size: 16px; + padding: 0 4px; + warning-color: #d8a657; +} +StEntry StIcon.peek-password { + icon-size: 16px; + padding: 0 4px; + color: rgba(212, 190, 152, 0.7); +} +StEntry StIcon.peek-password:hover { + color: #d4be98; +} +StEntry StLabel.hint-text { + margin-left: 2px; + color: rgba(212, 190, 152, 0.7); +} + +/* Buttons */ +.lg-obj-inspector-button, .app-folder-dialog .folder-name-container .edit-folder-button, .modal-dialog .modal-dialog-linked-button, .hotplug-notification-item, .notification-banner .notification-button, +.button { + min-height: 32px; + min-width: 48px; + padding: 0 8px; + border: 0; + border-radius: 6px; + font-size: 10.5pt; + font-weight: 500; + color: #7c6f64; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.lg-obj-inspector-button:focus, .app-folder-dialog .folder-name-container .edit-folder-button:focus, .modal-dialog .modal-dialog-linked-button:focus, .hotplug-notification-item:focus, .notification-banner .notification-button:focus, +.button:focus { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.lg-obj-inspector-button:hover, .app-folder-dialog .folder-name-container .edit-folder-button:hover, .modal-dialog .modal-dialog-linked-button:hover, .hotplug-notification-item:hover, .notification-banner .notification-button:hover, +.button:hover { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.lg-obj-inspector-button:active, .app-folder-dialog .folder-name-container .edit-folder-button:active, .modal-dialog .modal-dialog-linked-button:active, .hotplug-notification-item:active, .notification-banner .notification-button:active, +.button:active { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.lg-obj-inspector-button:insensitive, .app-folder-dialog .folder-name-container .edit-folder-button:insensitive, .modal-dialog .modal-dialog-linked-button:insensitive, .hotplug-notification-item:insensitive, .notification-banner .notification-button:insensitive, +.button:insensitive { + color: rgba(212, 190, 152, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog .modal-dialog-linked-button, .hotplug-notification-item, .notification-banner .notification-button { + margin: 4px; + margin-right: 0; +} +.modal-dialog .modal-dialog-linked-button:first-child, .hotplug-notification-item:first-child, .notification-banner .notification-button:first-child, .modal-dialog .modal-dialog-linked-button:last-child, .hotplug-notification-item:last-child, .notification-banner .notification-button:last-child { + border-radius: 6px; +} +.modal-dialog .modal-dialog-linked-button:last-child, .hotplug-notification-item:last-child, .notification-banner .notification-button:last-child { + margin-right: 4px; + border-right-width: 0; +} + +/* Check Boxes */ +.check-box StBoxLayout { + spacing: 8px; +} +.check-box StBin { + transition-duration: 100ms; + width: 24px; + height: 24px; + padding: 4px; + border-radius: 16px; +} +.check-box StBin, .check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} +.check-box:focus StBin { + background-color: rgba(212, 190, 152, 0.08); +} +.check-box:hover StBin { + background-color: rgba(212, 190, 152, 0.08); +} +.check-box:active StBin { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); +} +.check-box:checked StBin, .check-box:checked:focus StBin { + background-image: url("assets/checkbox.svg"); +} +.check-box:checked:focus StBin { + background-color: rgba(124, 111, 100, 0.08); +} +.check-box:checked:hover StBin { + background-color: rgba(124, 111, 100, 0.08); +} +.check-box:checked:active StBin { + background-color: rgba(124, 111, 100, 0.12); +} + +/* Switches */ +.toggle-switch { + color: inherit; + width: 40px; + height: 24px; + background-size: contain; + background-image: url("assets/toggle-off.svg"); +} +.toggle-switch:checked { + background-image: url("assets/toggle-on.svg"); +} + +/* Slider */ +.slider { + height: 20px; + -barlevel-height: 2px; + -barlevel-border-width: 0; + -barlevel-border-color: transparent; + -barlevel-background-color: rgba(212, 190, 152, 0.3); + -barlevel-active-border-color: transparent; + -barlevel-active-background-color: #7c6f64; + -barlevel-overdrive-color: #ea6962; + -barlevel-overdrive-border-color: transparent; + -barlevel-overdrive-separator-width: 2px; + -slider-handle-radius: 6px; + -slider-handle-border-width: 0; + -slider-handle-border-color: transparent; +} +.slider, .slider:hover, .slider:active { + color: #7c6f64; +} + +/* Scrollbars */ +StScrollView.vfade { + -st-vfade-offset: 32px; +} +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollBar { + padding: 0; +} +StScrollView StScrollBar { + min-width: 16px; + min-height: 16px; +} +StScrollBar StBin#trough { + margin: 4px; + border-radius: 4px; + background-color: rgba(212, 190, 152, 0.2); +} +StScrollBar StButton#vhandle, +StScrollBar StButton#hhandle { + transition-duration: 100ms; + margin: 4px; + border-radius: 4px; + background-color: rgba(212, 190, 152, 0.5); +} +StScrollBar StButton#vhandle:hover, +StScrollBar StButton#hhandle:hover { + background-color: rgba(212, 190, 152, 0.6); +} +StScrollBar StButton#vhandle:active, +StScrollBar StButton#hhandle:active { + background-color: rgba(212, 190, 152, 0.7); +} + +/* Popovers/Menus */ +.popup-menu-boxpointer, .candidate-popup-boxpointer { + -arrow-base: 0; + -arrow-rise: 0; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-border-radius: 20px; + -arrow-box-shadow: none; + -arrow-background-color: transparent; +} + +.popup-menu { + min-width: 15em; + border-color: transparent; + color: inherit; +} +.popup-menu.panel-menu { + -boxpointer-gap: 0; + margin-bottom: 1.75em; +} + +.popup-menu-content, .candidate-popup-content { + margin: 8px; + padding: 8px 0; + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #3C3836; + color: #d4be98; +} + +.popup-menu-item { + spacing: 8px; + padding: 0; + transition-duration: 100ms; +} +.popup-menu-item:ltr { + padding: 0.4em; + padding-right: 24px; + padding-left: 0; +} +.popup-menu-item:rtl { + padding: 0.4em; + padding-right: 0; + padding-left: 24px; +} +.popup-menu-item.selected { + background-color: rgba(212, 190, 152, 0.08); + transition-duration: 0ms; +} +.popup-menu-item.selected, .popup-menu-item.selected:active { + color: #d4be98; +} +.popup-menu-item:active { + background-color: rgba(212, 190, 152, 0.12); + color: #d4be98; + transition-duration: 200ms; +} +.popup-menu-item:checked { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.6); + font-weight: normal; +} +.popup-menu-item:checked.selected { + background-color: rgba(124, 111, 100, 0.632); +} +.popup-menu-item:checked:active { + background-color: rgba(124, 111, 100, 0.648); +} +.popup-menu-item:insensitive { + color: rgba(212, 190, 152, 0.5); +} +.popup-menu-item .toggle-switch { + width: 20px; + height: 20px; + background-image: url("assets/menu-item-toggle-off.svg"); +} +.popup-menu-item .toggle-switch:checked { + background-image: url("assets/menu-item-toggle-on.svg"); +} + +.popup-inactive-menu-item { + color: #d4be98; +} +.popup-inactive-menu-item:insensitive { + color: rgba(212, 190, 152, 0.5); +} + +.popup-menu-arrow { + icon-size: 16px; +} +.popup-menu-content .popup-menu-arrow, .candidate-popup-content .popup-menu-arrow { + color: rgba(212, 190, 152, 0.7); +} + +.popup-menu-icon { + icon-size: 16px; + color: rgba(212, 190, 152, 0.7); +} + +.popup-sub-menu { + border-top: 0; + border-bottom: 0; + padding-bottom: 0; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.04); +} + +.popup-menu-ornament { + text-align: right; + width: 16px; + height: 16px; +} +.popup-menu-ornament:ltr { + text-align: right; +} +.popup-menu-ornament:rtl { + text-align: left; +} + +.popup-separator-menu-item { + padding: 0; +} +.popup-separator-menu-item .popup-separator-menu-item-separator { + height: 1px; + margin: 8px 0; + background-color: rgba(212, 190, 152, 0.2); +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { + margin: 8px 0; + background-color: rgba(212, 190, 152, 0.2); +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator:ltr { + margin-right: 32px; +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator:rtl { + margin-left: 32px; +} + +.background-menu { + -boxpointer-gap: 4px; + -arrow-rise: 0; +} + +.aggregate-menu { + min-width: 21em; +} +.aggregate-menu .popup-menu-icon { + padding: 0; + margin: 0 4px; + -st-icon-style: symbolic; +} +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:ltr { + padding-left: 16px; + margin-left: 16px; +} +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:rtl { + padding-right: 16px; + margin-right: 16px; +} + +/* Date/Time Menu */ +#calendarArea { + padding: 8px 16px; +} + +.datemenu-calendar-column { + spacing: 8px; + padding: 0; + border: 0 solid rgba(212, 190, 152, 0.2); +} +.datemenu-calendar-column:ltr { + margin-right: 0; + border-left-width: 0; +} +.datemenu-calendar-column:rtl { + margin-left: 0; + border-right-width: 0; +} +.datemenu-calendar-column .datemenu-displays-section { + padding-bottom: 0; +} +.datemenu-calendar-column .datemenu-displays-box { + spacing: 8px; + margin: 0 8px; +} + +.events-section-title { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 12px; + padding: 8px; + color: rgba(212, 190, 152, 0.7) !important; + font-weight: bold; +} +.events-section-title, .events-section-title:focus, .events-section-title:hover, .events-section-title:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.events-section-title:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.events-section-title:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.events-section-title:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} + +/* today button (the date) */ +.datemenu-today-button { + margin: 0; + border: 0; + border-radius: 6px; + margin: 0 8px; + min-height: 40px; + padding: 8px; +} +.datemenu-today-button, .datemenu-today-button:focus, .datemenu-today-button:hover, .datemenu-today-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.datemenu-today-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.datemenu-today-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.datemenu-today-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.datemenu-today-button .day-label { + font-weight: normal; + font-size: 1em; +} +.datemenu-today-button .date-label { + font-size: 18pt; + font-weight: 400; +} + +/* Calendar */ +.calendar { + margin: 0; + border: 0; + border-radius: 6px; + margin: 0 8px; + margin-bottom: 0; + padding: 0; +} +.calendar, .calendar:focus, .calendar:hover, .calendar:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.calendar:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.calendar .calendar-month-label { + transition-duration: 100ms; + min-height: 16px; + margin: 2px; + padding: 6px 8px; + border-radius: 6px; + color: inherit; + font-weight: bold; + text-align: center; +} +.calendar .calendar-month-label:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .calendar-change-month-back StIcon, +.calendar .calendar-change-month-forward StIcon { + icon-size: 16px; +} +.calendar .pager-button { + transition-duration: 100ms; + width: 28px; + height: 28px; + margin: 2px; + border-radius: 14px; + background-color: transparent; + color: rgba(212, 190, 152, 0.7); +} +.calendar .pager-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .pager-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .pager-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.calendar .calendar-day-base { + transition-duration: 100ms; + width: 28px; + height: 28px; + margin: 2px; + padding: 0; + border: 0; + border-radius: 14px; + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; + text-align: center; +} +.calendar .calendar-day-base:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .calendar-day-base:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .calendar-day-base:active { + transition-duration: 200ms; + border-color: transparent; + background-color: rgba(212, 190, 152, 0.12); + color: inherit; +} +.calendar .calendar-day-base:selected { + border-color: transparent; + background-color: #7c6f64 !important; + color: rgba(255, 255, 255, 0.87) !important; + font-weight: 500 !important; +} +.calendar .calendar-day-base.calendar-day-heading { + width: 28px; + height: 21px; + margin-top: 2px; + padding: 7px 0 0; + border-radius: 14px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + font-size: 9pt; + font-weight: 400; + font-weight: bold; + text-align: center; +} +.calendar .calendar-day-base.calendar-day-heading:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.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: inherit; +} +.calendar .calendar-today { + border: 0; + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.7); + background-color: rgba(60, 56, 54, 0.01); + color: inherit; + font-weight: normal; +} +.calendar .calendar-today:focus { + background-color: rgba(212, 190, 152, 0.08); + color: inherit; +} +.calendar .calendar-today:hover { + background-color: rgba(212, 190, 152, 0.08); + color: inherit; +} +.calendar .calendar-today:active, .calendar .calendar-today:active:hover, .calendar .calendar-today:active:focus { + background-color: rgba(212, 190, 152, 0.12); + color: inherit; +} +.calendar .calendar-today:selected { + box-shadow: inset 0 0 0 1px transparent; +} +.calendar .calendar-today:selected, .calendar .calendar-today:selected:hover, .calendar .calendar-today:selected:focus { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +.calendar .calendar-day-with-events { + background-image: url("assets/calendar-event.svg"); +} +.calendar .calendar-day-with-events, .calendar .calendar-day-with-events.calendar-work-day { + color: inherit; + font-weight: normal; +} +.calendar .calendar-other-month-day { + color: rgba(212, 190, 152, 0.3) !important; +} +.calendar .calendar-week-number { + width: 28px; + height: 28px; + margin: 2px; + border-radius: 14px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + font-weight: bold; + font-size: 1em; + text-align: center; +} + +/* Events */ +.events-button { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 40px; + padding: 8px; +} +.events-button, .events-button:focus, .events-button:hover, .events-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.events-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.events-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.events-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.events-button .events-box { + spacing: 8px; +} +.events-button .events-list { + spacing: 8px; +} +.events-button .events-title { + color: rgba(212, 190, 152, 0.7); + font-weight: bold; + margin-bottom: 0; +} +.events-button .event-time { + color: rgba(212, 190, 152, 0.7); + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; +} + +/* World clocks */ +.world-clocks-button { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 12px; + padding: 8px; +} +.world-clocks-button, .world-clocks-button:focus, .world-clocks-button:hover, .world-clocks-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.world-clocks-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.world-clocks-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.world-clocks-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.world-clocks-button .world-clocks-grid { + spacing-rows: 0.4em; + spacing-columns: 0.8em; +} +.world-clocks-button .world-clocks-header { + color: rgba(212, 190, 152, 0.7); + font-weight: bold; +} +.world-clocks-button .world-clocks-city { + color: inherit; + font-weight: normal; + font-size: 1em; +} +.world-clocks-button .world-clocks-time { + color: rgba(212, 190, 152, 0.7); + font-weight: normal; + font-size: 1em; + font-feature-settings: "tnum"; + text-align: right; +} +.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(212, 190, 152, 0.5); + font-size: 1em; + font-feature-settings: "tnum"; +} + +/* Weather */ +.weather-button { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 40px; + padding: 8px; +} +.weather-button, .weather-button:focus, .weather-button:hover, .weather-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.weather-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.weather-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.weather-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.weather-button .weather-box { + spacing: 0.4em; +} +.weather-button .weather-header-box { + spacing: 8px; +} +.weather-button .weather-header { + color: rgba(212, 190, 152, 0.7); + font-weight: bold; +} +.weather-button .weather-header.location { + font-weight: normal; + font-size: 1em; +} +.weather-button .weather-grid { + spacing-rows: 0.4em; + spacing-columns: 0.8em; +} +.weather-button .weather-forecast-time { + padding-top: 0; + padding-bottom: 0; + color: rgba(212, 190, 152, 0.7); + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; +} +.weather-button .weather-forecast-icon { + icon-size: 32px; +} +.weather-button .weather-forecast-temp { + font-weight: bold; +} + +/* Message List */ +.message-list { + width: 31.5em; + padding: 0; +} +.message-list .message-list-placeholder { + spacing: 12px; +} + +.message-list-sections { + spacing: 8px; + margin: 0 8px; +} + +.message-list-section, +.message-list-section-list { + spacing: 8px; +} + +.message-list-section-list:ltr { + padding-left: 0; +} +.message-list-section-list:rtl { + padding-right: 0; +} + +.message-list-controls { + margin: 8px 8px 0; + padding: 0; + spacing: 8px; +} + +.message { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 56px; +} +.message, .message:focus, .message:hover, .message:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.message:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.message:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.message:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.message .message-icon-bin { + padding: 12px 0 12px 12px; +} +.message .message-icon-bin:rtl { + padding: 12px 12px 12px 0; +} +.message .message-icon-bin > StIcon { + -st-icon-style: requested; + icon-size: 16px; + color: inherit; +} +.message .message-icon-bin > StIcon, .message .message-icon-bin > StIcon:rtl { + margin: 0; +} +.message .message-icon-bin > .fallback-app-icon { + width: 16px; + height: 16px; +} +.message .message-content { + min-height: 40px; + padding: 8px; + spacing: 0; + color: inherit; + font-size: 1em; +} +.message .message-title { + min-height: 22px; + padding-top: 2px; + color: inherit; + font-weight: bold; + font-size: 1em; +} +.message .message-secondary-bin { + padding: 0 8px; +} +.message .message-secondary-bin > .event-time { + min-height: 22px; + padding-top: 2px; + color: rgba(212, 190, 152, 0.7); + font-size: 1em; + text-align: right; + padding-bottom: 0; +} +.message .message-secondary-bin > .event-time:ltr { + text-align: right; +} +.message .message-secondary-bin > .event-time:rtl { + text-align: left; +} +.message .message-secondary-bin > StIcon { + icon-size: 16px; +} +.message .message-close-button { + transition-duration: 100ms; + icon-size: 16px; + padding: 4px; + border-radius: 12px; +} +.message .message-close-button, .message .message-close-button:hover, .message .message-close-button:active { + color: rgba(212, 190, 152, 0.7); +} +.message .message-close-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.message .message-close-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.message .message-close-button:active { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); +} +.message .message-body { + color: rgba(212, 190, 152, 0.7); +} + +.url-highlighter { + link-color: #7c6f64; +} + +/* Media Controls */ +.message-media-control { + transition-duration: 100ms; + margin: 16px 0; + padding: 8px; + border-radius: 16px; +} +.message-media-control, .message-media-control:focus, .message-media-control:hover, .message-media-control:active { + color: rgba(212, 190, 152, 0.7); +} +.message-media-control:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.message-media-control:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.message-media-control:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.message-media-control:insensitive { + color: rgba(212, 190, 152, 0.3); +} +.message-media-control:last-child:ltr { + margin-right: 16px; + padding-right: 8px; + border-radius: 16px; +} +.message-media-control:last-child:rtl { + margin-left: 16px; + padding-left: 8px; + border-radius: 16px; +} + +.media-message-cover-icon { + icon-size: 32px !important; + margin: 4px 0 !important; + border-radius: 0; +} +.media-message-cover-icon.fallback { + icon-size: 16px !important; + padding: 8px; + border: 0; + border-radius: 6px; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5) !important; +} + +.candidate-popup-content { + padding: 8px; + spacing: 0; +} + +.candidate-index { + padding: 0 4px 0 0; + color: rgba(212, 190, 152, 0.7); +} + +.candidate-box { + transition-duration: 100ms; + min-height: 28px; + padding: 0 8px; + border-radius: 6px; +} +.candidate-box:hover { + background-color: rgba(212, 190, 152, 0.08); + color: inherit; + transition-duration: 0ms; +} +.candidate-box:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.candidate-box:selected { + background-color: rgba(124, 111, 100, 0.6); + color: inherit; + transition-duration: 0ms; +} + +.candidate-page-button-box { + height: 28px; +} +.vertical .candidate-page-button-box { + padding-top: 0; +} +.horizontal .candidate-page-button-box { + padding-left: 0; +} + +.candidate-page-button { + min-width: 28px; + min-height: 28px; + padding: 0; +} + +.candidate-page-button-previous { + border-right-width: 0; + border-radius: 6px; +} + +.candidate-page-button-next { + border-radius: 6px; +} + +.candidate-page-button-icon { + icon-size: 16px; +} + +/* Notifications & Message Tray */ +.notification-banner { + min-height: 56px; + width: 34em; + margin: 5px; + border: 0; + border-radius: 6px; + font-size: 1em; +} +.notification-banner, .notification-banner:focus, .notification-banner:hover, .notification-banner:active { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #3C3836; + color: #d4be98; +} +.notification-banner .notification-actions { + spacing: 0; + padding-top: 0; + border-top: 0; + background-color: transparent; + color: inherit; +} +.summary-source-counter { + -shell-counter-overlap-x: 3px; + -shell-counter-overlap-y: 3px; + height: 1.6em; + width: 1.6em; + border: 0; + border-radius: 0.8em; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); + font-weight: bold; + font-size: 1em; +} + +.chat-body { + spacing: 5px; +} + +.chat-response { + margin: 5px; +} + +.chat-log-message { + color: #d4be98; +} + +.chat-new-group { + padding-top: 1em; +} + +.chat-received { + padding-left: 4px; +} +.chat-received:rtl { + padding-left: 0; + padding-right: 4px; +} + +.chat-sent { + padding-left: 18pt; + color: rgba(212, 190, 152, 0.7); +} +.chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; +} + +.chat-meta-message { + padding-left: 4px; + color: rgba(212, 190, 152, 0.7); + font-size: 9pt; + font-weight: 400; +} +.chat-meta-message:rtl { + padding-left: 0; + padding-right: 4px; +} + +.hotplug-notification-item-icon { + icon-size: 24px; + padding: 0 4px; +} + +/* Modal Dialogs */ +.headline { + font-size: 15pt; + font-weight: 500; +} + +.modal-dialog { + border: 0; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} +.modal-dialog .modal-dialog-content-box { + max-width: 28em; + margin: 32px 40px; + spacing: 32px; +} +/* End Session Dialog */ +.end-session-dialog { + width: 30em; +} +.end-session-dialog .end-session-dialog-battery-warning, +.end-session-dialog .dialog-list-title { + color: #ea6962; +} + +/* Message Dialog */ +.message-dialog-content { + spacing: 18px; +} +.message-dialog-content .message-dialog-title { + font-size: 15pt; + font-weight: 500; + text-align: inherit; +} +.message-dialog-content .message-dialog-title.lightweight { + font-size: 15pt; + font-weight: 500; +} +.message-dialog-content .message-dialog-description { + color: rgba(212, 190, 152, 0.7); + text-align: inherit; +} + +/* Dialog List */ +.dialog-list { + spacing: 18px; +} +.dialog-list .dialog-list-title { + text-align: inherit; + 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(212, 190, 152, 0.7); + font-size: 1em; +} + +/* Run Dialog */ +.run-dialog .modal-dialog-content-box { + margin-top: 24px; + margin-bottom: 16px; +} +.run-dialog .run-dialog-entry { + width: 20em; +} +.run-dialog .run-dialog-description { + text-align: inherit; + color: rgba(212, 190, 152, 0.7); + font-size: 1em; +} + +/* Password or Authentication Dialog */ +.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: 18em; +} + +.prompt-dialog-error-label, +.prompt-dialog-info-label, +.prompt-dialog-null-label { + font-size: 1em; + text-align: inherit; +} + +.prompt-dialog-error-label { + color: #ea6962; +} + +/* Polkit Dialog */ +.polkit-dialog-user-layout { + text-align: center; + spacing: 8px; + margin-bottom: 6px; +} +.polkit-dialog-user-layout .polkit-dialog-user-icon { + border-radius: 9999px; + background-size: contain; +} +.polkit-dialog-user-layout .polkit-dialog-user-root-label { + color: #ea6962; +} + +/* Audio selection dialog */ +.audio-device-selection-dialog .modal-dialog-content-box { + margin-bottom: 28px; +} +.audio-device-selection-dialog .audio-selection-box { + spacing: 20px; +} + +.audio-selection-device { + transition-duration: 100ms; + border: 0; + border-radius: 6px; +} +.audio-selection-device:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.audio-selection-device:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.audio-selection-device:active { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); + color: inherit; +} + +.audio-selection-device-box { + padding: 20px; + spacing: 20px; +} + +.audio-selection-device-icon { + icon-size: 64px; +} + +/* Network Dialogs */ +.nm-dialog { + max-height: 34em; + min-height: 31em; + min-width: 32em; +} + +.nm-dialog-content { + spacing: 20px; + padding: 24px; +} + +.nm-dialog-airplane-box { + spacing: 12px; +} + +.nm-dialog-airplane-headline { + text-align: center; +} + +.nm-dialog-airplane-text { + color: rgba(212, 190, 152, 0.7); +} + +.nm-dialog-header { + font-size: 15pt; + font-weight: 500; +} + +.nm-dialog-subheader { + color: rgba(212, 190, 152, 0.7); +} + +.nm-dialog-header-icon { + icon-size: 32px; + color: rgba(212, 190, 152, 0.7); +} + +.nm-dialog-header-hbox { + spacing: 16px; +} + +.nm-dialog-scroll-view { + border: 0; + padding: 0; + background-color: transparent; +} + +.nm-dialog-item { + transition-duration: 100ms; + padding: 12px; + spacing: 20px; + border-bottom: 0; + border-radius: 6px; + font-size: 1em; +} +.nm-dialog-item:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.nm-dialog-item:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.nm-dialog-item:active { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); +} +.nm-dialog-item:selected { + background-color: rgba(124, 111, 100, 0.6); + color: #d4be98; +} + +.nm-dialog-icon { + icon-size: 16px; + color: rgba(212, 190, 152, 0.7); +} + +.nm-dialog-icons { + spacing: 0.5em; +} + +.no-networks-label { + color: rgba(212, 190, 152, 0.7); +} + +.no-networks-box { + spacing: 12px; +} + +/* OSD */ +.osd-window { + padding: 12px; + border: none; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; + text-align: center; + font-weight: bold; + spacing: 12px; + margin: 32px; + min-width: 64px; + min-height: 64px; +} +.osd-window StIcon { + icon-size: 96px; +} +.osd-window .osd-monitor-label { + font-size: 48px; + font-weight: 400; +} +.osd-window .level { + height: 8px; + -barlevel-height: 8px; + -barlevel-background-color: rgba(212, 190, 152, 0.2); + -barlevel-active-background-color: #7c6f64; + -barlevel-overdrive-color: #ea6962; + -barlevel-overdrive-separator-width: 2px; +} + +.resize-popup { + padding: 12px; + border: none; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} + +/* Pad OSD */ +.pad-osd-window { + padding: 32px; + background-color: black; +} +.pad-osd-window .pad-osd-title-box { + spacing: 12px; +} +.pad-osd-window .pad-osd-title-menu-box { + spacing: 6px; +} + +.combo-box-label { + width: 15em; +} + +/* App Switcher */ +.switcher-popup { + padding: 8px; + spacing: 16px; +} + +.switcher-list { + padding: 12px; + border: none; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} +.switcher-list .switcher-list-item-container { + spacing: 8px; +} +.switcher-list .item-box { + transition-duration: 100ms; + padding: 8px; + border: 0; + border-radius: 6px; +} +.switcher-list .item-box:outlined { + padding: 8px; + border: 0; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.12); + color: inherit; +} +.switcher-list .item-box:selected { + background-color: rgba(124, 111, 100, 0.6); + color: inherit; +} +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} +.switcher-list .thumbnail { + width: 256px; +} +.switcher-list .separator { + width: 1px; + background: rgba(212, 190, 152, 0.2); +} + +.switcher-arrow { + transition-duration: 100ms; + border-color: transparent; + color: rgba(212, 190, 152, 0.7); +} +.switcher-arrow:highlighted { + color: #d4be98; +} + +.input-source-switcher-symbol { + width: 96px; + height: 96px; + font-size: 48px; + font-weight: 400; +} + +.cycler-highlight { + border: 4px solid #7c6f64; +} + +/* Workspace Switcher */ +.workspace-switcher-group { + padding: 8px; +} + +.workspace-switcher-container { + padding: 12px; + border: none; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} + +.workspace-switcher { + background: transparent; + border: 0; + border-radius: 0; + padding: 0; + spacing: 8px; +} + +.ws-switcher-box { + height: 48px; + border: 0; + border-radius: 6px; + background-color: rgba(212, 190, 152, 0.2); + background-size: 0; +} + +.ws-switcher-active-up, +.ws-switcher-active-down, +.ws-switcher-active-left, +.ws-switcher-active-right { + height: 48px; + border: 0; + border-radius: 6px; + background-color: #7c6f64; + background-size: 0; + color: inherit; +} + +/* OVERVIEW */ +#overview { + spacing: 24px; + background-color: transparent; + color: #fff; +} +#overview StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.2); +} +#overview StScrollBar StButton#vhandle, +#overview StScrollBar StButton#hhandle { + background-color: rgba(255, 255, 255, 0.5); +} +#overview StScrollBar StButton#vhandle:hover, +#overview StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.6); +} +#overview StScrollBar StButton#vhandle:active, +#overview StScrollBar StButton#hhandle:active { + background-color: rgba(255, 255, 255, 0.7); +} + +.overview-controls { + padding-bottom: 32px; +} + +/* Top Bar */ +#panel { + transition-duration: 250ms; + height: 28px; + background-color: #1e1c1b; + font-weight: bold; + font-feature-settings: "tnum"; +} +#panel #panelLeft, +#panel #panelCenter { + spacing: 0; +} +#panel .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-width: 0; + -panel-corner-border-color: transparent; +} +#panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { + -panel-corner-border-color: transparent; +} +#panel .panel-button { + -natural-hpadding: 8px; + -minimum-hpadding: 4px; + transition-duration: 100ms; + border: 0; + border-radius: 0; + color: rgba(221, 199, 161, 0.7); + text-shadow: none; + font-weight: bold; +} +#panel .panel-button.clock-display .clock { + transition-duration: 100ms; + border: 0; + border-radius: 0; +} +#panel .panel-button .system-status-icon, +#panel .panel-button .app-menu-icon > StIcon, +#panel .panel-button .popup-menu-arrow { + icon-shadow: none; +} +#panel .panel-button:hover { + box-shadow: none; + color: #ddc7a1; + text-shadow: none; +} +#panel .panel-button:hover.clock-display { + box-shadow: none; +} +#panel .panel-button:hover.clock-display .clock { + box-shadow: none; +} +#panel .panel-button:hover .system-status-icon, +#panel .panel-button:hover .app-menu-icon > StIcon, +#panel .panel-button:hover .popup-menu-arrow { + icon-shadow: none; +} +#panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { + box-shadow: inset 0 -2px #ddc7a1; + background-color: rgba(30, 28, 27, 0.01); + color: #ddc7a1; +} +#panel .panel-button:active.clock-display, #panel .panel-button:overview.clock-display, #panel .panel-button:focus.clock-display, #panel .panel-button:checked.clock-display { + box-shadow: none; + background-color: transparent; +} +#panel .panel-button:active.clock-display .clock, #panel .panel-button:overview.clock-display .clock, #panel .panel-button:focus.clock-display .clock, #panel .panel-button:checked.clock-display .clock { + box-shadow: inset 0 -2px #ddc7a1; + background-color: rgba(30, 28, 27, 0.01); +} +#panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { + icon-shadow: none; +} +#panel .panel-button .system-status-icon { + icon-size: 16px; + padding: 0 4px; +} +#panel .panel-button .app-menu-icon { + -st-icon-style: symbolic; + margin-left: 4px; + margin-right: 4px; +} +#panel .panel-status-indicators-box, +#panel .panel-status-menu-box { + spacing: 2px; +} +#panel .power-status.panel-status-indicators-box { + spacing: 0; +} +#panel .screencast-indicator, +#panel .remote-access-indicator { + color: #d8a657; +} +#panel.unlock-screen, #panel.login-screen, #panel:overview { + background-color: transparent; +} +#panel.unlock-screen .panel-corner, #panel.login-screen .panel-corner, #panel:overview .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-color: transparent; +} +#panel.unlock-screen .panel-button, #panel.login-screen .panel-button, #panel:overview .panel-button { + color: rgba(255, 255, 255, 0.7); +} +#panel.unlock-screen .panel-button:hover, #panel.login-screen .panel-button:hover, #panel:overview .panel-button:hover, #panel.unlock-screen .panel-button:active, #panel.login-screen .panel-button:active, #panel:overview .panel-button:active, #panel.unlock-screen .panel-button:overview, #panel.login-screen .panel-button:overview, #panel:overview .panel-button:overview, #panel.unlock-screen .panel-button:focus, #panel.login-screen .panel-button:focus, #panel:overview .panel-button:focus, #panel.unlock-screen .panel-button:checked, #panel.login-screen .panel-button:checked, #panel:overview .panel-button:checked { + color: #fff; +} + +#appMenu { + spacing: 4px; +} +#appMenu .label-shadow { + color: transparent; +} + +.clock-display-box { + spacing: 0; +} +.clock-display-box .clock { + padding-left: 8px; + padding-right: 8px; +} + +/* Activities Ripple */ +.ripple-box { + width: 48px; + height: 48px; + border-radius: 0 0 48px 0; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.3); + background-image: none; + background-size: auto; +} +.ripple-box:rtl { + border-radius: 0 0 0 48px; + background-image: none; +} + +/* Window Picker */ +.window-picker { + spacing: 8px; + padding: 0 16px 32px; +} +.window-picker.external-monitor { + padding: 16px; +} + +.window-clone-border { + border: 4px solid rgba(255, 255, 255, 0.3); + border-radius: 6px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); +} + +.window-caption { + padding: 4px 8px; + border-radius: 6px; + background-color: black; + color: rgba(255, 255, 255, 0.87); + spacing: 0; + border: 0; + font-size: 1em; + font-weight: normal; +} + +.window-close { + transition-duration: 100ms; + height: 32px; + width: 32px; + padding: 0; + border: 0; + border-radius: 16px; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + background-color: #ea6962; + color: #000; + background-image: url("assets/window-close.svg"); + background-size: 24px; +} +.window-close:hover { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + border-color: transparent; + background-color: #ce5c56; + color: #000; +} +.window-close:active { + transition-duration: 200ms; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + border-color: transparent; + background-color: #c55852; + color: #000; +} +.window-close StIcon { + icon-size: 24px; + color: transparent; +} + +.search-entry { + width: 304px; + padding: 0 8px; + border-radius: 6px 6px 0 0; + color: rgba(255, 255, 255, 0.5); + selection-background-color: rgba(255, 255, 255, 0.3); + selected-color: #fff; + transition-duration: 100ms; + background-color: rgba(255, 255, 255, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.3); +} +.search-entry:hover { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.5); +} +.search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #fff; + padding: 0 8px; + border: 0; + color: #fff; +} +.search-entry StLabel.hint-text { + color: rgba(255, 255, 255, 0.7); +} +.search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 4px; + color: rgba(255, 255, 255, 0.7); +} +.search-entry:hover .search-entry-icon, +.search-entry:focus .search-entry-icon { + color: #fff; +} + +/* App Grid */ +.icon-grid { + row-spacing: 48px; + column-spacing: 48px; + max-row-spacing: 96px; + max-column-spacing: 96px; +} + +/* App Icons */ +.app-well-app .overview-icon, +.grid-search-result .overview-icon { + padding: 6px; + border: 0; + border-radius: 6px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.app-well-app:focus .overview-icon, +.grid-search-result:focus .overview-icon { + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.app-well-app:drop .overview-icon, .app-well-app:hover .overview-icon, .app-well-app:selected .overview-icon, +.grid-search-result:drop .overview-icon, +.grid-search-result:hover .overview-icon, +.grid-search-result:selected .overview-icon { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.app-well-app:active .overview-icon, .app-well-app:checked .overview-icon, +.grid-search-result:active .overview-icon, +.grid-search-result:checked .overview-icon { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: inherit; + transition-duration: 200ms; +} +.app-well-app .overview-icon.overview-icon-with-label, +.grid-search-result .overview-icon.overview-icon-with-label { + padding: 8px; + spacing: 0; +} +.app-well-app .overview-icon.overview-icon-with-label > StBoxLayout, +.grid-search-result .overview-icon.overview-icon-with-label > StBoxLayout { + spacing: 4px; +} + +/* App Folders */ +.app-well-app.app-folder { + border-radius: 6px; + background-color: transparent; +} + +.app-folder-dialog { + border: 0; + border-radius: 6px; + background-color: #3C3836; + color: #d4be98; + padding: 12px; +} +.app-folder-dialog .folder-name-container { + padding: 24px 36px 0; + spacing: 12px; +} +.app-folder-dialog .folder-name-container .folder-name-label, +.app-folder-dialog .folder-name-container .folder-name-entry { + font-size: 15pt; + font-weight: 500; +} +.app-folder-dialog .folder-name-container .folder-name-entry { + width: 300px; +} +.app-folder-dialog .folder-name-container .folder-name-label { + padding: 0 8px; + color: inherit; +} +.app-folder-dialog .folder-name-container .edit-folder-button { + width: 32px; + height: 32px; + min-width: 0; + min-height: 0; + padding: 0; + border-radius: 16px; +} +.app-folder-dialog .folder-name-container .edit-folder-button > StIcon { + icon-size: 16px; +} +.app-folder-dialog .icon-grid { + row-spacing: 16px; + column-spacing: 32px; +} +.app-folder-dialog .page-indicators { + margin-bottom: 16px; +} +.app-folder-dialog .page-indicators .page-indicator { + padding: 16px 12px; +} +.app-folder-dialog .app-well-app:focus .overview-icon { + background-color: rgba(212, 190, 152, 0.08); +} +.app-folder-dialog .app-well-app:drop .overview-icon, .app-folder-dialog .app-well-app:hover .overview-icon, .app-folder-dialog .app-well-app:selected .overview-icon { + background-color: rgba(212, 190, 152, 0.08); +} +.app-folder-dialog .app-well-app:active .overview-icon, .app-folder-dialog .app-well-app:checked .overview-icon { + background-color: rgba(212, 190, 152, 0.12); +} + +.app-folder-dialog-container { + padding: 12px; + width: 620px; + height: 620px; +} + +.app-folder-icon { + padding: 8px; + spacing-rows: 4px; + spacing-columns: 4px; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.08); +} +.app-folder-icon > StBin > StIcon { + padding: 2px; +} + +.app-well-app-running-dot { + height: 2px; + width: 32px; + margin-bottom: 0; + border-radius: 0; + background-color: #fff; +} + +.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; +} + +.app-menu, +.app-well-menu { + max-width: 27.25em; +} + +.page-indicator { + padding: 16px 20px; +} +.page-indicator .page-indicator-icon { + width: 12px; + height: 12px; + border-radius: 12px; + background-color: #fff; +} + +.all-apps { + padding: 0 88px 10px; +} + +.system-action-icon { + icon-size: 48px; + border-radius: 9999px; + box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); + background-color: #212121; + color: rgba(255, 255, 255, 0.87); +} + +/* Search */ +#searchResultsContent { + max-width: 1024px; +} + +#searchResultsContent { + padding-left: 16px; + padding-right: 16px; + spacing: 16px; +} + +.search-section { + spacing: 16px; +} +.search-section .search-section-separator { + height: 1px; + background-color: rgba(255, 255, 255, 0.2); +} +.search-section:last-child .search-section-separator { + height: 0; + background-color: transparent; +} + +.search-section-content { + spacing: 32px; + padding: 0; + border: 0; + border-radius: 0; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; +} + +.search-statustext { + font-size: 48px; + font-weight: 400; + color: rgba(255, 255, 255, 0.5); +} + +.grid-search-results { + spacing: 32px; +} + +.search-provider-icon { + padding: 6px; + border: 0; + border-radius: 6px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.search-provider-icon:focus { + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.search-provider-icon:hover, .search-provider-icon:selected { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.search-provider-icon:active, .search-provider-icon:checked { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: inherit; + transition-duration: 200ms; +} +.search-provider-icon .list-search-provider-content { + spacing: 20px; +} +.search-provider-icon .list-search-provider-content .list-search-provider-details { + width: 150px; + margin-top: 0; + color: rgba(255, 255, 255, 0.7); +} + +.list-search-results { + spacing: 4px; +} + +.list-search-result { + padding: 6px; + border: 0; + border-radius: 6px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.list-search-result:focus { + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.list-search-result:hover, .list-search-result:selected { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.list-search-result:active, .list-search-result:checked { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: inherit; + transition-duration: 200ms; +} +.list-search-result .list-search-result-content { + spacing: 30px; +} +.list-search-result .list-search-result-title { + spacing: 12px; + color: inherit; + font-size: 11.25pt; + font-weight: 400; +} +.list-search-result .list-search-result-description { + color: rgba(255, 255, 255, 0.7); +} + +/* Dash */ +#dash { + font-size: 1em; + transition-duration: 250ms; + border: 0; + background-color: rgba(255, 255, 255, 0.08); + color: #fff; + padding: 3px 0; + border-left-width: 0; + border-radius: 0 6px 6px 0; +} +#dash:rtl { + border-right-width: 0; + border-radius: 6px 0 0 6px; +} +#dash .placeholder { + height: 24px; + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; +} +#dash .empty-dash-drop-target { + width: 24px; + height: 24px; +} + +.dash-item-container > StWidget { + padding: 3px 6px; +} + +.dash-label { + padding: 7px 8px; + border: 0; + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #3C3836; + color: #d4be98; + text-align: center; + -x-offset: 8px; +} + +.show-apps { + color: rgba(255, 255, 255, 0.7); +} +.show-apps .overview-icon { + padding: 6px; + border: 0; + border-radius: 6px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.show-apps:focus .overview-icon { + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.show-apps:drop .overview-icon, .show-apps:hover .overview-icon, .show-apps:selected .overview-icon { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.show-apps:active .overview-icon, .show-apps:checked .overview-icon { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: inherit; + transition-duration: 200ms; +} +.show-apps:checked { + color: #fff; +} + +/* Workspace pager */ +.workspace-thumbnails { + transition-duration: 250ms; + border: 0; + background-color: rgba(255, 255, 255, 0.08); + color: #fff; + visible-width: 32px; + padding: 12px; + spacing: 12px; + border-right-width: 0; + border-radius: 6px 0 0 6px; +} +.workspace-thumbnails:rtl { + border-left-width: 0; + border-radius: 0 6px 6px 0; +} +.workspace-thumbnails .placeholder { + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; + height: 24px; +} + +.workspace-thumbnail-indicator { + border: 0 solid #fff; + border-radius: 0; + padding: 6px 10px; + border-left-width: 2px; +} + +.select-area-rubberband { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.3); +} + +.user-icon { + border: 0; + border-radius: 9999px; + background-size: contain; + color: inherit; +} +.user-icon:hover { + border-color: transparent; + color: inherit; +} + +.user-icon StIcon { + background-color: rgba(212, 190, 152, 0.08); + border-radius: 9999px; +} + +.user-widget.vertical .user-icon { + icon-size: 128px; +} +.user-widget.vertical .user-icon StIcon { + width: 64px; + height: 64px; + padding: 32px; +} + +.user-widget.horizontal .user-icon { + icon-size: 64px; +} +.user-widget.horizontal .user-icon StIcon { + width: 32px; + height: 32px; + padding: 16px; +} + +.lightbox { + background-color: black; +} + +.flashspot { + background-color: white; +} + +.hidden { + color: transparent; +} + +.caps-lock-warning-label { + text-align: center; + padding-bottom: 8px; + font-size: 1em; + color: #d8a657; +} + +.ripple-pointer-location { + width: 50px; + height: 50px; + border-radius: 25px; + box-shadow: none; + background-color: rgba(124, 111, 100, 0.6); +} + +.pie-timer { + width: 60px; + height: 60px; + -pie-border-width: 0; + -pie-border-color: transparent; + -pie-background-color: rgba(124, 111, 100, 0.6); +} + +.magnifier-zoom-region { + border: 2px solid #7c6f64; +} +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +/* Tiled window previews */ +.tile-preview { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.3); +} + +.tile-preview-left.on-primary { + border-radius: 0; +} + +.tile-preview-right.on-primary { + border-radius: 0; +} + +.tile-preview-left.tile-preview-right.on-primary { + border-radius: 0; +} + +/* On-screen Keyboard */ +#keyboard { + background-color: rgba(0, 0, 0, 0.3); + box-shadow: none; +} +#keyboard .page-indicator { + padding: 4px; +} +#keyboard .page-indicator .page-indicator-icon { + width: 8px; + height: 8px; +} + +.key-container { + padding: 4px; + spacing: 4px; +} + +.keyboard-key { + min-height: 1.2em; + min-width: 1.2em; + font-size: 2em; + font-weight: 500; + border: 0; + border-width: 0; + border-style: none; + border-radius: 6px; +} +.keyboard-key, .keyboard-key.default-key { + color: #d4be98; + background-color: #3C3836; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-key:focus, .keyboard-key.default-key:focus { + color: #d4be98; + background-color: #48433e; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.keyboard-key:hover, .keyboard-key:checked, .keyboard-key.default-key:hover, .keyboard-key.default-key:checked { + color: #d4be98; + background-color: #48433e; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.keyboard-key:active, .keyboard-key.default-key:active { + color: #d4be98; + background-color: #4e4842; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.keyboard-key:grayed { + border-color: transparent; + background-color: rgba(0, 0, 0, 0.3); + color: #fff; +} +.keyboard-key.enter-key { + color: rgba(255, 255, 255, 0.87); + background-color: #7c6f64; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-key.enter-key:hover, .keyboard-key.enter-key:checked { + color: rgba(255, 255, 255, 0.87); + background-color: #867b70; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.keyboard-key.enter-key:active { + color: rgba(255, 255, 255, 0.87); + background-color: #8c8077; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.keyboard-key.shift-key-uppercase { + color: #7c6f64; +} +.keyboard-key StIcon { + icon-size: 32px; +} + +.keyboard-subkeys { + -boxpointer-gap: 5px; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-border-radius: 0; + -arrow-background-color: transparent; + padding: 5px; + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #3C3836; + color: #d4be98; +} +.keyboard-subkeys .keyboard-key { + border-radius: 6px; + color: #7c6f64; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-subkeys .keyboard-key:focus { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.keyboard-subkeys .keyboard-key:hover, .keyboard-subkeys .keyboard-key:checked { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.keyboard-subkeys .keyboard-key:active { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} + +.emoji-page .keyboard-key { + border: 0; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.emoji-page .keyboard-key:focus { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.emoji-page .keyboard-key:hover { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.emoji-page .keyboard-key:active { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} + +.emoji-panel .keyboard-key:latched { + border-color: transparent; + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} + +.word-suggestions { + font-size: 11.25pt; + font-weight: 400; + spacing: 12px; + min-height: 20pt; +} + +/* Looking Glass */ +#LookingGlassDialog { + spacing: 0; + padding: 0; + border: 0; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} +#LookingGlassDialog > #Toolbar { + padding: 0 8px; + border: 0; + border-radius: 0; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(60, 56, 54, 0.01); +} +#LookingGlassDialog .labels { + spacing: 0; +} +#LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + transition-duration: 100ms; + min-height: 32px; + padding-left: 32px; + padding-right: 32px; + border: 0; + color: rgba(212, 190, 152, 0.7); + font-weight: bold; +} +#LookingGlassDialog .notebook-tab:hover { + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.7); + text-shadow: none; +} +#LookingGlassDialog .notebook-tab:active { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); +} +#LookingGlassDialog .notebook-tab:selected { + border: 0; + box-shadow: inset 0 -2px #7c6f64; + background-color: rgba(60, 56, 54, 0.01); + color: #d4be98; + text-shadow: none; +} +#LookingGlassDialog StBoxLayout#EvalBox { + padding: 8px; + spacing: 4px; +} +#LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; +} + +.lg-dialog .shell-link, .lg-dialog .shell-link:hover, .lg-dialog .shell-link:active { + color: #7c6f64; +} +.lg-dialog .actor-link, .lg-dialog .actor-link:hover, .lg-dialog .actor-link:active { + color: inherit; +} + +.lg-completions-text { + font-size: 1em; + font-style: italic; +} + +.lg-obj-inspector-title { + spacing: 4px; +} + +.lg-obj-inspector-button, .lg-obj-inspector-button:hover { + border: 0; +} + +#Windows { + padding: 8px; +} + +#lookingGlassExtensions { + padding: 8px; +} + +.lg-extensions-list { + padding: 0; + spacing: 6px; +} + +.lg-extension { + padding: 4px; + border: 0; + border-radius: 0; + background-color: transparent; +} + +.lg-extension-name { + font-size: 15pt; + font-weight: 500; +} + +.lg-extension-meta { + spacing: 6px; +} + +#LookingGlassPropertyInspector { + padding: 6px; + border: 0; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} + +/* Login Dialog */ +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; +} + +.login-dialog, +.unlock-dialog { + border: 0; + background-color: transparent; +} +.login-dialog StEntry, +.unlock-dialog StEntry { + transition-duration: 100ms; + background-color: rgba(255, 255, 255, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.3); + color: #ddc7a1; + selection-background-color: rgba(221, 199, 161, 0.3); + selected-color: #ddc7a1; +} +.login-dialog StEntry:focus, +.unlock-dialog StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #ddc7a1; +} +.login-dialog StEntry:insensitive, +.unlock-dialog StEntry:insensitive { + color: rgba(212, 190, 152, 0.5); + border-color: transparent; + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.2); + color: rgba(221, 199, 161, 0.5); +} +.login-dialog StEntry StLabel.hint-text, +.unlock-dialog StEntry StLabel.hint-text { + color: rgba(221, 199, 161, 0.7); +} +.login-dialog StEntry StIcon.peek-password, +.unlock-dialog StEntry StIcon.peek-password { + color: rgba(221, 199, 161, 0.7); +} +.login-dialog StEntry StIcon.peek-password:hover, +.unlock-dialog StEntry StIcon.peek-password:hover { + color: #ddc7a1; +} +.login-dialog .modal-dialog-button-box, +.unlock-dialog .modal-dialog-button-box { + spacing: 3px; +} +.login-dialog .modal-dialog-button, +.unlock-dialog .modal-dialog-button { + color: #7c6f64; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.login-dialog .modal-dialog-button:focus, +.unlock-dialog .modal-dialog-button:focus { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.login-dialog .modal-dialog-button:hover, +.unlock-dialog .modal-dialog-button:hover { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:active, +.unlock-dialog .modal-dialog-button:active { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.login-dialog .modal-dialog-button:insensitive, +.unlock-dialog .modal-dialog-button:insensitive { + color: rgba(212, 190, 152, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:default, +.unlock-dialog .modal-dialog-button:default { + min-width: 32px; + padding: 0 16px; + color: rgba(255, 255, 255, 0.87); + background-color: #7c6f64; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.login-dialog .modal-dialog-button:default:focus, +.unlock-dialog .modal-dialog-button:default:focus { + color: rgba(255, 255, 255, 0.87); + background-color: #867b70; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.login-dialog .modal-dialog-button:default:hover, +.unlock-dialog .modal-dialog-button:default:hover { + color: rgba(255, 255, 255, 0.87); + background-color: #867b70; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:default:active, +.unlock-dialog .modal-dialog-button:default:active { + color: rgba(255, 255, 255, 0.87); + background-color: #8c8077; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.login-dialog .modal-dialog-button:default:insensitive, +.unlock-dialog .modal-dialog-button:default:insensitive { + color: rgba(221, 199, 161, 0.5); + background-color: rgba(221, 199, 161, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog-logo-bin { + padding: 24px 0; +} + +.login-dialog-banner { + color: rgba(221, 199, 161, 0.7); +} + +.login-dialog-button-box { + spacing: 5px; + width: 23em; +} + +.login-dialog-message { + text-align: center; +} + +.caps-lock-warning-label, +.login-dialog-message-warning { + color: #ea6962; +} + +.login-dialog-message-hint { + color: rgba(221, 199, 161, 0.7); + padding-top: 0; + padding-bottom: 20px; +} + +.login-dialog-user-selection-box { + padding: 100px 0; +} + +.login-dialog-not-listed-button { + transition-duration: 100ms; + min-height: 32px; + padding: 0 8px; + margin-top: 1em; + border-radius: 6px; + color: rgba(221, 199, 161, 0.7); + font-size: 10.5pt; + font-weight: 500; +} +.login-dialog-not-listed-button:focus { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-not-listed-button:hover { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-not-listed-button:active { + transition-duration: 200ms; + background-color: rgba(221, 199, 161, 0.12); +} + +.login-dialog-user-list-view { + -st-vfade-offset: 1em; +} + +.login-dialog-user-list { + spacing: 12px; + width: 23em; +} +.login-dialog-user-list:expanded .login-dialog-user-list-item:selected { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid #ddc7a1; +} + +.login-dialog-user-list-item { + transition-duration: 100ms; + padding: 6px; + border-radius: 6px; + color: inherit; +} +.login-dialog-user-list-item:focus { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-user-list-item:hover { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-user-list-item:active { + transition-duration: 200ms; + background-color: rgba(221, 199, 161, 0.12); +} +.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 .login-dialog-timed-login-indicator { + height: 2px; + margin-top: 6px; + background-color: #ddc7a1; +} + +.login-dialog .user-icon StIcon { + background-color: rgba(221, 199, 161, 0.08); +} + +.user-widget-label { + color: inherit; +} + +.user-widget.horizontal .user-widget-label { + padding-left: 16px; + font-size: 15pt; + font-weight: 500; + text-align: left; +} +.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 { + padding-top: 16px; + font-size: 18pt; + font-weight: 400; + text-align: center; +} + +.login-dialog-prompt-layout { + width: 23em; + padding-top: 24px; + padding-bottom: 12px; + spacing: 8px; +} + +.login-dialog-prompt-label { + color: rgba(221, 199, 161, 0.7); + font-size: 1em; + padding-top: 1em; +} + +.cancel-button, +.switch-user-button, +.login-dialog-session-list-button { + transition-duration: 100ms; + width: 32px; + height: 32px; + min-width: 0; + min-height: 0; + padding: 0; + border-radius: 16px; + color: rgba(221, 199, 161, 0.7); +} +.cancel-button:focus, +.switch-user-button:focus, +.login-dialog-session-list-button:focus { + background-color: rgba(221, 199, 161, 0.08); +} +.cancel-button:hover, +.switch-user-button:hover, +.login-dialog-session-list-button:hover { + background-color: rgba(221, 199, 161, 0.08); +} +.cancel-button:active, +.switch-user-button:active, +.login-dialog-session-list-button:active { + transition-duration: 200ms; + background-color: rgba(221, 199, 161, 0.12); +} +.cancel-button StIcon, +.switch-user-button StIcon, +.login-dialog-session-list-button StIcon { + icon-size: 16px; +} + +/* Screen Shield */ +.unlock-dialog-clock { + padding-bottom: 2.5em; + spacing: 24px; + color: #fff; + font-weight: normal; + text-align: center; +} + +.unlock-dialog-clock-time { + padding-top: 42px; + font-size: 96px; + font-weight: 300; + font-feature-settings: "tnum"; +} + +.unlock-dialog-clock-date { + font-size: 34px; + font-weight: 400; +} + +.unlock-dialog-clock-hint { + padding-top: 48px; + color: rgba(255, 255, 255, 0.7); + font-weight: normal; +} + +.unlock-dialog-notifications-container { + width: 23em; + margin: 12px 0; + spacing: 6px; + 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: 8px; + border: 0; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); + color: #fff; +} +.unlock-dialog-notifications-container .notification.critical, +.unlock-dialog-notifications-container .unlock-dialog-notification-source.critical { + background-color: rgba(255, 255, 255, 0.04); + color: #ea6962; +} + +.unlock-dialog-notification-label { + padding: 0 0 0 12px; +} + +.unlock-dialog-notification-count-text { + margin-right: 12px; + padding: 2px 8px; + border-radius: 99px; + background-color: rgba(255, 255, 255, 0.08); + color: #fff; +} + +#lockDialogGroup { + background-color: #1e1c1b; + color: #ddc7a1; +} + +#unlockDialogNotifications StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.2); +} +#unlockDialogNotifications StScrollBar StButton#vhandle, +#unlockDialogNotifications StScrollBar StButton#hhandle { + background-color: rgba(255, 255, 255, 0.5); +} +#unlockDialogNotifications StScrollBar StButton#vhandle:hover, +#unlockDialogNotifications StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.6); +} +#unlockDialogNotifications StScrollBar StButton#vhandle:active, +#unlockDialogNotifications StScrollBar StButton#hhandle:active { + background-color: rgba(255, 255, 255, 0.7); +} + +.screen-shield-background { + background: black; + box-shadow: 0 8px 24px rgba(0, 0, 0, 0.68); +} + +/* Dash to Dock */ +#dashtodockContainer #dash { + background-color: black; +} + +#dashtodockContainer:overview #dash { + background-color: rgba(255, 255, 255, 0.08); +} + +#dashtodockContainer.extended:overview #dash { + background-color: transparent; +} + +#dashtodockContainer.left #dash, +#dashtodockContainer.right #dash { + padding: 3px 0; +} + +#dashtodockContainer.top #dash, +#dashtodockContainer.bottom #dash { + padding: 0 3px; +} + +#dashtodockContainer.extended #dash { + padding: 0; + border-radius: 0; +} + +#dashtodockContainer.left .dash-item-container > StWidget, +#dashtodockContainer.right .dash-item-container > StWidget, +#dashtodockContainer.extended.left .dash-item-container > StWidget, +#dashtodockContainer.extended.right .dash-item-container > StWidget { + padding: 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:first-child > StWidget { + padding: 6px 6px 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:last-child > StWidget { + padding: 3px 6px 6px 6px; +} + +#dashtodockContainer.top .dash-item-container > StWidget, +#dashtodockContainer.bottom .dash-item-container > StWidget, +#dashtodockContainer.extended.top .dash-item-container > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container > StWidget { + padding: 6px 3px; +} + +#dashtodockContainer.extended.top .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:first-child > StWidget { + padding: 6px 3px 6px 6px; +} + +#dashtodockContainer.extended.top .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:last-child > StWidget { + padding: 6px 6px 6px 3px; +} + +#dashtodockContainer .focused .overview-icon { + background-color: rgba(255, 255, 255, 0.12); +} + +#dashtodockContainer .default.focused .overview-icon { + background-color: transparent; +} + +#dashtodockContainer .app-well-app-running-dot { + background-color: transparent; +} + +#dashtodockContainer .default { + background-size: cover; +} + +#dashtodockContainer.left .default.running1 { + background-image: url("assets/dash/left-running1.svg"); +} + +#dashtodockContainer.left .default.running1.focused { + background-image: url("assets/dash/left-running1-focused.svg"); +} + +#dashtodockContainer.left .default.running2 { + background-image: url("assets/dash/left-running2.svg"); +} + +#dashtodockContainer.left .default.running2.focused { + background-image: url("assets/dash/left-running2-focused.svg"); +} + +#dashtodockContainer.left .default.running3 { + background-image: url("assets/dash/left-running3.svg"); +} + +#dashtodockContainer.left .default.running3.focused { + background-image: url("assets/dash/left-running3-focused.svg"); +} + +#dashtodockContainer.left .default.running4 { + background-image: url("assets/dash/left-running4.svg"); +} + +#dashtodockContainer.left .default.running4.focused { + background-image: url("assets/dash/left-running4-focused.svg"); +} + +#dashtodockContainer.right .default.running1 { + background-image: url("assets/dash/right-running1.svg"); +} + +#dashtodockContainer.right .default.running1.focused { + background-image: url("assets/dash/right-running1-focused.svg"); +} + +#dashtodockContainer.right .default.running2 { + background-image: url("assets/dash/right-running2.svg"); +} + +#dashtodockContainer.right .default.running2.focused { + background-image: url("assets/dash/right-running2-focused.svg"); +} + +#dashtodockContainer.right .default.running3 { + background-image: url("assets/dash/right-running3.svg"); +} + +#dashtodockContainer.right .default.running3.focused { + background-image: url("assets/dash/right-running3-focused.svg"); +} + +#dashtodockContainer.right .default.running4 { + background-image: url("assets/dash/right-running4.svg"); +} + +#dashtodockContainer.right .default.running4.focused { + background-image: url("assets/dash/right-running4-focused.svg"); +} + +#dashtodockContainer.top .default.running1 { + background-image: url("assets/dash/top-running1.svg"); +} + +#dashtodockContainer.top .default.running1.focused { + background-image: url("assets/dash/top-running1-focused.svg"); +} + +#dashtodockContainer.top .default.running2 { + background-image: url("assets/dash/top-running2.svg"); +} + +#dashtodockContainer.top .default.running2.focused { + background-image: url("assets/dash/top-running2-focused.svg"); +} + +#dashtodockContainer.top .default.running3 { + background-image: url("assets/dash/top-running3.svg"); +} + +#dashtodockContainer.top .default.running3.focused { + background-image: url("assets/dash/top-running3-focused.svg"); +} + +#dashtodockContainer.top .default.running4 { + background-image: url("assets/dash/top-running4.svg"); +} + +#dashtodockContainer.top .default.running4.focused { + background-image: url("assets/dash/top-running4-focused.svg"); +} + +#dashtodockContainer.bottom .default.running1 { + background-image: url("assets/dash/bottom-running1.svg"); +} + +#dashtodockContainer.bottom .default.running1.focused { + background-image: url("assets/dash/bottom-running1-focused.svg"); +} + +#dashtodockContainer.bottom .default.running2 { + background-image: url("assets/dash/bottom-running2.svg"); +} + +#dashtodockContainer.bottom .default.running2.focused { + background-image: url("assets/dash/bottom-running2-focused.svg"); +} + +#dashtodockContainer.bottom .default.running3 { + background-image: url("assets/dash/bottom-running3.svg"); +} + +#dashtodockContainer.bottom .default.running3.focused { + background-image: url("assets/dash/bottom-running3-focused.svg"); +} + +#dashtodockContainer.bottom .default.running4 { + background-image: url("assets/dash/bottom-running4.svg"); +} + +#dashtodockContainer.bottom .default.running4.focused { + background-image: url("assets/dash/bottom-running4-focused.svg"); +} + +/* Simple Dock */ +#dash:desktop { + background-color: black; +} + +/* GPaste */ +.popup-menu .search-entry { + color: #d4be98; + selection-background-color: rgba(124, 111, 100, 0.6); + selected-color: #d4be98; + transition-duration: 100ms; + background-color: rgba(212, 190, 152, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); +} +.popup-menu .search-entry:hover { + box-shadow: inset 0 -1px #d4be98; +} +.popup-menu .search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #7c6f64; + color: #d4be98; +} +.popup-menu .search-entry .search-entry-icon { + color: rgba(212, 190, 152, 0.7); +} +.popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon { + color: #d4be98; +} diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/color-pick.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/color-pick.svg new file mode 100644 index 000000000..224677625 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/color-pick.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg new file mode 100644 index 000000000..526783410 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg @@ -0,0 +1,28 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg new file mode 100644 index 000000000..be37e6fc4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg @@ -0,0 +1,20 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg new file mode 100644 index 000000000..f44799107 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg new file mode 100644 index 000000000..b72e17886 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg new file mode 100644 index 000000000..2e4e568a1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg new file mode 100644 index 000000000..bfdddeded --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg new file mode 100644 index 000000000..beee2880d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg new file mode 100644 index 000000000..20c4224ae --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg new file mode 100644 index 000000000..1f9207e94 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg new file mode 100644 index 000000000..fc6bd93cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg new file mode 100644 index 000000000..91fbb7fd7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg new file mode 100644 index 000000000..e8e11172e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg new file mode 100644 index 000000000..80b78e4d7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg new file mode 100644 index 000000000..691eed116 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg new file mode 100644 index 000000000..5edac8fb4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/noise-texture.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/noise-texture.png new file mode 100644 index 000000000..ca1563d14 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/noise-texture.png differ diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/pad-osd.css b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/pad-osd.css similarity index 59% rename from local/share/themes/Gruvbox-Dark/gnome-shell/pad-osd.css rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/pad-osd.css index 8db7cf0cf..31c237722 100644 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/pad-osd.css +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/pad-osd.css @@ -1,31 +1,30 @@ .Leader { - stroke-width: 0.5 !important; + stroke-width: .5 !important; stroke: #535353; fill: none !important; } .Button { - stroke-width: 0.25; + stroke-width: .25; stroke: #ededed; fill: #ededed; } .Ring { - stroke-width: 0.5 !important; + stroke-width: .5 !important; stroke: #535353 !important; fill: none !important; } .Label { stroke: none !important; - stroke-width: 0.1 !important; - font-size: 0.1 !important; + stroke-width: .1 !important; + font-size: .1 !important; fill: transparent !important; } -.TouchStrip, -.TouchRing { - stroke-width: 0.1 !important; +.TouchStrip, .TouchRing { + stroke-width: .1 !important; stroke: #ededed !important; fill: #535353 !important; } diff --git a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/process-working.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/process-working.svg similarity index 96% rename from local/share/themes/Gruvbox-Dark/gnome-shell/assets/process-working.svg rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/process-working.svg index 0f311b0b7..323c6f2a5 100644 --- a/local/share/themes/Gruvbox-Dark/gnome-shell/assets/process-working.svg +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gnome-shell/process-working.svg @@ -1,8 +1,8 @@ - + - + diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/apps.rc b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/apps.rc similarity index 92% rename from local/share/themes/Gruvbox-Dark/gtk-2.0/apps.rc rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/apps.rc index 530e72fdb..ef31766a4 100644 --- a/local/share/themes/Gruvbox-Dark/gtk-2.0/apps.rc +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/apps.rc @@ -14,7 +14,7 @@ style "gimp_spin_scale" { function = BOX state = NORMAL detail = "spinbutton_up" - overlay_file = "assets/pan-up-alt.png" + overlay_file = "assets/pan-up.png" overlay_stretch = FALSE } @@ -22,7 +22,7 @@ style "gimp_spin_scale" { function = BOX state = PRELIGHT detail = "spinbutton_up" - overlay_file = "assets/pan-up.png" + overlay_file = "assets/pan-up-alt.png" overlay_stretch = FALSE } @@ -30,7 +30,7 @@ style "gimp_spin_scale" { function = BOX state = ACTIVE detail = "spinbutton_up" - overlay_file = "assets/pan-up.png" + overlay_file = "assets/pan-up-alt.png" overlay_stretch = FALSE } @@ -38,7 +38,7 @@ style "gimp_spin_scale" { function = BOX state = INSENSITIVE detail = "spinbutton_up" - overlay_file = "assets/pan-up-alt-disabled.png" + overlay_file = "assets/pan-up-disabled.png" overlay_stretch = FALSE } @@ -46,7 +46,7 @@ style "gimp_spin_scale" { function = BOX state = NORMAL detail = "spinbutton_down" - overlay_file = "assets/pan-down-alt.png" + overlay_file = "assets/pan-down.png" overlay_stretch = FALSE } @@ -54,7 +54,7 @@ style "gimp_spin_scale" { function = BOX state = PRELIGHT detail = "spinbutton_down" - overlay_file = "assets/pan-down.png" + overlay_file = "assets/pan-down-alt.png" overlay_stretch = FALSE } @@ -62,7 +62,7 @@ style "gimp_spin_scale" { function = BOX state = ACTIVE detail = "spinbutton_down" - overlay_file = "assets/pan-down.png" + overlay_file = "assets/pan-down-alt.png" overlay_stretch = FALSE } @@ -70,7 +70,7 @@ style "gimp_spin_scale" { function = BOX state = INSENSITIVE detail = "spinbutton_down" - overlay_file = "assets/pan-down-alt-disabled.png" + overlay_file = "assets/pan-down-disabled.png" overlay_stretch = FALSE } } diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/border.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/border.png new file mode 100644 index 000000000..cb93680db Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/border.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-active.png new file mode 100644 index 000000000..8447b854e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-disabled.png new file mode 100644 index 000000000..7124117e8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-hover.png new file mode 100644 index 000000000..ab00fb01e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button.png new file mode 100644 index 000000000..07728ac1e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/button.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-active.png new file mode 100644 index 000000000..cdb269ccd Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-disabled.png new file mode 100644 index 000000000..d679465cb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-hover.png new file mode 100644 index 000000000..f9447965e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 000000000..1e2642c21 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-active.png new file mode 100644 index 000000000..54c7c0fec Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-disabled.png new file mode 100644 index 000000000..f7b6491b5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-hover.png new file mode 100644 index 000000000..683d44246 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed.png new file mode 100644 index 000000000..6aa1bc354 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-mixed.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-active.png new file mode 100644 index 000000000..636e797ae Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-disabled.png new file mode 100644 index 000000000..5a0d756a6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-hover.png new file mode 100644 index 000000000..396e2a639 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 000000000..a0894d2b3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-active.png new file mode 100644 index 000000000..e16681e48 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-disabled.png new file mode 100644 index 000000000..079329f5d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-hover.png new file mode 100644 index 000000000..b4ebcbc10 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry.png new file mode 100644 index 000000000..e9bfa1fc3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-left-entry.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-active.png new file mode 100644 index 000000000..10521627d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-disabled.png new file mode 100644 index 000000000..ea7d0a212 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-hover.png new file mode 100644 index 000000000..0c8196fce Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry.png new file mode 100644 index 000000000..f94c4b405 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/combo-right-entry.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-active.png new file mode 100644 index 000000000..55d621a69 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-background-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-background-disabled.png new file mode 100644 index 000000000..f524dfb73 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-background-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-background.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-background.png new file mode 100644 index 000000000..f524dfb73 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-background.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-disabled.png new file mode 100644 index 000000000..19c9d0c48 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-hover.png new file mode 100644 index 000000000..188f4c2e0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry.png new file mode 100644 index 000000000..b8e9ee2b4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/entry.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-active.png new file mode 100644 index 000000000..0dd9da882 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-disabled.png new file mode 100644 index 000000000..2b633d8b4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-hover.png new file mode 100644 index 000000000..7124117e8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button.png new file mode 100644 index 000000000..2b633d8b4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/flat-button.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/focus.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/focus.png new file mode 100644 index 000000000..3fa1819d8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/focus.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame-inline.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame-inline.png new file mode 100644 index 000000000..6c19bf883 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame-inline.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame-notebook.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame-notebook.png new file mode 100644 index 000000000..9431ea0bd Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame-notebook.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame.png new file mode 100644 index 000000000..a2af17787 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/frame.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz-active.png new file mode 100644 index 000000000..74d0c3076 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz-hover.png new file mode 100644 index 000000000..1d8e91902 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz.png new file mode 100644 index 000000000..5e4687b6f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-horz.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert-active.png new file mode 100644 index 000000000..361fa6a8b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert-hover.png new file mode 100644 index 000000000..ae5e32df4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert.png new file mode 100644 index 000000000..38f91f1ad Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/handle-vert.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-checked-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-checked-disabled.png new file mode 100644 index 000000000..4f4374fc2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-checked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-checked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 000000000..efc38bfc4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-mixed-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-mixed-disabled.png new file mode 100644 index 000000000..7cdc5c1bb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-mixed-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-mixed.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-mixed.png new file mode 100644 index 000000000..5714faa13 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-mixed.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png new file mode 100644 index 000000000..47e3c3995 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-unchecked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 000000000..6a4f0d17c Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-checked-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-checked-disabled.png new file mode 100644 index 000000000..7e6f4a7c7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-checked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-checked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 000000000..5995616ec Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-mixed-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-mixed-disabled.png new file mode 100644 index 000000000..5b7385b11 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-mixed-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-mixed.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-mixed.png new file mode 100644 index 000000000..86c179684 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-mixed.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-unchecked-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-unchecked-disabled.png new file mode 100644 index 000000000..bb328acb4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-unchecked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-unchecked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 000000000..2da324a97 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down-alt.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down-alt.png new file mode 100644 index 000000000..ff4a09065 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down-alt.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down-disabled.png new file mode 100644 index 000000000..711485044 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down.png new file mode 100644 index 000000000..0f325d834 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-down.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-alt.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-alt.png new file mode 100644 index 000000000..b03784165 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-alt.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-disabled.png new file mode 100644 index 000000000..d6c297398 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-semi.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-semi.png new file mode 100644 index 000000000..81b894e6c Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left-semi.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left.png new file mode 100644 index 000000000..e54571f84 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-left.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-alt.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-alt.png new file mode 100644 index 000000000..fb497ce54 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-alt.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-disabled.png new file mode 100644 index 000000000..2acfac7ca Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-semi.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-semi.png new file mode 100644 index 000000000..b0b0986ff Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right-semi.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right.png new file mode 100644 index 000000000..557740550 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-right.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up-alt.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up-alt.png new file mode 100644 index 000000000..3c268eb87 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up-alt.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up-disabled.png new file mode 100644 index 000000000..591ec739c Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up.png new file mode 100644 index 000000000..f0b386721 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/pan-up.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/progressbar-progress.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/progressbar-progress.png new file mode 100644 index 000000000..f6661f6d0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/progressbar-progress.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/progressbar-trough.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/progressbar-trough.png new file mode 100644 index 000000000..fe479ceac Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/progressbar-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-active.png new file mode 100644 index 000000000..7bb48b8eb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-disabled.png new file mode 100644 index 000000000..730b81a9d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-hover.png new file mode 100644 index 000000000..52d439553 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked.png new file mode 100644 index 000000000..358eb0f79 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-active.png new file mode 100644 index 000000000..b507d7bc8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-disabled.png new file mode 100644 index 000000000..6d7006d22 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-hover.png new file mode 100644 index 000000000..07160fa7e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed.png new file mode 100644 index 000000000..55f10eb7a Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-mixed.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-active.png new file mode 100644 index 000000000..a214b0380 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-disabled.png new file mode 100644 index 000000000..020d2ddd7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-hover.png new file mode 100644 index 000000000..38e525fa5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 000000000..74eabb3ea Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/radio-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough-active.png new file mode 100644 index 000000000..32d3cc118 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough-disabled.png new file mode 100644 index 000000000..5ab0ba967 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough.png new file mode 100644 index 000000000..540bfa403 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-horz-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-active.png new file mode 100644 index 000000000..d4c7292c4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-disabled.png new file mode 100644 index 000000000..e3a2f29c6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-hover.png new file mode 100644 index 000000000..4dbc53dac Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider.png new file mode 100644 index 000000000..1e423ebc2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough-active.png new file mode 100644 index 000000000..999d40db6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough-disabled.png new file mode 100644 index 000000000..dfe39a1c9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough.png new file mode 100644 index 000000000..bb030eab2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scale-vert-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-active.png new file mode 100644 index 000000000..1f85e53df Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-disabled.png new file mode 100644 index 000000000..a8f773ddb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-hover.png new file mode 100644 index 000000000..72b15d9a7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider.png new file mode 100644 index 000000000..c8387776c Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-trough.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-trough.png new file mode 100644 index 000000000..ed7a4e076 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-horz-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png new file mode 100644 index 000000000..4b3f86b98 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png new file mode 100644 index 000000000..331244408 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png new file mode 100644 index 000000000..f38113988 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider.png new file mode 100644 index 000000000..9202d6479 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-trough.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-trough.png new file mode 100644 index 000000000..eb055298b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-ltr-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png new file mode 100644 index 000000000..e00b5841b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png new file mode 100644 index 000000000..da20226c3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png new file mode 100644 index 000000000..c80f81944 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider.png new file mode 100644 index 000000000..812af4b7b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-trough.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-trough.png new file mode 100644 index 000000000..109598219 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/scrollbar-vert-rtl-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-active.png new file mode 100644 index 000000000..c468b5117 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-disabled.png new file mode 100644 index 000000000..356eb67bf Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-hover.png new file mode 100644 index 000000000..da9d16d01 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down.png new file mode 100644 index 000000000..1f4541798 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-down.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-active.png new file mode 100644 index 000000000..90455b328 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-disabled.png new file mode 100644 index 000000000..a74a02600 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-hover.png new file mode 100644 index 000000000..b1c815c8d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up.png new file mode 100644 index 000000000..a74a02600 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-ltr-up.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-active.png new file mode 100644 index 000000000..36c700830 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-disabled.png new file mode 100644 index 000000000..53341da4f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-hover.png new file mode 100644 index 000000000..d4a6f4745 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down.png new file mode 100644 index 000000000..11c8c3bd9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-down.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-active.png new file mode 100644 index 000000000..abbc7b506 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-disabled.png new file mode 100644 index 000000000..57f0eee69 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-hover.png new file mode 100644 index 000000000..93afabb12 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up.png new file mode 100644 index 000000000..57f0eee69 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/spin-rtl-up.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/tab.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/tab.png new file mode 100644 index 000000000..c81a42dd8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/tab.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button-active.png new file mode 100644 index 000000000..c9dcb2bf0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button-hover.png new file mode 100644 index 000000000..7e158bcdf Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button.png new file mode 100644 index 000000000..2f86f7f5c Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-ltr-button.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button-active.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button-active.png new file mode 100644 index 000000000..32547d83a Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button-hover.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button-hover.png new file mode 100644 index 000000000..028573376 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button.png new file mode 100644 index 000000000..9465f24bf Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/assets/treeview-rtl-button.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/gtkrc b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/gtkrc new file mode 100644 index 000000000..3fd2a49bd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/gtkrc @@ -0,0 +1,42 @@ +# 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 oomox-Gruvbox-Material-Dark-HIDPI. 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 = "base_color:#282828" +gtk-color-scheme = "text_color:#d4be98" +# Foreground/background +gtk-color-scheme = "bg_color:#282828" +gtk-color-scheme = "fg_color:#d4be98" +# Selected foreground/background +gtk-color-scheme = "selected_bg_color:#7c6f64" +gtk-color-scheme = "selected_fg_color:#000000" +# Titlebar foreground/background +gtk-color-scheme = "titlebar_bg_color:#32302f" +gtk-color-scheme = "titlebar_fg_color:#d4be98" +# Menus +gtk-color-scheme = "menu_color:#3C3836" +# Tooltips foreground/background +gtk-color-scheme = "tooltip_bg_color:#616161" +gtk-color-scheme = "tooltip_fg_color:#d4be98" +# Links +gtk-color-scheme = "link_color:#7c6f64" +gtk-color-scheme = "visited_link_color:#c58af9" + +# 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/local/share/themes/Gruvbox-Dark/gtk-2.0/hacks.rc b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/hacks.rc similarity index 100% rename from local/share/themes/Gruvbox-Dark/gtk-2.0/hacks.rc rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/hacks.rc diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/main.rc b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/main.rc new file mode 100644 index 000000000..b29ee95d5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-2.0/main.rc @@ -0,0 +1,2669 @@ +# 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 = 2 + ythickness = 2 + + #################### + # Style Properties # + #################### + + GtkWidget::focus-padding = 0 + GtkWidget::focus-line-width = 4 + GtkWidget::focus-line-pattern = "\2\1" + + GtkToolbar::space-size = 10 # 2 + 4*2 (separator + margins) + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 8 + + GtkWidget::tooltip-radius = 8 + 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 = 6 + + GtkButton::child-displacement-y = 0 + + GtkButton::default-border = {0, 0, 0, 0} + GtkButton::default-outside-border = {0, 0, 0, 0} + GtkButton::inner-border = {8, 8, 8, 8} + + GtkEntry::state-hint = 1 + GtkEntry::inner-border = {8, 8, 8, 8} + + GtkPaned::handle-size = 16 + GtkHPaned::handle-size = 16 + GtkVPaned::handle-size = 16 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 34 + 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 = 64 # 48 + 2*8 (margins) + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 48 + GtkScale::slider_width = 48 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + GtkProgressBar::xspacing = 8 + GtkProgressBar::yspacing = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + # 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 = 8 + GtkMenu::double-arrows = 0 + GtkMenuItem::arrow-scaling = 1 + GtkMenuItem::toggle-spacing = 24 + + GtkCheckButton::indicator-size = 48 + GtkCheckButton::indicator_spacing = 4 + GtkOptionMenu::indicator_spacing = {16, 16, 8, 8} + + GtkTreeView::expander-size = 32 + GtkTreeView::vertical-separator = 0 + GtkTreeView::horizontal-separator = 8 + 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 = 32 + + 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.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-disabled.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-down.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-disabled.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-left.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-disabled.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-right.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-disabled.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + ###################### + # Option Menu Arrows # + ###################### + + image { + function = TAB + state = NORMAL + overlay_file = "assets/pan-down.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-disabled.png" + overlay_stretch = FALSE + } + + ######### + # Lines # + ######### + + image { + function = VLINE + file = "assets/border.png" + border = {2, 0, 0, 0} + } + + image { + function = HLINE + file = "assets/border.png" + border = {0, 0, 2, 0} + } + + ######### + # Focus # + ######### + + image { + function = FOCUS + file = "assets/focus.png" + border = {10, 10, 10, 10} # Super strange, {8, 8, 8, 8} does not work properly... + stretch = TRUE + } + + ########### + # Handles # + ########### + + image { + function = HANDLE + detail = "handlebox" + overlay_file = "assets/handle-vert.png" + overlay_stretch = FALSE + } + + image { + function = HANDLE + overlay_file = "assets/handle-horz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = RESIZE_GRIP + } + + ############# + # Expanders # + ############# + + image { + function = EXPANDER + expander_style = EXPANDED + state = NORMAL + file = "assets/pan-down.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = PRELIGHT + file = "assets/pan-down-alt.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = ACTIVE + file = "assets/pan-down-alt.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = INSENSITIVE + file = "assets/pan-down-disabled.png" + } + + # LTR + + image { + function = EXPANDER + expander_style = COLLAPSED + state = NORMAL + file = "assets/pan-right.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = PRELIGHT + file = "assets/pan-right-alt.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = ACTIVE + file = "assets/pan-right-alt.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = INSENSITIVE + file = "assets/pan-right-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.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = PRELIGHT + file = "assets/pan-left-alt.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = ACTIVE + file = "assets/pan-left-alt.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = INSENSITIVE + file = "assets/pan-left-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, 2, 0, 0} + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + gap_side = RIGHT + } + + # Right + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {2, 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, 2} + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + gap_side = BOTTOM + } + + # Down + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 0, 2, 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 = {2, 2, 2, 2} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {2, 0, 0, 0} + gap_side = LEFT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {2, 2, 2, 2} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 2, 0, 0} + gap_side = RIGHT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {2, 2, 2, 2} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 0, 2, 0} + gap_side = TOP + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {2, 2, 2, 2} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 0, 0, 2} + gap_side = BOTTOM + } + + # Standalone frame + image { + function = BOX + detail = "notebook" + file = "assets/frame-notebook.png" + border = {2, 2, 2, 2} + stretch = TRUE + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-horz-trough.png" + border = {0, 0, 2, 0} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-ltr-trough.png" + border = {2, 0, 0, 0} + orientation = VERTICAL + direction = LTR + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-rtl-trough.png" + border = {0, 2, 0, 0} + orientation = VERTICAL + direction = RTL + } + + # Horizontal sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-horz-slider.png" + border = {16, 16, 18, 16 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-horz-slider-hover.png" + border = {16, 16, 18, 16 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-active.png" + border = {16, 16, 18, 16 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-disabled.png" + border = {16, 16, 18, 16 } + stretch = TRUE + orientation = HORIZONTAL + } + + # Vertical sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider.png" + border = {18, 16, 16, 16} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-hover.png" + border = {18, 16, 16, 16} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-active.png" + border = {18, 16, 16, 16} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-disabled.png" + border = {18, 16, 16, 16} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + # RTL + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider.png" + border = {16, 18, 16, 16} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-hover.png" + border = {16, 18, 16, 16} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-active.png" + border = {16, 18, 16, 16} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-disabled.png" + border = {16, 18, 16, 16} + 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 = {12, 12, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-upper" + file = "assets/scale-horz-trough-disabled.png" + border = {12, 12, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {12, 12, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-lower" + file = "assets/scale-horz-trough-disabled.png" + border = {12, 12, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 12, 12} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-upper" + file = "assets/scale-vert-trough-disabled.png" + border = {0, 0, 12, 12} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 12, 12} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-lower" + file = "assets/scale-vert-trough-disabled.png" + border = {0, 0, 12, 12} + 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, 2} + # } + + ######### + # 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, 2} + } + + 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, 2, 0} + } + + ########### + # Entries # + ########### + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-disabled.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/entry.png" + border = {16, 16, 16, 16} + 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, 16, 16, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-ltr-up-hover.png" + border = {0, 16, 16, 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, 16, 16, 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, 16, 16, 0} + stretch = TRUE + overlay_file = "assets/pan-up-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 = {16, 0, 16, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {16, 0, 16, 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 = {16, 0, 16, 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 = {16, 0, 16, 0} + stretch = TRUE + overlay_file = "assets/pan-up-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, 16, 0, 16} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-ltr-down-hover.png" + border = {0, 16, 0, 16} + 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, 16, 0, 16} + 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, 16, 0, 16} + stretch = TRUE + overlay_file = "assets/pan-down-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 = {16, 0, 0, 16} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-rtl-down-hover.png" + border = {16, 0, 0, 16} + 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 = {16, 0, 0, 16} + 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 = {16, 0, 0, 16} + stretch = TRUE + overlay_file = "assets/pan-down-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) + # 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 = 6 + ythickness = 8 + + 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 = 8 + ythickness = 8 + + 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 = 4 + + engine "pixmap" { + image { + function = BOX + file = "assets/border.png" + border = {0, 0, 0, 2} + } + } +} + +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 = 8 + ythickness = 8 + + # For the sake of sanity style buttons this way + engine "pixmap" { + + ########### + # Buttons # + ########### + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/button-hover.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/button-active.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-disabled.png" + border = {16, 16, 16, 16} + 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 = 12 + ythickness = 12 +} + +style "combobox" { + xthickness = 12 + ythickness = 12 + + # 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 = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/entry-hover.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/entry-active.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/entry-disabled.png" + border = {16, 16, 16, 16} + 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, 4, 0, 0} + + engine "pixmap" { + + ############# + # LTR entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-left-entry.png" + border = {16, 16, 16, 16} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-left-entry-active.png" + border = {16, 16, 16, 16} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-left-entry-disabled.png" + border = {16, 16, 16, 16} + stretch = TRUE + direction = LTR + } + + ############# + # RTL entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-right-entry.png" + border = {16, 16, 16, 16} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-right-entry-active.png" + border = {16, 16, 16, 16} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-right-entry-disabled.png" + border = {16, 16, 16, 16} + stretch = TRUE + direction = RTL + } + + ############## + # LTR button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-right-entry.png" + border = {0, 16, 16, 16} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-right-entry-hover.png" + border = {0, 16, 16, 16} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-right-entry-active.png" + border = {0, 16, 16, 16} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-right-entry-disabled.png" + border = {0, 16, 16, 16} + stretch = TRUE + direction = LTR + } + + ############## + # RTL button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-left-entry.png" + border = {16, 0, 16, 16} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-left-entry-hover.png" + border = {16, 0, 16, 16} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-left-entry-active.png" + border = {16, 0, 16, 16} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-left-entry-disabled.png" + border = {16, 0, 16, 16} + 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 = {6, 12, 6, 6} +} + +style "notebook" { + xthickness = 6 + ythickness = 6 +} + +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 = {12, 12, 0, 0} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {12, 12, 0, 0} + stretch = TRUE + } + } +} + +style "scale_vert" { + engine "pixmap" { + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 12, 12} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 12, 12} + 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 = 4 + ythickness = 4 + + fg[NORMAL] = mix(0.7, @fg_color, @base_color) + fg[PRELIGHT] = mix(0.7, @fg_color, @base_color) + fg[ACTIVE] = mix(0.7, @fg_color, @base_color) + + font_name = "Medium" + + GtkButton::inner-border = {8, 8, 0, 4} + + engine "pixmap" { + image { + function = BOX + state = NORMAL + file = "assets/treeview-ltr-button.png" + border = {0, 2, 0, 2} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/treeview-ltr-button-hover.png" + border = {0, 2, 0, 2} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/treeview-ltr-button-active.png" + border = {0, 2, 0, 2} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = NORMAL + file = "assets/treeview-rtl-button.png" + border = {2, 0, 0, 2} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/treeview-rtl-button-hover.png" + border = {2, 0, 0, 2} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/treeview-rtl-button-active.png" + border = {2, 0, 0, 2} + stretch = TRUE + direction = RTL + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-up.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.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 = {2, 2, 2, 2} + stretch = TRUE + } + } +} + +style "frame" { + engine "pixmap" { + image { + function = SHADOW + shadow = NONE + } + + image { + function = SHADOW + file = "assets/frame.png" + border = {2, 2, 2, 2} + stretch = TRUE + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = {2, 2, 2, 2} + stretch = TRUE + gap_start_file = "assets/border.png" + gap_end_file = "assets/border.png" + } + } +} + +style "tool_button" { + GtkButton::inner-border = {4, 4, 4, 4} + + # For the sake of sanity style buttons this way + engine "pixmap" { + image { + function = BOX + state = NORMAL + file = "assets/flat-button.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/flat-button-hover.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/flat-button-active.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/flat-button-active.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + shadow = OUT + file = "assets/flat-button-disabled.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + shadow = IN + file = "assets/button-disabled.png" + border = {16, 16, 16, 16} + stretch = TRUE + } + } +} + +style "toolbar_separator" { + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 2 + GtkWidget::separator-height = 2 + + engine "pixmap" { + image { + function = BOX + file = "assets/border.png" + } + } +} + +style "inline_toolbar" { + # GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + image { + function = BOX + file = "assets/frame-inline.png" + border = {2, 2, 0, 2} + stretch = TRUE + } + } +} + +style "tooltip" { + xthickness = 16 + ythickness = 16 + + 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/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png new file mode 100644 index 000000000..6980cd327 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png new file mode 100644 index 000000000..65fdef591 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png new file mode 100644 index 000000000..a1c4353a3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png new file mode 100644 index 000000000..22f4916fb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png new file mode 100644 index 000000000..451fe491d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png new file mode 100644 index 000000000..414de45a9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider.png new file mode 100644 index 000000000..61f0d7d20 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider@2.png new file mode 100644 index 000000000..b7f823ae6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-after-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png new file mode 100644 index 000000000..0b0efc10b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png new file mode 100644 index 000000000..0fc274bf6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png new file mode 100644 index 000000000..2c9a8c29f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png new file mode 100644 index 000000000..07a1a02a8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png new file mode 100644 index 000000000..fa74da71f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png new file mode 100644 index 000000000..29a6ee3f0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider.png new file mode 100644 index 000000000..d719ed338 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider@2.png new file mode 100644 index 000000000..fd2273d45 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-horz-marks-before-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-dark.png new file mode 100644 index 000000000..187078dbc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-dark@2.png new file mode 100644 index 000000000..1e423ebc2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled-dark.png new file mode 100644 index 000000000..32dee996d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled-dark@2.png new file mode 100644 index 000000000..e3a2f29c6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled.png new file mode 100644 index 000000000..c89fd30b6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled@2.png new file mode 100644 index 000000000..e53e06fa9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider.png new file mode 100644 index 000000000..2d2095825 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider@2.png new file mode 100644 index 000000000..530e07d9d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png new file mode 100644 index 000000000..a16bad236 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png new file mode 100644 index 000000000..27b96fb15 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png new file mode 100644 index 000000000..132c1e870 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png new file mode 100644 index 000000000..354c6dbb6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png new file mode 100644 index 000000000..c3b072482 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png new file mode 100644 index 000000000..2dd27091b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider.png new file mode 100644 index 000000000..250f616a5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider@2.png new file mode 100644 index 000000000..48de87544 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-after-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png new file mode 100644 index 000000000..16702d790 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png new file mode 100644 index 000000000..1e4217334 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png new file mode 100644 index 000000000..7e2bcd483 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png new file mode 100644 index 000000000..4faaa4663 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png new file mode 100644 index 000000000..f98b19483 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png new file mode 100644 index 000000000..27d5a3962 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider.png new file mode 100644 index 000000000..971228be1 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider@2.png new file mode 100644 index 000000000..ef45044a7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/scale-vert-marks-before-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png new file mode 100644 index 000000000..db1019600 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png new file mode 100644 index 000000000..7229282ce Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked.png new file mode 100644 index 000000000..05a03cdd3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked@2.png new file mode 100644 index 000000000..e3b84e885 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-checked@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png new file mode 100644 index 000000000..8175aeb09 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png new file mode 100644 index 000000000..5effa4b38 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked.png new file mode 100644 index 000000000..bd1a726a6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png new file mode 100644 index 000000000..9fbc798dc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/gtk.css b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/gtk.css new file mode 100644 index 000000000..b31b3a0c5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/gtk.css @@ -0,0 +1,6249 @@ +@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, #7c6f64 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #7c6f64 100%, transparent 0%); + } +} +button, modelbutton.flat, +.menuitem.button.flat, notebook > header > tabs > arrow, check, +radio, row.activatable { + transition-property: all, border-image, background-size, background-image; + transition-duration: 75ms, 225ms, 300ms, 1200ms; + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} +button:active, modelbutton.flat:active, +.menuitem.button.flat:active, notebook > header > tabs > arrow:active, check:active, +radio:active, row.activatable:active { + transition-duration: 75ms, 225ms, 0ms, 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: 0% 0%; +} + +* { + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #ea6962; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 4; + -gtk-secondary-caret-color: #7c6f64; + outline: 2px solid transparent; + outline-offset: -4px; + -gtk-outline-radius: 6px; +} +*:focus { + outline-color: rgba(212, 190, 152, 0.08); +} + +/** + * Base States + */ +.background { + background-color: #282828; + color: #d4be98; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #282828; + color: #d4be98; +} +.gtkstyle-fallback:hover { + background-color: #363431; +} +.gtkstyle-fallback:active { + background-color: #3d3a35; +} +.gtkstyle-fallback:disabled { + color: rgba(212, 190, 152, 0.5); +} +.gtkstyle-fallback:selected { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} + +.view:hover { + background-color: rgba(212, 190, 152, 0.04); +} +.view:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +.view:disabled { + color: rgba(212, 190, 152, 0.5); +} +.view:hover, .view:selected { + border-radius: 6px; +} +.view selection, .view:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +textview text { + background-color: #282828; + caret-color: #7c6f64; +} +frame:not(.flat) textview text, .frame textview text { + background-color: #282828; +} +popover.background textview text { + background-color: #3C3836; +} +messagedialog.background textview text { + background-color: #3C3836; +} +textview border { + color: rgba(212, 190, 152, 0.7); +} + +.nemo-desktop.nemo-canvas-item, .caja-desktop.caja-canvas-item, .nautilus-desktop.nautilus-canvas-item { + color: #fff; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} +.nemo-desktop.nemo-canvas-item .rubberband, .caja-desktop.caja-canvas-item .rubberband, .nautilus-desktop.nautilus-canvas-item .rubberband, +.nemo-desktop.nemo-canvas-item rubberband, +.caja-desktop.caja-canvas-item rubberband, +.nautilus-desktop.nautilus-canvas-item rubberband { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.3); +} + +XfdesktopIconView.view .rubberband, .content-view rubberband, +.content-view .rubberband, treeview.view rubberband, flowbox rubberband, +.rubberband, +rubberband { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.24); +} + +flowbox flowboxchild { + padding: 4px; + border-radius: 6px; +} +flowbox flowboxchild:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +.content-view .tile:selected { + background-color: transparent; +} + +label { + caret-color: #7c6f64; +} +label.separator { + color: rgba(212, 190, 152, 0.7); +} +label.error { + color: #ea6962; +} +label selection { + background-color: rgba(124, 111, 100, 0.6); +} +label:disabled { + color: rgba(212, 190, 152, 0.5); +} +headerbar label:disabled, menuitem label:disabled, tab label:disabled, button label:disabled { + color: inherit; +} +label.osd { + border-radius: 6px; + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} + +.dim-label { + color: rgba(212, 190, 152, 0.7); +} + +assistant .sidebar { + padding: 4px 0; +} +assistant .sidebar label { + min-height: 32px; + margin: 0 4px; + padding: 0 8px; + border-radius: 6px; + color: rgba(212, 190, 152, 0.5); + font-weight: 500; +} +assistant .sidebar label.highlight { + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; +} + +/** + * Spinner Animation + */ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); + } +} +spinner { + background: none; + opacity: 0; + color: #7c6f64; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + transition: opacity 300ms cubic-bezier(0, 0, 0.2, 1); + animation: spin 1s linear infinite; +} +spinner:checked { + opacity: 1; +} +spinner:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * General Typography + */ +.large-title { + font-weight: 400; + font-size: 36pt; +} + +.title-1, .nautilus-empty-state-icon + .large-title { + font-weight: 400; + font-size: 25.5pt; + letter-spacing: 0.1875pt; +} + +.title-2 { + font-weight: 400; + font-size: 18pt; +} + +.title-3 { + font-weight: 500; + font-size: 15pt; + letter-spacing: 0.1125pt; +} + +.title-4 { + font-weight: 400; + font-size: 12pt; + letter-spacing: 0.375pt; +} + +.heading { + font-weight: 500; + font-size: 1em; +} + +.body { + font-weight: 400; + font-size: 1em; +} + +.caption-heading { + font-weight: 500; + font-size: 9pt; + letter-spacing: 1.125pt; +} + +.caption { + font-weight: 400; + font-size: 9pt; + letter-spacing: 0.3pt; +} + +/** + * Text Entries + */ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding: 0 8px; + border-radius: 6px 6px 0 0; + 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), #7c6f64 0%, transparent 0%) 2/0 0 0; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #7c6f64; +} +spinbutton:focus:not(.vertical), +entry:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 0%) 2/0 0 2px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton:drop(active):not(.vertical), +entry:drop(active) { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.0784); +} +spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton.flat:not(.vertical), +entry.flat { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: transparent; +} +spinbutton:not(.vertical) image, +entry image { + color: rgba(212, 190, 152, 0.7); +} +spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active, +entry image:hover, +entry image:active { + color: #d4be98; +} +spinbutton:not(.vertical) image:disabled, +entry image:disabled { + color: rgba(212, 190, 152, 0.5); +} +spinbutton:not(.vertical) image.left, +entry image.left { + margin-left: 0px; + margin-right: 6px; +} +spinbutton:not(.vertical) image.right, +entry image.right { + margin-left: 6px; + margin-right: 0px; +} +spinbutton:not(.vertical) selection, +entry selection { + background-color: rgba(124, 111, 100, 0.6); +} +spinbutton.error:not(.vertical), +entry.error { + 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), #ea6962 0%, transparent 0%) 2/0 0 0; + box-shadow: inset 0 -1px #ea6962; + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #ea6962; +} +spinbutton.error:focus:not(.vertical), +entry.error:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ea6962 100%, transparent 0%) 2/0 0 2px; + box-shadow: inset 0 -1px #ea6962; + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton.warning:not(.vertical), +entry.warning { + 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), #d8a657 0%, transparent 0%) 2/0 0 0; + box-shadow: inset 0 -1px #d8a657; + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #d8a657; +} +spinbutton.warning:focus:not(.vertical), +entry.warning:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #d8a657 100%, transparent 0%) 2/0 0 2px; + box-shadow: inset 0 -1px #d8a657; + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton:not(.vertical) progress, +entry progress { + margin: 0 -8px -4px; + border-bottom: 2px solid #7c6f64; + background-color: transparent; +} +.gedit-search-slider .linked:not(.vertical) > entry, spinbutton.vertical entry { + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #3C3836; + color: #d4be98; + caret-color: #7c6f64; +} +.gedit-search-slider .linked:not(.vertical) > entry:focus, spinbutton.vertical entry:focus { + border-image: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +.gedit-search-slider .linked:not(.vertical) > entry:drop(active), spinbutton.vertical entry:drop(active) { + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +.gedit-search-slider .linked:not(.vertical) > entry:disabled, spinbutton.vertical entry:disabled { + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +.gedit-search-slider .linked:not(.vertical) > entry.error, spinbutton.vertical entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #ea6962; + color: #000; + caret-color: #000; +} +.gedit-search-slider .linked:not(.vertical) > entry.error:focus, spinbutton.vertical entry.error:focus { + border-image: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +.gedit-search-slider .linked:not(.vertical) > entry.error:disabled, spinbutton.vertical entry.error:disabled { + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +.gedit-search-slider .linked:not(.vertical) > entry.error image, spinbutton.vertical entry.error image { + color: rgba(0, 0, 0, 0.7); +} +.gedit-search-slider .linked:not(.vertical) > entry.error image:hover, spinbutton.vertical entry.error image:hover, .gedit-search-slider .linked:not(.vertical) > entry.error image:active, spinbutton.vertical entry.error image:active { + color: #000; +} +.gedit-search-slider .linked:not(.vertical) > entry.error image:disabled, spinbutton.vertical entry.error image:disabled { + color: rgba(0, 0, 0, 0.5); +} +.gedit-search-slider .linked:not(.vertical) > entry.warning, spinbutton.vertical entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #d8a657; + color: #000; + caret-color: #000; +} +.gedit-search-slider .linked:not(.vertical) > entry.warning:focus, spinbutton.vertical entry.warning:focus { + border-image: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +.gedit-search-slider .linked:not(.vertical) > entry.warning:disabled, spinbutton.vertical entry.warning:disabled { + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +.gedit-search-slider .linked:not(.vertical) > entry.warning image, spinbutton.vertical entry.warning image { + color: rgba(0, 0, 0, 0.7); +} +.gedit-search-slider .linked:not(.vertical) > entry.warning image:hover, spinbutton.vertical entry.warning image:hover, .gedit-search-slider .linked:not(.vertical) > entry.warning image:active, spinbutton.vertical entry.warning image:active { + color: #000; +} +.gedit-search-slider .linked:not(.vertical) > entry.warning image:disabled, spinbutton.vertical entry.warning image:disabled { + color: rgba(0, 0, 0, 0.5); +} + +treeview entry, treeview entry.flat { + background-color: #282828; +} +treeview entry, treeview entry:focus, treeview entry.flat, treeview entry.flat:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .documents-entry-tag, .photos-entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: #d4be98; +} +.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover { + background-image: image(rgba(212, 190, 152, 0.08)); +} +:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} +:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} +.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.7); +} + +/** + * Buttons + */ +@keyframes needs-attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#7c6f64), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#7c6f64), to(transparent)); + } +} +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 6px; + color: #d4be98; + font-weight: 500; + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; +} +button:drop(active), +button:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #423d3a; +} +button:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #48433e; +} +button:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +button:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button:checked { + color: #7c6f64; + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #443f3c; +} +button:checked:drop(active), +button:checked:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #46413e; +} +button:checked:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #48433f; +} +button:checked:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +button:checked:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.1904); + color: rgba(212, 190, 152, 0.5); +} +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} +button.image-button { + min-width: 24px; + padding: 4px; + border-radius: 9999px; +} +button.text-button.image-button { + min-width: 24px; + padding: 4px; + border-radius: 6px; +} +button.text-button.image-button label:first-child { + margin-left: 12px; +} +button.text-button.image-button label:last-child { + margin-right: 12px; +} +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} +.budgie-settings-window buttonbox.inline-toolbar button, #MatePanelPopupWindow button, #mate-menu button, .gedit-search-slider .linked:not(.vertical) > button, popover.messagepopover .popover-action-area button, button.sidebar-button, scrollbar button, combobox > .linked:not(.vertical) > button:not(:only-child), spinbutton.vertical button, spinbutton:not(.vertical) button, .nemo-window .toolbar button, .raven .raven-header.top stackswitcher.linked > button, .caja-navigation-window box.horizontal > button.toggle.image-button, #CanvasTable button, layouttabbar button, .message-input-area button, filechooser #pathbarbox > stack > box > button, #buttonbox_frame button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, #caja-extra-view-widget button, .lock-dialog button, infobar.info > revealer > box button, infobar.question > revealer > box button, messagedialog .dialog-action-box button, .app-notification button, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action), popover.background.menu button, +popover.background button.model, .titlebar button:not(.suggested-action):not(.destructive-action), toolbar button, +button.flat { + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +.budgie-settings-window buttonbox.inline-toolbar button:drop(active), #MatePanelPopupWindow button:drop(active), #mate-menu button:drop(active), .gedit-search-slider .linked:not(.vertical) > button:drop(active), popover.messagepopover .popover-action-area button:drop(active), button.sidebar-button:drop(active), scrollbar button:drop(active), combobox > .linked:not(.vertical) > button:drop(active):not(:only-child), spinbutton.vertical button:drop(active), spinbutton:not(.vertical) button:drop(active), .nemo-window .toolbar button:drop(active), .raven .raven-header.top stackswitcher.linked > button:drop(active), .caja-navigation-window box.horizontal > button.toggle.image-button:drop(active), #CanvasTable button:drop(active), layouttabbar button:drop(active), .message-input-area button:drop(active), filechooser #pathbarbox > stack > box > button:drop(active), #buttonbox_frame button:drop(active), .drop-shadow button:drop(active), .budgie-session-dialog .linked.horizontal > button:drop(active), #caja-extra-view-widget button:drop(active), .lock-dialog button:drop(active), infobar.info > revealer > box button:drop(active), infobar.question > revealer > box button:drop(active), messagedialog .dialog-action-box button:drop(active), .app-notification button:drop(active), actionbar > revealer > box button:drop(active):not(.suggested-action):not(.destructive-action), popover.background.menu button:drop(active), +popover.background button.model:drop(active), .titlebar button:drop(active):not(.suggested-action):not(.destructive-action), toolbar button:drop(active), +button.flat:drop(active), .budgie-settings-window buttonbox.inline-toolbar button:hover, #MatePanelPopupWindow button:hover, #mate-menu button:hover, .gedit-search-slider .linked:not(.vertical) > button:hover, popover.messagepopover .popover-action-area button:hover, button.sidebar-button:hover, scrollbar button:hover, combobox > .linked:not(.vertical) > button:hover:not(:only-child), spinbutton.vertical button:hover, spinbutton:not(.vertical) button:hover, .nemo-window .toolbar button:hover, .raven .raven-header.top stackswitcher.linked > button:hover, .caja-navigation-window box.horizontal > button.toggle.image-button:hover, #CanvasTable button:hover, layouttabbar button:hover, .message-input-area button:hover, filechooser #pathbarbox > stack > box > button:hover, #buttonbox_frame button:hover, .drop-shadow button:hover, .budgie-session-dialog .linked.horizontal > button:hover, #caja-extra-view-widget button:hover, .lock-dialog button:hover, infobar.info > revealer > box button:hover, infobar.question > revealer > box button:hover, messagedialog .dialog-action-box 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, .titlebar button:hover:not(.suggested-action):not(.destructive-action), toolbar button:hover, +button.flat:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.budgie-settings-window buttonbox.inline-toolbar button:focus, #MatePanelPopupWindow button:focus, #mate-menu button:focus, .gedit-search-slider .linked:not(.vertical) > button:focus, popover.messagepopover .popover-action-area button:focus, button.sidebar-button:focus, scrollbar button:focus, combobox > .linked:not(.vertical) > button:focus:not(:only-child), spinbutton.vertical button:focus, spinbutton:not(.vertical) button:focus, .nemo-window .toolbar button:focus, .raven .raven-header.top stackswitcher.linked > button:focus, .caja-navigation-window box.horizontal > button.toggle.image-button:focus, #CanvasTable button:focus, layouttabbar button:focus, .message-input-area button:focus, filechooser #pathbarbox > stack > box > button:focus, #buttonbox_frame button:focus, .drop-shadow button:focus, .budgie-session-dialog .linked.horizontal > button:focus, #caja-extra-view-widget button:focus, .lock-dialog button:focus, infobar.info > revealer > box button:focus, infobar.question > revealer > box button:focus, messagedialog .dialog-action-box 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, .titlebar button:focus:not(.suggested-action):not(.destructive-action), toolbar button:focus, +button.flat:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.budgie-settings-window buttonbox.inline-toolbar button:active, #MatePanelPopupWindow button:active, #mate-menu button:active, .gedit-search-slider .linked:not(.vertical) > button:active, popover.messagepopover .popover-action-area button:active, button.sidebar-button:active, scrollbar button:active, combobox > .linked:not(.vertical) > button:active:not(:only-child), spinbutton.vertical button:active, spinbutton:not(.vertical) button:active, .nemo-window .toolbar button:active, .raven .raven-header.top stackswitcher.linked > button:active, .caja-navigation-window box.horizontal > button.toggle.image-button:active, #CanvasTable button:active, layouttabbar button:active, .message-input-area button:active, filechooser #pathbarbox > stack > box > button:active, #buttonbox_frame button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, #caja-extra-view-widget button:active, .lock-dialog button:active, infobar.info > revealer > box button:active, infobar.question > revealer > box button:active, messagedialog .dialog-action-box 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, .titlebar button:active:not(.suggested-action):not(.destructive-action), toolbar button:active, +button.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +.budgie-settings-window buttonbox.inline-toolbar button:disabled, #MatePanelPopupWindow button:disabled, #mate-menu button:disabled, .gedit-search-slider .linked:not(.vertical) > button:disabled, popover.messagepopover .popover-action-area button:disabled, button.sidebar-button:disabled, scrollbar button:disabled, combobox > .linked:not(.vertical) > button:disabled:not(:only-child), spinbutton.vertical button:disabled, spinbutton:not(.vertical) button:disabled, .nemo-window .toolbar button:disabled, .raven .raven-header.top stackswitcher.linked > button:disabled, .caja-navigation-window box.horizontal > button.toggle.image-button:disabled, #CanvasTable button:disabled, layouttabbar button:disabled, .message-input-area button:disabled, filechooser #pathbarbox > stack > box > button:disabled, #buttonbox_frame button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, #caja-extra-view-widget button:disabled, .lock-dialog button:disabled, infobar.info > revealer > box button:disabled, infobar.question > revealer > box button:disabled, messagedialog .dialog-action-box 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, .titlebar button:disabled:not(.suggested-action):not(.destructive-action), toolbar button:disabled, +button.flat:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} + +.nemo-window .toolbar button:checked, .raven .raven-header.top stackswitcher.linked > button:checked, .caja-navigation-window box.horizontal > button.toggle.image-button:checked, #CanvasTable button:checked, layouttabbar button:checked, .message-input-area button:checked, filechooser #pathbarbox > stack > box > button:checked, #buttonbox_frame button:checked, .drop-shadow button:checked, .budgie-session-dialog .linked.horizontal > button:checked, #caja-extra-view-widget button:checked, .lock-dialog button:checked, infobar.info > revealer > box button:checked, infobar.question > revealer > box button:checked, messagedialog .dialog-action-box 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, .titlebar button:checked:not(.suggested-action):not(.destructive-action), toolbar button:checked, +button.flat:checked { + color: #7c6f64; + box-shadow: none; + background-color: rgba(124, 111, 100, 0.12); +} +.nemo-window .toolbar button:checked:drop(active), .raven .raven-header.top stackswitcher.linked > button:checked:drop(active), .caja-navigation-window box.horizontal > button.toggle.image-button:checked:drop(active), #CanvasTable button:checked:drop(active), layouttabbar button:checked:drop(active), .message-input-area button:checked:drop(active), filechooser #pathbarbox > stack > box > button:checked:drop(active), #buttonbox_frame button:checked:drop(active), .drop-shadow button:checked:drop(active), .budgie-session-dialog .linked.horizontal > button:checked:drop(active), #caja-extra-view-widget button:checked:drop(active), .lock-dialog button:checked:drop(active), infobar.info > revealer > box button:checked:drop(active), infobar.question > revealer > box button:checked:drop(active), messagedialog .dialog-action-box button:checked:drop(active), .app-notification button:checked:drop(active), actionbar > revealer > box button:checked:drop(active):not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:drop(active), +popover.background button.model:checked:drop(active), .titlebar button:checked:drop(active):not(.suggested-action):not(.destructive-action), toolbar button:checked:drop(active), +button.flat:checked:drop(active), .nemo-window .toolbar button:checked:hover, .raven .raven-header.top stackswitcher.linked > button:checked:hover, .caja-navigation-window box.horizontal > button.toggle.image-button:checked:hover, #CanvasTable button:checked:hover, layouttabbar button:checked:hover, .message-input-area button:checked:hover, filechooser #pathbarbox > stack > box > button:checked:hover, #buttonbox_frame button:checked:hover, .drop-shadow button:checked:hover, .budgie-session-dialog .linked.horizontal > button:checked:hover, #caja-extra-view-widget button:checked:hover, .lock-dialog button:checked:hover, infobar.info > revealer > box button:checked:hover, infobar.question > revealer > box button:checked:hover, messagedialog .dialog-action-box button:checked:hover, .app-notification button:checked:hover, actionbar > revealer > box button:checked:hover:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:hover, +popover.background button.model:checked:hover, .titlebar button:checked:hover:not(.suggested-action):not(.destructive-action), toolbar button:checked:hover, +button.flat:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +.nemo-window .toolbar button:checked:focus, .raven .raven-header.top stackswitcher.linked > button:checked:focus, .caja-navigation-window box.horizontal > button.toggle.image-button:checked:focus, #CanvasTable button:checked:focus, layouttabbar button:checked:focus, .message-input-area button:checked:focus, filechooser #pathbarbox > stack > box > button:checked:focus, #buttonbox_frame button:checked:focus, .drop-shadow button:checked:focus, .budgie-session-dialog .linked.horizontal > button:checked:focus, #caja-extra-view-widget button:checked:focus, .lock-dialog button:checked:focus, infobar.info > revealer > box button:checked:focus, infobar.question > revealer > box button:checked:focus, messagedialog .dialog-action-box button:checked:focus, .app-notification button:checked:focus, actionbar > revealer > box button:checked:focus:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:focus, +popover.background button.model:checked:focus, .titlebar button:checked:focus:not(.suggested-action):not(.destructive-action), toolbar button:checked:focus, +button.flat:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +.nemo-window .toolbar button:checked:active, .raven .raven-header.top stackswitcher.linked > button:checked:active, .caja-navigation-window box.horizontal > button.toggle.image-button:checked:active, #CanvasTable button:checked:active, layouttabbar button:checked:active, .message-input-area button:checked:active, filechooser #pathbarbox > stack > box > button:checked:active, #buttonbox_frame button:checked:active, .drop-shadow button:checked:active, .budgie-session-dialog .linked.horizontal > button:checked:active, #caja-extra-view-widget button:checked:active, .lock-dialog button:checked:active, infobar.info > revealer > box button:checked:active, infobar.question > revealer > box button:checked:active, messagedialog .dialog-action-box button:checked:active, .app-notification button:checked:active, actionbar > revealer > box button:checked:active:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:active, +popover.background button.model:checked:active, .titlebar button:checked:active:not(.suggested-action):not(.destructive-action), toolbar button:checked:active, +button.flat:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.nemo-window .toolbar button:checked:disabled, .raven .raven-header.top stackswitcher.linked > button:checked:disabled, .caja-navigation-window box.horizontal > button.toggle.image-button:checked:disabled, #CanvasTable button:checked:disabled, layouttabbar button:checked:disabled, .message-input-area button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, #buttonbox_frame button:checked:disabled, .drop-shadow button:checked:disabled, .budgie-session-dialog .linked.horizontal > button:checked:disabled, #caja-extra-view-widget button:checked:disabled, .lock-dialog button:checked:disabled, infobar.info > revealer > box button:checked:disabled, infobar.question > revealer > 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, .titlebar button:checked:disabled:not(.suggested-action):not(.destructive-action), toolbar button:checked:disabled, +button.flat:checked:disabled { + color: rgba(212, 190, 152, 0.5); +} + +#buttonbox_frame button.text-button, .drop-shadow button.text-button, .budgie-session-dialog .linked.horizontal > button.text-button, #caja-extra-view-widget button.text-button, .lock-dialog button.text-button, infobar.info > revealer > box button.text-button, infobar.question > revealer > box button.text-button, messagedialog .dialog-action-box button.text-button, .app-notification button.text-button, actionbar > revealer > box button.text-button:not(.suggested-action):not(.destructive-action), popover.background.menu button.text-button, +popover.background button.text-button.model, .titlebar button.text-button:not(.suggested-action):not(.destructive-action), toolbar button.text-button, +button.flat.text-button { + min-width: 48px; + padding-left: 8px; + padding-right: 8px; +} +#buttonbox_frame button.text-button.image-button, .drop-shadow button.text-button.image-button, .budgie-session-dialog .linked.horizontal > button.text-button.image-button, #caja-extra-view-widget button.text-button.image-button, .lock-dialog button.text-button.image-button, infobar.info > revealer > box button.text-button.image-button, infobar.question > revealer > box button.text-button.image-button, messagedialog .dialog-action-box button.text-button.image-button, .app-notification button.text-button.image-button, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action), popover.background.menu button.text-button.image-button, +popover.background button.text-button.image-button.model, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action), toolbar button.text-button.image-button, +button.flat.text-button.image-button { + min-width: 24px; + padding: 4px; +} +#buttonbox_frame button.text-button.image-button label:first-child, .drop-shadow button.text-button.image-button label:first-child, .budgie-session-dialog .linked.horizontal > button.text-button.image-button label:first-child, #caja-extra-view-widget button.text-button.image-button label:first-child, .lock-dialog button.text-button.image-button label:first-child, infobar.info > revealer > box button.text-button.image-button label:first-child, infobar.question > revealer > box button.text-button.image-button label:first-child, messagedialog .dialog-action-box button.text-button.image-button label:first-child, .app-notification button.text-button.image-button label:first-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, popover.background.menu button.text-button.image-button label:first-child, +popover.background button.text-button.image-button.model label:first-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, toolbar button.text-button.image-button label:first-child, +button.flat.text-button.image-button label:first-child { + margin-left: 8px; +} +#buttonbox_frame button.text-button.image-button label:last-child, .drop-shadow button.text-button.image-button label:last-child, .budgie-session-dialog .linked.horizontal > button.text-button.image-button label:last-child, #caja-extra-view-widget button.text-button.image-button label:last-child, .lock-dialog button.text-button.image-button label:last-child, infobar.info > revealer > box button.text-button.image-button label:last-child, infobar.question > revealer > box button.text-button.image-button label:last-child, messagedialog .dialog-action-box button.text-button.image-button label:last-child, .app-notification button.text-button.image-button label:last-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, popover.background.menu button.text-button.image-button label:last-child, +popover.background button.text-button.image-button.model label:last-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, toolbar button.text-button.image-button label:last-child, +button.flat.text-button.image-button label:last-child { + margin-right: 8px; +} +#buttonbox_frame .linked:not(.vertical) > button:not(:only-child), .drop-shadow .linked:not(.vertical) > button:not(:only-child), .budgie-session-dialog .linked.horizontal:not(.vertical) > button:not(:only-child), #caja-extra-view-widget .linked:not(.vertical) > button:not(:only-child), .lock-dialog .linked:not(.vertical) > button:not(:only-child), infobar.info > revealer > box .linked:not(.vertical) > button:not(:only-child), infobar.question > revealer > box .linked:not(.vertical) > button:not(:only-child), messagedialog .dialog-action-box .linked:not(.vertical) > button:not(:only-child), .app-notification .linked:not(.vertical) > button:not(:only-child), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:not(:only-child), +popover.background .linked:not(.vertical) > button.model:not(:only-child), .titlebar .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), toolbar .linked:not(.vertical) > button:not(:only-child), #buttonbox_frame .linked.vertical > button:not(:only-child), .drop-shadow .linked.vertical > button:not(:only-child), .budgie-session-dialog .linked.horizontal.vertical > button:not(:only-child), #caja-extra-view-widget .linked.vertical > button:not(:only-child), .lock-dialog .linked.vertical > button:not(:only-child), infobar.info > revealer > box .linked.vertical > button:not(:only-child), infobar.question > revealer > box .linked.vertical > button:not(:only-child), messagedialog .dialog-action-box .linked.vertical > button:not(:only-child), .app-notification .linked.vertical > button:not(:only-child), actionbar > revealer > box .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.background.menu .linked.vertical > button:not(:only-child), +popover.background .linked.vertical > button.model:not(:only-child), .titlebar .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), toolbar .linked.vertical > button:not(:only-child), +.linked:not(.vertical) > button.flat:not(:only-child), +.linked.vertical > button.flat:not(:only-child) { + border-radius: 6px; +} +#buttonbox_frame .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .drop-shadow .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .budgie-session-dialog .linked.horizontal:not(.vertical) > button:not(:only-child).image-button:not(.text-button), #caja-extra-view-widget .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .lock-dialog .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.info > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.question > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), messagedialog .dialog-action-box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .app-notification .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), +popover.background .linked:not(.vertical) > button.model:not(:only-child).image-button:not(.text-button), .titlebar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), toolbar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), #buttonbox_frame .linked.vertical > button:not(:only-child).image-button:not(.text-button), .drop-shadow .linked.vertical > button:not(:only-child).image-button:not(.text-button), .budgie-session-dialog .linked.horizontal.vertical > button:not(:only-child).image-button:not(.text-button), #caja-extra-view-widget .linked.vertical > button:not(:only-child).image-button:not(.text-button), .lock-dialog .linked.vertical > button:not(:only-child).image-button:not(.text-button), infobar.info > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button), infobar.question > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button), messagedialog .dialog-action-box .linked.vertical > button:not(:only-child).image-button:not(.text-button), .app-notification .linked.vertical > button:not(:only-child).image-button:not(.text-button), actionbar > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.background.menu .linked.vertical > button:not(:only-child).image-button:not(.text-button), +popover.background .linked.vertical > button.model:not(:only-child).image-button:not(.text-button), .titlebar .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), toolbar .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.linked:not(.vertical) > button.flat:not(:only-child).image-button:not(.text-button), +.linked.vertical > button.flat:not(:only-child).image-button:not(.text-button) { + border-radius: 9999px; +} + +button.osd { + padding: 8px 12px; +} +button.osd.image-button { + padding: 8px; +} +button.osd:disabled { + opacity: 0; +} +button.suggested-action { + color: rgba(255, 255, 255, 0.87); + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #7c6f64; +} +button.suggested-action:drop(active), button.suggested-action:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #81756a; +} +button.suggested-action:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #867b70; +} +button.suggested-action:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 0%); +} +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button.suggested-action:checked { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #8c8077; +} +button.suggested-action:checked:drop(active), button.suggested-action:checked:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #91857c; +} +button.suggested-action:checked:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #958a82; +} +button.suggested-action:checked:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 0%); +} +button.suggested-action.flat { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +button.suggested-action.flat:drop(active), button.suggested-action.flat:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +button.suggested-action.flat:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +button.suggested-action.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +button.suggested-action.flat:checked { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.12); +} +button.suggested-action.flat:checked:drop(active), button.suggested-action.flat:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +button.suggested-action.flat:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +button.suggested-action.flat:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +button.destructive-action { + color: #000; + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #ea6962; +} +button.destructive-action:drop(active), button.destructive-action:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #d7615a; +} +button.destructive-action:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #ce5c56; +} +button.destructive-action:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button.destructive-action:checked { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #c55852; +} +button.destructive-action:checked:drop(active), button.destructive-action:checked:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #bd544f; +} +button.destructive-action:checked:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #b5514b; +} +button.destructive-action:checked:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +button.destructive-action.flat { + color: #ea6962; + box-shadow: none; + background-color: transparent; +} +button.destructive-action.flat:drop(active), button.destructive-action.flat:hover { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.12); +} +button.destructive-action.flat:focus { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.12); +} +button.destructive-action.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 0%); +} +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +button.destructive-action.flat:checked { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.16); +} +button.destructive-action.flat:checked:drop(active), button.destructive-action.flat:checked:hover { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.2608); +} +button.destructive-action.flat:checked:focus { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.2608); +} +button.destructive-action.flat:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 0%); +} +.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; +} +.inline-toolbar button:not(.text-button) { + border-radius: 9999px; +} +.primary-toolbar button { + -gtk-icon-shadow: none; +} +button.close, button.circular { + border-radius: 9999px; +} +.pluma-window paned.horizontal box.vertical box.horizontal button.flat, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider .linked:not(.vertical) > button, button.sidebar-button, notebook > header > tabs > tab button.flat, spinbutton:not(.vertical) button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +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; +} + +.linked:not(.vertical) > combobox:not(:first-child) > box > button.combo, .linked:not(.vertical) > spinbutton:not(:first-child):not(.vertical), +.linked:not(.vertical) > entry:not(:first-child), +.linked:not(.vertical) > button:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.linked:not(.vertical) > combobox:not(:last-child) > box > button.combo, .linked:not(.vertical) > spinbutton:not(:last-child):not(.vertical), +.linked:not(.vertical) > entry:not(:last-child), +.linked:not(.vertical) > button:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.linked.vertical > combobox:not(:first-child) > box > button.combo, .linked.vertical > spinbutton:not(:first-child):not(.vertical), +.linked.vertical > entry:not(:first-child), +.linked.vertical > button:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.linked.vertical > combobox:not(:last-child) > box > button.combo, .linked.vertical > spinbutton:not(:last-child):not(.vertical), +.linked.vertical > entry:not(:last-child), +.linked.vertical > button:not(:last-child) { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.linked:not(.vertical) > button.image-button:first-child:not(.text-button) { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.linked:not(.vertical) > button.image-button:last-child:not(.text-button) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +.linked:not(.vertical) > button.image-button:only-child:not(.text-button) { + border-radius: 9999px; +} + +.linked.vertical > button.image-button:first-child:not(.text-button) { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} +.linked.vertical > button.image-button:last-child:not(.text-button) { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} +.linked.vertical > button.image-button:only-child:not(.text-button) { + border-radius: 9999px; +} + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 6px; +} +modelbutton.flat:drop(active), modelbutton.flat:hover, +.menuitem.button.flat:drop(active), +.menuitem.button.flat:hover { + background-color: rgba(212, 190, 152, 0.08); +} +modelbutton.flat:focus, +.menuitem.button.flat:focus { + background-color: rgba(212, 190, 152, 0.08); +} +modelbutton.flat:active, +.menuitem.button.flat:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +modelbutton.flat:selected, +.menuitem.button.flat:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +modelbutton.flat arrow { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +modelbutton.flat arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +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: 4px; +} +/** + * Links + */ +*:link { + color: #7c6f64; +} +*:link:disabled { + color: rgba(212, 190, 152, 0.5); +} + +*:visited { + color: #d3869b; +} +*:visited:disabled { + color: rgba(212, 190, 152, 0.5); +} + +button.link:link { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +button.link:link:drop(active), button.link:link:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +button.link:link:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +button.link:link:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +button.link:visited { + color: #d3869b; + box-shadow: none; + background-color: transparent; +} +button.link:visited:drop(active), button.link:visited:hover { + box-shadow: none; + background-color: rgba(211, 134, 155, 0.08); +} +button.link:visited:focus { + box-shadow: none; + background-color: rgba(211, 134, 155, 0.08); +} +button.link:visited:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(211, 134, 155, 0.12) 10%, transparent 0%); +} +button.link:disabled { + color: rgba(212, 190, 152, 0.5); +} +button.link > label { + text-decoration-line: underline; +} + +/** + * GtkSpinButton + */ +spinbutton:not(.vertical) { + padding: 0; +} +spinbutton:not(.vertical) entry { + min-width: 24px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} +spinbutton:not(.vertical) button { + border: solid 4px transparent; + background-clip: padding-box; +} +spinbutton:not(.vertical) button:focus:not(:hover):not(:active) { + background-color: transparent; +} +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -2px; +} +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -2px; +} +spinbutton.vertical { + caret-color: #7c6f64; +} +spinbutton.vertical:disabled { + color: rgba(212, 190, 152, 0.5); +} +spinbutton.vertical entry { + min-height: 32px; + min-width: 40px; + padding: 0; +} +spinbutton.vertical button { + min-height: 32px; + min-width: 40px; + padding: 0; +} +spinbutton.vertical button:focus:not(:hover):not(:active) { + background-color: transparent; +} +spinbutton.vertical button.up { + border-radius: 6px 6px 0 0; +} +spinbutton.vertical button.down { + border-radius: 0 0 6px 6px; +} +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 { + transition: -gtk-icon-transform 75ms cubic-bezier(0, 0, 0.2, 1); + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} +combobox button.combo:checked arrow { + -gtk-icon-transform: rotate(-0.5turn); +} +combobox decoration { + transition: none; +} +combobox cellview { + margin: -2px; +} +combobox button.combo cellview:dir(ltr) { + margin-left: -2px; +} +combobox button.combo cellview:dir(rtl) { + margin-right: -2px; +} +combobox menu { + padding: 2px 0; +} +combobox menu menuitem { + min-height: 28px; + padding: 0 8px; +} +combobox menu > arrow.top { + margin-top: -2px; +} +combobox menu > arrow.bottom { + margin-top: 4px; + margin-bottom: -6px; +} +combobox > .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -32px; + padding-right: 32px; +} +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -32px; + padding-left: 32px; +} +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 4px; + padding: 4px; + border-radius: 9999px; +} + +button.combo:only-child { + border-radius: 6px 6px 0 0; + font-weight: normal; + 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), #7c6f64 0%, transparent 0%) 2/0 0 0; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #7c6f64; +} +button.combo:only-child:focus { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +button.combo:only-child:drop(active), button.combo:only-child:hover { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.0784); +} +button.combo:only-child:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 0%) 2/0 0 2px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +button.combo:only-child:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +button.combo:only-child arrow { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +button.combo:only-child arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Toolbars + */ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; +} +toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { + border-radius: 0; +} +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:not(.inline-toolbar):not(.osd) scale, +toolbar:not(.inline-toolbar):not(.osd) entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton, +toolbar:not(.inline-toolbar):not(.osd) button { + margin: 2px; +} +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { + margin-left: 0; +} +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { + margin-right: 0; +} +toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton button { + margin: 0; +} +toolbar:not(.inline-toolbar):not(.osd) switch { + margin: 6px 2px; +} + +frame.documents-dropdown, .app-notification, toolbar.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px; + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +frame.documents-dropdown:backdrop, .app-notification:backdrop, toolbar.osd:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); +} + +.inline-toolbar { + padding: 4px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(212, 190, 152, 0.2); + background-color: #282828; + background-clip: padding-box; +} + +searchbar > revealer > box, +.location-bar { + padding: 4px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(212, 190, 152, 0.2); +} + +searchbar > revealer > box { + margin: -6px; + padding: 4px; +} + +/** + * Header bars + */ +.titlebar { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px 6px 0 0; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; + color: #ddc7a1; +} +.titlebar:disabled { + color: rgba(221, 199, 161, 0.5); +} +.titlebar:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +.titlebar:backdrop:disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar .title { + padding-left: 12px; + padding-right: 12px; + font-weight: bold; +} +.titlebar .subtitle { + padding-left: 12px; + padding-right: 12px; + font-size: smaller; +} +.titlebar .subtitle, +.titlebar .dim-label { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(221, 199, 161, 0.7); +} +.titlebar .subtitle:backdrop, +.titlebar .dim-label:backdrop { + color: rgba(221, 199, 161, 0.5); +} +.titlebar .titlebar { + background-color: transparent; + box-shadow: none; +} +.titlebar headerbar + separator { + background-color: rgba(221, 199, 161, 0.2); +} +.titlebar entry { + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.3); + background-color: rgba(221, 199, 161, 0.04); + color: #ddc7a1; +} +.titlebar entry:disabled { + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.2); + background-color: rgba(221, 199, 161, 0.04); + color: rgba(221, 199, 161, 0.5); +} +.titlebar entry image { + color: rgba(221, 199, 161, 0.7); +} +.titlebar entry image:hover, .titlebar entry image:active { + color: #ddc7a1; +} +.titlebar entry image:disabled { + color: rgba(221, 199, 161, 0.5); +} +.titlebar .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} +.titlebar button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 0%, transparent 0%) 0 0 0/0 0 0; + background-color: transparent; + color: rgba(221, 199, 161, 0.7); + box-shadow: none; + background-color: transparent; +} +.titlebar button:not(.suggested-action):not(.destructive-action):drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.titlebar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(221, 199, 161, 0.3); +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; + color: #ddc7a1; + box-shadow: none; + background-color: transparent; +} +.path-bar-box .nautilus-path-bar button:drop(active):not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:drop(active):not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .path-bar-box .nautilus-path-bar button:hover:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:hover:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):checked:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.path-bar-box .nautilus-path-bar button:focus:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:focus:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.path-bar-box .nautilus-path-bar button:active:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:active:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.path-bar-box .nautilus-path-bar button:disabled:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:disabled:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.5); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(221, 199, 161, 0.5); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(221, 199, 161, 0.7); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(221, 199, 161, 0.3); +} + +.titlebar button.suggested-action:disabled, .titlebar button.destructive-action:disabled { + background-color: rgba(221, 199, 161, 0.08); + color: rgba(221, 199, 161, 0.5); +} +.titlebar stackswitcher button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 104px; +} +.titlebar .path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; + padding-left: 4px; + padding-right: 4px; +} +.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); + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode .subtitle:link { + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 0%, transparent 0%) 0 0 0/0 0 0; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.38); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 100%, transparent 0%) 0 0 2/0 0 2px; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(255, 255, 255, 0.38); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.26); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.26); +} +.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"); +} +.titlebar .selection-mode { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #7c6f64; +} +.tiled .titlebar, .tiled-top .titlebar, .tiled-right .titlebar, .tiled-bottom .titlebar, .tiled-left .titlebar, .maximized .titlebar, .fullscreen .titlebar { + border-radius: 0; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +.titlebar.default-decoration { + min-height: 24px; + padding: 4px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} +.tiled .titlebar.default-decoration, .maximized .titlebar.default-decoration, .fullscreen .titlebar.default-decoration { + box-shadow: none; +} +.titlebar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} +.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: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +headerbar { + min-height: 40px; + padding: 0 4px; +} +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 4px; + margin-bottom: 4px; +} +headerbar separator.titlebutton { + margin-top: 10px; + margin-bottom: 10px; + background-color: rgba(221, 199, 161, 0.2); +} +headerbar switch { + margin-top: 8px; + margin-bottom: 8px; +} +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} +headerbar .entry-tag, headerbar .documents-entry-tag, headerbar .photos-entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +/** + * Pathbars + */ +.caja-pathbar button, +.path-bar.linked:not(.vertical) > button { + padding-left: 4px; + padding-right: 4px; + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 0%, transparent 0%) 0 0 0/0 0 0; + border-radius: 6px; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +.caja-pathbar button:drop(active), .caja-pathbar button:hover, +.path-bar.linked:not(.vertical) > button:drop(active), +.path-bar.linked:not(.vertical) > button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.caja-pathbar button:focus, +.path-bar.linked:not(.vertical) > button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.caja-pathbar button:active, +.path-bar.linked:not(.vertical) > button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +.caja-pathbar button:disabled, +.path-bar.linked:not(.vertical) > button:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +.caja-pathbar button:checked, +.path-bar.linked:not(.vertical) > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 0%) 0 0 2/0 0 2px; + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.caja-pathbar button:checked:drop(active), .caja-pathbar button:checked:hover, +.path-bar.linked:not(.vertical) > button:checked:drop(active), +.path-bar.linked:not(.vertical) > button:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.caja-pathbar button:checked:focus, +.path-bar.linked:not(.vertical) > button:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.caja-pathbar button:checked:active, +.path-bar.linked:not(.vertical) > button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.caja-pathbar button:checked:disabled, +.path-bar.linked:not(.vertical) > button:checked:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.5); +} +.caja-pathbar button label:not(:only-child):first-child, +.path-bar.linked:not(.vertical) > button label:not(:only-child):first-child { + margin-left: 0; +} +.caja-pathbar button label:not(:only-child):last-child, +.path-bar.linked:not(.vertical) > button label:not(:only-child):last-child { + margin-right: 0; +} +.caja-pathbar button.text-button, +.path-bar.linked:not(.vertical) > button.text-button { + min-width: 0; +} +.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(212, 190, 152, 0.3); + border-top-color: rgba(212, 190, 152, 0.2); +} +* { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ""; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ""; + -GtkTreeView-expander-size: 16; +} + +treeview.view:hover, treeview.view:selected { + border-radius: 0; +} +treeview.view.separator { + min-height: 5px; + color: rgba(212, 190, 152, 0.2); +} +treeview.view:drop(active) { + border-style: solid none; + border-width: 9999px; + border-color: rgba(212, 190, 152, 0.08); +} +treeview.view:drop(active).after { + border-top-style: none; +} +treeview.view:drop(active).before { + border-bottom-style: none; +} +treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(212, 190, 152, 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: #d4be98; +} +treeview.view.expander:disabled { + color: rgba(212, 190, 152, 0.3); +} +treeview.view.progressbar { + border-bottom: 4px solid #7c6f64; + background-color: transparent; +} +treeview.view.progressbar:selected:hover { + background-color: transparent; +} +treeview.view.trough { + border-bottom: 4px solid rgba(212, 190, 152, 0.2); + background-color: transparent; +} +treeview.view.trough:selected:hover { + background-color: transparent; +} +treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); + border-radius: 0; + background-clip: padding-box; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +treeview.view header button:drop(active), treeview.view header button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.04); +} +treeview.view header button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +treeview.view header button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +treeview.view header button:drop(active):not(:active), treeview.view header button:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +treeview.view header button:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +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(212, 190, 152, 0.2); + border-radius: 0; + box-shadow: none; + background-clip: padding-box; + background-color: #3C3836; + color: #7c6f64; +} +treeview.view acceleditor > label { + background-color: #7c6f64; +} + +/** + * Menus + */ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #32302f; + color: #ddc7a1; +} +menubar:backdrop, +.menubar:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +.csd menubar, +.csd .menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} +menubar > menuitem, +.menubar > menuitem { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(221, 199, 161, 0.7); +} +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(221, 199, 161, 0.3); +} + +.background.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 4px 0; + padding: 4px 0; + border: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; + color: #d4be98; + font: initial; + text-shadow: none; +} +.csd menu, +.csd .menu, +.csd .context-menu { + border: none; + border-radius: 6px; +} +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + min-width: 40px; + padding: 4px 8px; +} +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + transition: none; + background-color: rgba(212, 190, 152, 0.08); +} +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(212, 190, 152, 0.5); +} +menu menuitem arrow, +.menu menuitem arrow, +.context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; + color: rgba(212, 190, 152, 0.7); +} +menu menuitem arrow:disabled, +.menu menuitem arrow:disabled, +.context-menu menuitem arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +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: 8px; +} +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: 8px; +} +menu > arrow, +.menu > arrow, +.context-menu > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #3C3836; + color: rgba(212, 190, 152, 0.7); +} +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 6px 6px 0 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin-top: 8px; + margin-bottom: -12px; + border-top: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 0 0 6px 6px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(rgba(212, 190, 152, 0.08)); +} +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: 4px 0; +} + +menuitem accelerator { + color: rgba(212, 190, 152, 0.7); +} +menuitem:disabled accelerator { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Popovers + */ +popover.background { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; +} +popover.background:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +popover.background, .csd popover.background { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 7px; + background-clip: padding-box; +} +popover.background > stack { + margin: -4px; +} +popover.background > toolbar { + margin: -2px; +} +popover.background > list, +popover.background > .view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 6px; +} +popover.background separator { + margin: 4px 0; +} +popover.background list separator { + margin: 0; +} + +/** + * Notebooks + */ +notebook:focus > header > tabs > tab:checked { + background-color: rgba(124, 111, 100, 0.08); +} +notebook > header.top { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); +} +notebook > header.top > tabs > tab { + box-shadow: inset 0 -2px transparent; +} +notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -2px #7c6f64; +} +notebook > header.bottom { + box-shadow: inset 0 1px rgba(212, 190, 152, 0.2); +} +notebook > header.bottom > tabs > tab { + box-shadow: inset 0 2px transparent; +} +notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 2px #7c6f64; +} +notebook > header.left { + box-shadow: inset -1px 0 rgba(212, 190, 152, 0.2); +} +notebook > header.left > tabs > tab { + box-shadow: inset -2px 0 transparent; +} +notebook > header.left > tabs > tab:checked { + box-shadow: inset -2px 0 #7c6f64; +} +notebook > header.right { + box-shadow: inset 1px 0 rgba(212, 190, 152, 0.2); +} +notebook > header.right > tabs > tab { + box-shadow: inset 2px 0 transparent; +} +notebook > header.right > tabs > tab:checked { + box-shadow: inset 2px 0 #7c6f64; +} +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + border-radius: 0; + color: rgba(212, 190, 152, 0.7); +} +notebook > header > tabs > arrow:drop(active), notebook > header > tabs > arrow:hover { + background-color: rgba(212, 190, 152, 0.04); +} +notebook > header > tabs > arrow:focus { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > arrow:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +notebook > header > tabs > arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +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: 4px 16px; + outline: none; + background-image: radial-gradient(circle, #7c6f64 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +notebook > header > tabs > tab:hover { + background-color: rgba(212, 190, 152, 0.04); +} +notebook > header > tabs > tab:disabled { + color: rgba(212, 190, 152, 0.3); +} +notebook > header > tabs > tab: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); + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #7c6f64; +} +notebook > header > tabs > tab:checked:disabled { + color: rgba(212, 190, 152, 0.5); +} +notebook > header > tabs > tab:checked.dnd { + background-color: rgba(124, 111, 100, 0.08); +} +notebook > header > tabs > tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -4px -16px; + padding: 4px 16px; +} +notebook > header > tabs > tab > box:drop(active) { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > tab button.flat:last-child { + margin-left: 4px; + margin-right: -12px; +} +notebook > header > tabs > tab button.flat:first-child { + margin-left: -12px; + margin-right: 4px; +} + +/** + * Scrollbars + */ +scrollbar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-clip: padding-box; +} +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar.top { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.bottom { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.left { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.right { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 8px; + min-height: 8px; + border: 4px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(212, 190, 152, 0.5); +} +scrollbar slider:hover { + background-color: rgba(212, 190, 152, 0.6); +} +scrollbar slider:active { + background-color: rgba(212, 190, 152, 0.7); +} +scrollbar slider:disabled { + background-color: rgba(212, 190, 152, 0.3); +} +scrollbar.fine-tune slider { + min-width: 4px; + min-height: 4px; +} +scrollbar.fine-tune.horizontal slider { + margin: 2px 0; +} +scrollbar.fine-tune.vertical slider { + margin: 0 2px; +} +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: 3px; + border: 1px solid rgba(40, 40, 40, 0.3); +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(40, 40, 40, 0.3); + border-radius: 9999px; + background-color: rgba(212, 190, 152, 0.5); + background-clip: padding-box; + -gtk-icon-source: none; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(212, 190, 152, 0.3); +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + min-width: 24px; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + min-width: 8px; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + min-height: 24px; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + min-height: 8px; +} +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: #3C3836; +} +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: 4px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(212, 190, 152, 0.3); + background-clip: padding-box; + font-size: 0; +} +switch:checked { + background-color: rgba(124, 111, 100, 0.5); +} +switch:disabled { + opacity: 0.5; +} +switch image { + margin: -8px; + -gtk-icon-transform: scale(0); +} +switch slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + outline: none; + box-shadow: 0 0 0 10px transparent, 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #3C3836; +} +switch:hover slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +switch:focus slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +switch:checked slider { + background-color: #7c6f64; +} +switch:checked:hover slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +switch:checked:focus slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +/** + * Check and Radio items + */ +.view.content-view.check:not(list), +.content-view:not(list) check { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view:not(list) check:hover, +.content-view:not(list) check:active { + -gtk-icon-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 4px 3px rgba(0, 0, 0, 0.14), 0 1px 6px rgba(0, 0, 0, 0.12); +} +.view.content-view.check:not(list), +.content-view:not(list) check { + -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:not(list) check: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: 24px; + min-width: 24px; + margin: -8px; + padding: 8px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); +} +check:drop(active), check:hover, +radio:drop(active), +radio:hover { + background-color: rgba(212, 190, 152, 0.08); +} +check:focus, +radio:focus { + background-color: rgba(212, 190, 152, 0.08); +} +check:active, +radio:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #7c6f64; +} +check:checked:drop(active), check:checked:hover, check:indeterminate:drop(active), check:indeterminate:hover, +radio:checked:drop(active), +radio:checked:hover, +radio:indeterminate:drop(active), +radio:indeterminate:hover { + background-color: rgba(124, 111, 100, 0.08); +} +check:checked:focus, check:indeterminate:focus, +radio:checked:focus, +radio:indeterminate:focus { + background-color: rgba(124, 111, 100, 0.08); +} +check:checked:active, check:indeterminate:active, +radio:checked:active, +radio:indeterminate:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +check:disabled, +radio:disabled { + color: rgba(212, 190, 152, 0.3); +} +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; + background-color: transparent; + background-image: none; +} +popover modelbutton.flat check.left:dir(rtl), +popover modelbutton.flat radio.left:dir(rtl) { + margin-left: -12px; + margin-right: -4px; +} +popover modelbutton.flat check.right:dir(ltr), +popover modelbutton.flat radio.right:dir(ltr) { + margin-left: -4px; + margin-right: -12px; +} +menu menuitem check, +menu menuitem radio { + transition: none; + margin: 0; + padding: 0; +} +menu menuitem check:dir(ltr), +menu menuitem radio:dir(ltr) { + margin-right: 8px; +} +menu menuitem check:dir(rtl), +menu menuitem radio:dir(rtl) { + margin-left: 8px; +} +menu menuitem check:hover, menu menuitem check:focus, menu menuitem check:checked:hover, menu menuitem check:checked:focus, menu menuitem check:indeterminate:hover, menu menuitem check:indeterminate:focus, +menu menuitem radio:hover, +menu menuitem radio:focus, +menu menuitem radio:checked:hover, +menu menuitem radio:checked:focus, +menu menuitem radio:indeterminate:hover, +menu menuitem radio:indeterminate:focus { + background-color: transparent; +} + +check { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-unchecked-symbolic.svg")); +} +check:checked { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-checked-symbolic.svg")); +} +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-mixed-symbolic.svg")); +} + +radio { + -gtk-icon-source: -gtk-recolor(url("icons/radio-unchecked-symbolic.svg")); + border-image-slice: 20; + border-image-width: 20px; + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#7c6f64), to(transparent)); +} +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/radio-mixed-symbolic.svg")); +} +radio:checked:not(:indeterminate) { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(#7c6f64), to(transparent)); +} +radio:checked:not(:indeterminate):disabled { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(rgba(212, 190, 152, 0.3)), to(transparent)); +} + +#MozillaGtkWidget > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; + border-radius: 6px; + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-unchecked-symbolic.svg")); +} +#MozillaGtkWidget > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-checked-symbolic.svg")); +} +#MozillaGtkWidget > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-unchecked-symbolic.svg")); +} +#MozillaGtkWidget > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-checked-symbolic.svg")); +} +#MozillaGtkWidget > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-mixed-symbolic.svg")); +} + +treeview.view check, +treeview.view radio { + padding: 0; + color: rgba(212, 190, 152, 0.7); +} +treeview.view check:checked, treeview.view check:indeterminate, +treeview.view radio:checked, +treeview.view radio:indeterminate { + color: #7c6f64; +} +treeview.view check:disabled, +treeview.view radio:disabled { + color: rgba(212, 190, 152, 0.3); +} +treeview.view check, treeview.view check:hover, treeview.view check:selected, treeview.view check:selected:hover, +treeview.view radio, +treeview.view radio:hover, +treeview.view radio:selected, +treeview.view radio:selected:hover { + box-shadow: none; + background-color: transparent; +} + +treeview.view radio:checked { + -gtk-icon-source: -gtk-recolor(url("icons/radio-checked-symbolic.svg")); + border-image: none; +} + +/** + * GtkScale + */ +scale { + min-height: 2px; + min-width: 2px; +} +scale.horizontal { + padding: 15px 12px; +} +scale.vertical { + padding: 12px 15px; +} +scale slider { + min-height: 32px; + min-width: 32px; + margin: -15px; +} +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 14px; + padding-bottom: 14px; +} +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 14px; + padding-right: 14px; +} +scale.fine-tune slider { + margin: -14px; +} +scale trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(212, 190, 152, 0.3); +} +scale trough:disabled { + background-color: rgba(212, 190, 152, 0.2); +} +scale highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); + background-image: image(#7c6f64); +} +scale highlight:disabled { + background-color: #282828; + background-image: image(rgba(212, 190, 152, 0.3)); +} +scale fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(212, 190, 152, 0.3); +} +scale fill:disabled { + background-color: transparent; +} +scale 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); + background-repeat: no-repeat; + background-position: center; + background-size: auto, 1000% 1000%; + border-radius: 50%; + color: #7c6f64; +} +scale slider { + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} +scale slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} +scale slider:hover { + background-color: rgba(124, 111, 100, 0.08); +} +scale slider:focus { + background-color: rgba(124, 111, 100, 0.08); +} +scale 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-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); + background-size: auto, 0% 0%; +} +scale marks, +scale value { + color: rgba(212, 190, 152, 0.7); +} +scale indicator { + background-color: rgba(212, 190, 152, 0.3); + 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 { + 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, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +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, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +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, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +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, rgba(124, 111, 100, 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: -24px; + margin-top: 8px; +} +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} +scale.color.vertical:dir(ltr) slider { + margin-left: -24px; + margin-right: 8px; +} +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} +scale.color.vertical:dir(rtl) slider { + margin-right: -24px; + margin-left: 8px; +} + +/** + * Progress bars + */ +progressbar { + color: rgba(212, 190, 152, 0.7); + font-size: smaller; +} +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 4px; +} +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 4px; +} +progressbar trough { + background-color: rgba(212, 190, 152, 0.2); +} +progressbar progress { + background-color: #7c6f64; +} +progressbar trough.empty progress { + all: unset; +} + +/** + * Level Bar + */ +levelbar.horizontal block { + min-height: 4px; +} +levelbar.horizontal.discrete block { + min-width: 32px; +} +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} +levelbar.vertical block { + min-width: 4px; +} +levelbar.vertical.discrete block { + min-height: 32px; +} +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} +levelbar block.low { + background-color: #d8a657; +} +levelbar block.high, levelbar block:not(.empty) { + background-color: #7c6f64; +} +levelbar block.full { + background-color: #a9b665; +} +levelbar block.empty { + background-color: rgba(212, 190, 152, 0.2); +} + +/** + * Print dialog + */ +printdialog paper { + padding: 0; + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-color: #282828; + color: #d4be98; +} +printdialog .dialog-action-box { + margin: 12px; +} + +/** + * Frames + */ +frame > border, +.frame { + margin: 0; + padding: 0; + border: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 0; + box-shadow: none; + background-clip: padding-box; + background-color: #282828; +} +frame > border.flat, +.frame.flat { + border-style: none; + background-color: transparent; +} + +frame.flat > border { + border-style: none; + background-color: transparent; +} + +actionbar > revealer > box { + padding: 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +actionbar > revealer > box .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} + +scrolledwindow viewport.frame { + border-style: none; + background-color: transparent; +} +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(124, 111, 100, 0.24)), to(transparent)); + 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.75, to(rgba(124, 111, 100, 0.24)), to(transparent)); + 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.75, to(rgba(124, 111, 100, 0.24)), to(transparent)); + 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.75, to(rgba(124, 111, 100, 0.24)), to(transparent)); + 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(212, 190, 152, 0.2); +} +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(212, 190, 152, 0.2); +} + +.tweak-categories separator, preferences stacksidebar.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 + */ +list { + border-color: rgba(212, 190, 152, 0.2); +} +list row { + padding: 2px; +} + +row { + background-clip: padding-box; +} +row.activatable:drop(active), row.activatable:hover { + background-color: rgba(212, 190, 152, 0.04); +} +row.activatable:focus { + background-color: rgba(212, 190, 152, 0.08); +} +row.activatable:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +row.activatable:drop(active):not(:active), row.activatable:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +row.activatable.has-open-popup { + background-color: rgba(212, 190, 152, 0.12); +} +row:selected { + background-color: rgba(124, 111, 100, 0.6); +} +row:selected:drop(active), row:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +row:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +row:selected.has-open-popup { + background-color: rgba(124, 111, 100, 0.648); +} + +/** + * App Notifications + */ +.app-notification { + margin: 8px; +} +.app-notification button.text-button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.app-notification button.text-button:not(:disabled):drop(active), .app-notification button.text-button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.app-notification button.text-button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.app-notification button.text-button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.app-notification.frame { + border-style: none; +} +.app-notification border { + border-style: none; + background-color: transparent; +} + +/** + * 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"); + color: rgba(212, 190, 152, 0.7); +} +expander title > arrow:checked:dir(ltr) { + -gtk-icon-transform: rotate(-180deg); +} +expander title > arrow:checked:dir(rtl) { + -gtk-icon-transform: rotate(180deg); +} +expander title > arrow:hover, expander title > arrow:active { + color: #d4be98; +} +expander title > arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Calendar + */ +calendar { + padding: 1px; + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-color: #282828; + color: #d4be98; +} +calendar:disabled { + color: rgba(212, 190, 152, 0.5); +} +calendar:selected { + border-radius: 7px; + background-color: rgba(124, 111, 100, 0.6); +} +calendar.header { + border-style: none none solid; + border-color: rgba(212, 190, 152, 0.2); + border-radius: 0; +} +calendar.button { + border-radius: 7px; + color: rgba(212, 190, 152, 0.7); +} +calendar.button:hover { + background-image: image(rgba(212, 190, 152, 0.08)); +} +calendar.button:disabled { + color: rgba(212, 190, 152, 0.3); +} +calendar.highlight { + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +calendar:indeterminate { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Dialogs + */ +messagedialog.background { + background-color: #3C3836; +} +messagedialog .titlebar { + min-height: 24px; + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; + color: #d4be98; +} +messagedialog .titlebar:backdrop { + background-color: #3C3836; + color: rgba(212, 190, 152, 0.7); +} +messagedialog.csd.background { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} +messagedialog box.vertical > label + label { + color: rgba(212, 190, 152, 0.7); +} +messagedialog .dialog-action-box { + margin-top: -4px; +} +messagedialog .dialog-action-box button:not(:last-child) { + margin-right: 4px; +} +messagedialog .dialog-action-box button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +messagedialog .dialog-action-box button:not(:disabled):drop(active), messagedialog .dialog-action-box button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +messagedialog .dialog-action-box button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +messagedialog .dialog-action-box button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +messagedialog .dialog-action-box button.destructive-action:not(:disabled) { + color: #ea6962; + box-shadow: none; + background-color: transparent; +} +messagedialog .dialog-action-box button.destructive-action:not(:disabled):drop(active), messagedialog .dialog-action-box button.destructive-action:not(:disabled):hover { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.12); +} +messagedialog .dialog-action-box button.destructive-action:not(:disabled):focus { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.12); +} +messagedialog .dialog-action-box button.destructive-action:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 0%); +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +filechooser #pathbarbox { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +filechooser #pathbarbox > stack > box > button { + border-radius: 9999px; +} + +/** + * Sidebar + */ +.sidebar { + border-style: none; + background-color: transparent; +} +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) { + border-right: 1px solid rgba(212, 190, 152, 0.2); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { + border-left: 1px solid rgba(212, 190, 152, 0.2); + border-right-style: none; +} + +paned .sidebar, paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr) { + border-style: none; +} + +stacksidebar.sidebar list { + padding: 4px; +} +stacksidebar.sidebar row { + min-height: 32px; + padding: 0 2px; + border-radius: 6px; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +stacksidebar.sidebar row:selected { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); +} +stacksidebar.sidebar row:selected:drop(active), stacksidebar.sidebar row:selected:hover { + background-color: rgba(124, 111, 100, 0.1552); +} +stacksidebar.sidebar row:selected:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +stacksidebar.sidebar row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +stacksidebar.sidebar row + row { + margin-top: 4px; +} +stacksidebar.sidebar row > label { + padding-left: 6px; + padding-right: 6px; +} +separator.sidebar { + background-color: rgba(212, 190, 152, 0.2); +} +/** + * File chooser + */ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +row image.sidebar-icon:disabled { + color: rgba(212, 190, 152, 0.3); +} + +placessidebar.sidebar > viewport.frame { + border-style: none; + background-color: transparent; +} +placessidebar.sidebar list { + padding: 1px 0 4px; +} +placessidebar.sidebar row { + min-height: 32px; + margin: -1px 4px; + padding: 0; + border-radius: 6px; +} +placessidebar.sidebar row > revealer { + padding: 0 8px; +} +placessidebar.sidebar row:selected { + color: #7c6f64; + font-weight: 500; + background-color: rgba(124, 111, 100, 0.12); +} +placessidebar.sidebar row:selected:drop(active), placessidebar.sidebar row:selected:hover { + background-color: rgba(124, 111, 100, 0.1552); +} +placessidebar.sidebar row:selected:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +placessidebar.sidebar row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +placessidebar.sidebar row:selected image.sidebar-icon { + color: #7c6f64; +} +placessidebar.sidebar row:disabled { + color: rgba(212, 190, 152, 0.5); +} +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:dir(ltr) { + padding-right: 2px; +} +placessidebar.sidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} +placessidebar.sidebar row.sidebar-placeholder-row { + background-color: rgba(212, 190, 152, 0.08); +} +placessidebar.sidebar row.sidebar-new-bookmark-row { + color: #7c6f64; +} +placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #7c6f64; +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(-0.5turn); +} +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(0turn); +} +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(212, 190, 152, 0.2)); + background-size: 1px 1px; + background-clip: content-box; +} +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-image: image(rgba(212, 190, 152, 0.2)), image(rgba(212, 190, 152, 0.2)); + 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-style: none; +} +infobar.action:hover > revealer > box { + background-image: image(rgba(212, 190, 152, 0.08)); +} +infobar.info > revealer > box, infobar.question > revealer > box { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +infobar.info > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button.text-button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +infobar.info > revealer > box button.text-button:not(:disabled):drop(active), infobar.info > revealer > box button.text-button:not(:disabled):hover, infobar.question > revealer > box button.text-button:not(:disabled):drop(active), infobar.question > revealer > box button.text-button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +infobar.info > revealer > box button.text-button:not(:disabled):focus, infobar.question > revealer > box button.text-button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +infobar.info > revealer > box button.text-button:not(:disabled):active, infobar.question > revealer > box button.text-button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +infobar.warning > revealer > box { + background-color: #d8a657; + color: #000; +} +infobar.warning > revealer > box button.flat { + color: #000; + box-shadow: none; + background-color: transparent; +} +infobar.warning > revealer > box button.flat:drop(active), infobar.warning > revealer > box button.flat:hover { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +infobar.warning > revealer > box button.flat:focus { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +infobar.warning > revealer > box button.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +infobar.warning > revealer > box *:link { + color: #000; +} +infobar.error > revealer > box { + background-color: #ea6962; + color: #000; +} +infobar.error > revealer > box button.flat { + color: #000; + box-shadow: none; + background-color: transparent; +} +infobar.error > revealer > box button.flat:drop(active), infobar.error > revealer > box button.flat:hover { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +infobar.error > revealer > box button.flat:focus { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +infobar.error > revealer > box button.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +infobar.error > revealer > box *:link { + color: #000; +} +infobar button label { + margin: 0 -4px; +} + +/** + * Tooltips + */ +tooltip { + border-radius: 6px; + box-shadow: none; +} +tooltip.background { + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} +tooltip decoration { + background-color: transparent; +} +tooltip > box { + margin: -6px; + min-height: 24px; + padding: 4px 8px; +} +tooltip .dim-label { + color: rgba(221, 199, 161, 0.7); +} +/** + * Color Chooser + */ +colorswatch.top { + border-top-left-radius: 6.5px; + border-top-right-radius: 6.5px; +} +colorswatch.top overlay { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} +colorswatch.bottom { + border-bottom-left-radius: 6.5px; + border-bottom-right-radius: 6.5px; +} +colorswatch.bottom overlay { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 6.5px; + border-bottom-left-radius: 6.5px; +} +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: 6.5px; + border-bottom-right-radius: 6.5px; +} +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +colorswatch.dark { + color: #fff; +} +colorswatch.light { + color: #000; +} +colorswatch overlay { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +colorswatch overlay:drop(active), colorswatch overlay:hover { + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +colorswatch#add-color-button { + border-radius: 6px 6px 0 0; + color: #d4be98; +} +colorswatch#add-color-button:only-child { + border-radius: 6px; +} +colorswatch#add-color-button overlay { + background-color: #3C3836; +} +colorswatch:disabled { + opacity: 0.5; +} +colorswatch:disabled overlay { + box-shadow: none; +} +colorswatch#editor-color-sample { + border-radius: 6.5px; +} +colorswatch#editor-color-sample overlay { + border-radius: 6px; +} +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); +} + +/** + * Misc + */ +/** + * Window Decorations + */ +decoration { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px 6px 0 0; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent; + margin: 8px; +} +decoration:backdrop { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px 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; +} +.ssd decoration { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} +.csd.popup decoration { + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); +} +tooltip.csd decoration { + border-radius: 6px; + box-shadow: none; +} +messagedialog.csd decoration { + border-radius: 6px; +} +.solid-csd decoration { + margin: 0; + padding: 2px; + border-radius: 0; + box-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; +} +.solid-csd decoration:backdrop { + background-color: #282625; +} + +button.titlebutton { + border-radius: 9999px; +} +.monospace { + font-family: monospace; +} + +/** + * Touch Copy & Paste + */ +cursor-handle { + color: #7c6f64; + -gtk-icon-source: -gtk-recolor(url("icons/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: 28px; + padding-left: 8px; + padding-right: 8px; + border-radius: 6px; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #3C3836; + color: #d4be98; + font-size: smaller; +} + +shortcut:last-child { + margin-bottom: 4px; +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/** + * App Icons + */ +/** + * Emoji + */ +popover.emoji-picker { + padding: 0; +} +popover.emoji-picker entry { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +button.emoji-section { + margin: 4px; +} +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: rgba(212, 190, 152, 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: rgba(212, 190, 152, 0.08); +} + +/** + * libhandy + */ +popover.combo { + padding: 8px 0; +} +popover.combo list { + border-style: none; + background-color: transparent; +} +popover.combo list > row { + min-height: 32px; + padding: 0 12px; +} +keypad .digit { + font-size: 200%; + font-weight: bold; +} +keypad .letters { + font-size: 70%; +} +keypad .symbol { + font-size: 160%; +} + +viewswitcher button { + margin: 0; + padding: 0; + border-radius: 0; +} +viewswitcher button > stack > box.narrow image, +viewswitcher button > stack > box.narrow label { + padding-left: 8px; + padding-right: 8px; +} +viewswitcher button > stack > box.wide { + padding: 8px 12px; +} +viewswitcher button > stack > box.wide label:dir(ltr) { + padding-right: 8px; +} +viewswitcher button > stack > box.wide label:dir(rtl) { + padding-left: 8px; +} +list.content { + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-color: #282828; +} +list.content > row:not(:first-child) { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right) headerbar { + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right) > decoration-overlay { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right), +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right) > decoration, +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right) > decoration-overlay { + border-radius: 6px; +} + +/** + * Nautilus + */ +.nautilus-canvas-item.dim-label, +.nautilus-list-dim-label { + color: rgba(212, 190, 152, 0.7); +} + +@keyframes nautilus-operations-button-needs-attention { + to { + background-color: rgba(221, 199, 161, 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; +} + +.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):not(:only-child).disclosure-button { + border-radius: 9999px; +} + +.path-bar-box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + border-radius: 6px; +} +.path-bar-box button { + margin: 0; +} +.path-bar-box.width-maximized { + background-color: rgba(221, 199, 161, 0.04); +} +.path-bar-box.background.frame { + border-style: none; + background-color: rgba(221, 199, 161, 0.04); +} +.path-bar-box .path-bar button label:not(:only-child):first-child { + margin-left: 0; +} +.path-bar-box .path-bar button label:not(:only-child):last-child { + margin-right: 0; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action) { + padding-left: 4px; + padding-right: 4px; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):first-child { + margin-left: 0; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):last-child { + margin-right: 0; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button.image-button image:not(:only-child) { + margin: 0; +} +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + border-style: solid solid none; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); + border-radius: 7px 7px 0 0; + background-clip: padding-box; + background-color: #3C3836; +} +.nautilus-window .floating-bar.bottom.left { + margin-right: 7px; + border-left-style: none; + border-top-left-radius: 0; +} +.nautilus-window .floating-bar.bottom.right { + margin-left: 7px; + border-right-style: none; + border-top-right-radius: 0; +} +.nautilus-window .floating-bar button { + margin: 4px; +} + +.disk-space-display.unknown { + background-color: rgba(212, 190, 152, 0.3); + color: rgba(212, 190, 152, 0.3); +} +.disk-space-display.used { + background-color: #7c6f64; + color: #7c6f64; +} +.disk-space-display.free { + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.08); +} + +.nautilus-empty-state-icon + .large-title { + color: rgba(212, 190, 152, 0.7); +} + +.search-information { + padding: 2px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +.conflict-row:not(:selected) { + background-color: #5d4e36; +} + +.nautilus-window flowboxchild .icon-item-background { + padding: 4px; + border-radius: 6px; +} +.nautilus-window flowboxchild:selected { + background-color: transparent; +} +.nautilus-window flowboxchild:selected .icon-item-background { + background-color: rgba(124, 111, 100, 0.6); +} + +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(212, 190, 152, 0.2); +} +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(212, 190, 152, 0.7); +} + +.nautilus-window headerbar revealer > button { + border-radius: 9999px; +} + +.nautilus-window paned > separator { + background-color: #282828; +} + +/** + * gedit + */ +.open-document-selector-path-label { + color: rgba(212, 190, 152, 0.7); + font-size: smaller; +} + +.open-document-selector-match { + background-color: #d8a657; + color: #000; +} + +.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(212, 190, 152, 0.2); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} + +.gedit-search-slider { + margin: 4px 4px 8px; +} +.gedit-search-slider .linked:not(.vertical) > entry { + border-radius: 6px; +} +.gedit-search-slider .linked:not(.vertical) > entry .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(212, 190, 152, 0.7); +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) { + margin-right: -60px; + padding-right: 60px; +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 4px; +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) image.right { + margin-right: 0; +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) { + margin-left: -60px; + padding-left: 60px; +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 4px; +} +.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: #3C3836; +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button { + color: rgba(0, 0, 0, 0.7); + box-shadow: none; + background-color: transparent; +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:drop(active), .gedit-search-slider .linked:not(.vertical) > entry.error ~ button:hover { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:focus { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:disabled { + color: rgba(0, 0, 0, 0.3); +} +.gedit-search-slider .linked:not(.vertical) > button { + border: solid 4px transparent; + border-radius: 9999px; + background-clip: padding-box; +} +.gedit-search-slider .linked:not(.vertical) > button:last-child:dir(ltr), .gedit-search-slider .linked:not(.vertical) > button:not(:first-child):dir(rtl) { + margin-left: -2px; +} +.gedit-search-slider .linked:not(.vertical) > button:first-child:dir(rtl), .gedit-search-slider .linked:not(.vertical) > button:not(:last-child):dir(ltr) { + margin-right: -2px; +} + +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 + */ +.tweak-categories { + background-image: image(#282828); +} +.tweak { + padding: 3px; +} +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#282828); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#282828); +} + +.tweak-group-startup { + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-image: image(#282828); +} + +row#Focus, +row#ClickMethod, +row#StaticWorkspaceTweak, +row#dynamic-workspaces, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + padding: 0; + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-image: image(#282828); +} +row#Focus row:not(:last-child), +row#ClickMethod row:not(:last-child), +row#StaticWorkspaceTweak row:not(:last-child), +row#dynamic-workspaces row:not(:last-child), +row#PrimaryWorkspaceTweak row:not(:last-child), +row#workspaces-only-on-primary row:not(:last-child) { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +row#Focus.tweak > list, +row#ClickMethod.tweak > list, +row#StaticWorkspaceTweak.tweak > list, +row#dynamic-workspaces.tweak > list, +row#PrimaryWorkspaceTweak.tweak > list, +row#workspaces-only-on-primary.tweak > list { + margin-top: -3px; +} + +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); +} +leaflet.titlebar > .titlebar.tweak-titlebar-left + separator, +leaflet.titlebar > .titlebar.tweak-titlebar-right + separator, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-left + separator, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-right + separator { + background-color: inherit; + background-image: image(rgba(221, 199, 161, 0.2)); +} + +/** + * Builder + */ +layouttabbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + background-color: #282828; +} +layouttabbar > box > button { + margin: 4px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); + box-shadow: inset 0 -2px #7c6f64; + background-color: #282828; +} +layouttab separator.vertical { + margin: 8px 4px; +} +layouttab button, layouttab button.text-button, layouttab button.image-button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} +layout { + border: 1px solid rgba(212, 190, 152, 0.2); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #ea6962; + color: #000; +} + +window.workbench treeview.image { + color: rgba(212, 190, 152, 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 entry { + color: rgba(212, 190, 152, 0.7); +} + +popover.omnibar list row:not(:last-child) { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +entry.preferences-search { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: none; + background-color: transparent; +} +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(212, 190, 152, 0.2); +} +preferences > box > box:dir(rtl) { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} + +popover.messagepopover.background { + padding: 0; +} +popover.messagepopover .popover-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(212, 190, 152, 0.2); + 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(212, 190, 152, 0.2); +} +popover.transfers list row > box { + padding: 10px; +} + +dockbin { + border: 1px solid rgba(212, 190, 152, 0.2); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(212, 190, 152, 0.2); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + background-color: #282828; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + background-color: #282828; +} + +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: 4px 6px; + border-width: 1px; + border-color: transparent; + box-shadow: inset 0 -2px transparent; + background-image: radial-gradient(circle, #7c6f64 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +docktab:hover { + background-color: rgba(212, 190, 152, 0.08); +} +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 #7c6f64; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #d4be98; +} + +dockoverlayedge { + background-color: #282828; +} +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #7c6f64; +} +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #7c6f64; +} + +pillbox { + background-color: #282828; + border-radius: 6px; +} + +layoutpane entry.search { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: none; + background-color: #282828; +} + +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: 8px; + padding-right: 8px; +} + +button.dzlmenubutton image { + min-width: 26px; +} +button.dzlmenubutton image.arrow { + min-width: 23px; +} + +button.dzlmenubuttonitem { + color: #d4be98; + font-weight: normal; +} +button.dzlmenubuttonitem:disabled { + color: rgba(212, 190, 152, 0.5); +} + +idelayoutstackheader { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +idelayoutstackheader button:checked { + color: #d4be98; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher { + padding: 8px 0; + background-color: #282828; +} +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +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(124, 111, 100, 0.7) 10%, transparent 0%); +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { + background-color: transparent; + color: #d4be98; +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { + margin-right: -1px; +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { + box-shadow: inset -2px 0 #7c6f64; +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { + margin-left: -1px; +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { + box-shadow: inset 2px 0 #7c6f64; +} + +ideeditorsidebar notebook header { + background: transparent; +} + +popover.messagepopover list { + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; +} +popover.messagepopover list row:not(:last-child) { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +dzlsuggestionpopover > revealer > box > elastic > scrolledwindow > viewport > list > row:selected { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +#titlebar_container .suggestionbutton button { + padding: 0; + border-radius: 0; + box-shadow: inset 0 0 0 9999px #32302f; +} +#titlebar_container .suggestionbutton button:backdrop { + box-shadow: inset 0 0 0 9999px #282625; +} +#titlebar_container .suggestionbutton button image { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1), background-color 225ms cubic-bezier(0, 0, 0.2, 1); + min-width: 32px; + min-height: 32px; + border-radius: 9999px; + box-shadow: inset 0 0 0 9999px transparent; +} +#titlebar_container .suggestionbutton button:hover image { + box-shadow: inset 0 0 0 9999px rgba(221, 199, 161, 0.08); +} +#titlebar_container .suggestionbutton button:focus image { + box-shadow: inset 0 0 0 9999px rgba(221, 199, 161, 0.08); +} +#titlebar_container .suggestionbutton button:active image { + background-color: rgba(221, 199, 161, 0.12); +} + +/** + * Photos + */ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; + background-color: transparent; +} +.documents-scrolledwin.frame frame.content-view > border { + border-style: none; + background-color: transparent; +} + +.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: #d4be98; + font-weight: normal; +} +button.photos-filter-preview:checked { + background-color: rgba(124, 111, 100, 0.6); + color: #d4be98; +} +button.photos-filter-preview:checked image { + color: #fff; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +overlay grid.horizontal > revealer > scrolledwindow.frame { + border-style: none; + background-color: transparent; +} +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-left-style: solid; +} +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-right-style: solid; +} + +/** + * Music + */ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(212, 190, 152, 0.2); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(212, 190, 152, 0.2); +} + +.side-panel .view { + background-image: image(#282828); +} +.side-panel .view:hover { + background-image: image(#363431); +} + +.side-panel .view:selected { + background-image: image(#7c6f64); +} +.side-panel .view:selected:hover { + background-image: image(#867b70); +} + +.songs-list:hover { + background-image: image(rgba(212, 190, 152, 0.08)); +} + +frame.documents-dropdown { + margin: 8px; +} +frame.documents-dropdown > border { + border: none; +} + +box.vertical > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +box.vertical > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/** + * Terminal + */ +terminal-window notebook > header > box { + margin: -2px; +} +terminal-window notebook > header > box button { + border-radius: 0; +} + +/** + * 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: -4px; +} +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: -4px; +} +tasklistview > box > revealer > box > button .dim-label { + color: inherit; +} + +/** + * eog + */ +#eog-thumb-nav scrolledwindow.frame { + border-top: none; +} + +/** + * Evolution + */ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/** + * gitg + */ +frame.commit-frame > border { + border-style: solid none none; +} + +/** + * Characters + */ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-color: #282828; +} + +list.categories { + background-image: image(#282828); +} + +/** + * Boxes + */ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 6px; + background-color: black; + color: rgba(255, 255, 255, 0.87); +} + +/** + * Evince + */ +evview.content-view.view:selected { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} + +/** + * Polari + */ +.polari-room-list row:selected { + background-color: rgba(124, 111, 100, 0.5); +} + +/** + * Fractal + */ +button.osd.scroll_button { + margin: 4px; +} + +/** + * Mines + */ +grid.minefield > button.tile { + border-style: solid; +} + +/** + * 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 14.4px 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(#3C3836); +} + +.terminal-titlebar button { + border-radius: 0; +} + +button.image-button.session-new-button { + min-width: 28px; +} + +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: #282828; +} +.terminator-terminal-window notebook.frame { + border-style: none; + background-color: transparent; +} + +/** + * Ubitquity + */ +#live_installer .menubar progressbar trough { + border-radius: 4px; + background-color: rgba(221, 199, 161, 0.2); +} + +/** + * 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; +} + +/** + * FileZilla + */ +window.background > box.vertical > widget > widget > widget > widget > widget > widget > widget > scrolledwindow > widget > entry { + all: unset; + padding: 5px; + box-shadow: inset 0 0 0 1px rgba(124, 111, 100, 0.6); + background-color: #282828; +} +window.background > box.vertical > widget > widget > widget > widget > widget > widget > widget > scrolledwindow > widget > widget > entry { + all: unset; + padding: 0 3px 1px; + box-shadow: inset 0 0 0 1px rgba(124, 111, 100, 0.6); + background-color: #282828; +} + +/** + * Chromium + */ +window.background.chromium { + background-color: #3C3836; +} +window.background.chromium entry, +window.background.chromium > button { + border: 1px solid rgba(212, 190, 152, 0.3); +} +window.background.chromium > button { + color: #7c6f64; + border-color: #6a6053; +} +window.background.chromium > button:disabled { + color: rgba(212, 190, 152, 0.3); +} +window.background.chromium menubar, +window.background.chromium headerbar { + color: rgba(221, 199, 161, 0.7); +} +window.background.chromium headerbar button:active { + background-color: rgba(221, 199, 161, 0.12); +} +window.background.chromium textview.view { + background-color: transparent; +} +window.background.chromium treeview.view.cell:selected:focus { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +window.background.chromium treeview.view button { + border: 1px solid rgba(212, 190, 152, 0.3); + background-color: #282828; +} + +tooltip.background.chromium { + background-color: #32302f; +} + +/** + * Firefox + */ +#MozillaGtkWidget > widget text { + background-color: #3C3836; +} +#MozillaGtkWidget > widget text:selected { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +#MozillaGtkWidget > widget > separator { + color: rgba(212, 190, 152, 0.2); +} +#MozillaGtkWidget > widget > frame > border { + border-color: #5c554a; +} +#MozillaGtkWidget > widget > entry, +#MozillaGtkWidget > widget > button > button { + border: 1px solid rgba(212, 190, 152, 0.3); + border-radius: 6px; + box-shadow: none; +} +#MozillaGtkWidget > widget > entry:disabled, +#MozillaGtkWidget > widget > button > button:disabled { + border-color: rgba(212, 190, 152, 0.2); +} +#MozillaGtkWidget > widget > entry { + min-height: 30px; + background-color: #282828; +} +#MozillaGtkWidget > widget > entry:focus { + border-color: #7c6f64; + box-shadow: inset 0 0 0 1px #7c6f64; +} +#MozillaGtkWidget > widget > entry:disabled { + background-color: #282828; +} +#MozillaGtkWidget > widget > button > button { + padding: 4px 8px; +} +#MozillaGtkWidget > widget > button > button:active { + background-size: 1000% 1000%; +} +#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: #757575; +} +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):disabled, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):disabled { + color: rgba(117, 117, 117, 0.5); +} +#MozillaGtkWidget menuitem label:disabled { + color: rgba(212, 190, 152, 0.5); +} + +#MozillaGtkWidget > widget > menubar { + color: rgba(221, 199, 161, 0.7); +} +#MozillaGtkWidget > widget > menubar:hover { + color: #ddc7a1; +} +#MozillaGtkWidget > widget > menubar:disabled { + color: rgba(221, 199, 161, 0.3); +} +#MozillaGtkWidget > widget > frame { + color: rgba(212, 190, 152, 0.3); +} +#MozillaGtkWidget menu > separator { + color: rgba(212, 190, 152, 0.2); +} + +/** + * 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; + border-radius: 6px; +} +#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; + border-radius: 6px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} + +#Canvas_and_Dock frame > border { + border: none; + background-color: transparent; +} +#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; +} + +/** + * Synapse + */ +box.vertical > widget > widget:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +/** + * 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: #7c6f64; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0; +} +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 6px 6px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; + color: #ddc7a1; +} +UnityDecoration .top:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +UnityDecoration .menuitem { + border-radius: 6px 6px 0 0; + box-shadow: none; + color: rgba(221, 199, 161, 0.7); +} +UnityDecoration .menuitem:hover { + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #1e1c1b; + color: #ddc7a1; +} +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(221, 199, 161, 0.7); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(221, 199, 161, 0.7); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #7c6f64; +} + +/** + * Mate-Panel + */ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: #1e1c1b; + color: rgba(221, 199, 161, 0.7); + font-weight: 500; +} +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: rgba(221, 199, 161, 0.7); + box-shadow: none; + background-color: transparent; +} +.mate-panel-menu-bar button:drop(active), .mate-panel-menu-bar button:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.mate-panel-menu-bar button:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.mate-panel-menu-bar button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.mate-panel-menu-bar button:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.3); +} +.mate-panel-menu-bar button:checked { + color: #ddc7a1; + box-shadow: none; + background-color: rgba(221, 199, 161, 0.12); +} +.mate-panel-menu-bar button:checked:drop(active), .mate-panel-menu-bar button:checked:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.mate-panel-menu-bar button:checked:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.mate-panel-menu-bar button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.mate-panel-menu-bar button:checked:disabled { + background-color: rgba(221, 199, 161, 0.12); + color: rgba(221, 199, 161, 0.5); +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(221, 199, 161, 0.2); +} + +MatePanelAppletFrameDBus > MatePanelAppletFrameDBus { + background-image: repeating-linear-gradient(currentcolor, currentcolor 4px, transparent 4px, transparent 6px); + background-repeat: no-repeat; + background-size: 4px 10px; + color: rgba(221, 199, 161, 0.3); +} +MatePanelAppletFrameDBus > MatePanelAppletFrameDBus:dir(ltr) { + background-position: 3px; +} +MatePanelAppletFrameDBus > MatePanelAppletFrameDBus:dir(rtl) { + background-position: calc(100% - 3px); +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(221, 199, 161, 0.7); +} +.mate-panel-menu-bar menubar > menuitem:hover { + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(221, 199, 161, 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 0; +} +.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: #7c6f64; +} +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: rgba(221, 199, 161, 0.08); +} +PanelApplet.wnck-applet .wnck-pager:active { + background-color: rgba(221, 199, 161, 0.12); +} +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #7c6f64; +} + +.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(212, 190, 152, 0.2); + border-radius: 7px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + background-color: #3C3836; +} +#MatePanelPopupWindow frame > border { + border-style: none; + background-color: transparent; +} +#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(212, 190, 152, 0.2); +} +#MatePanelPopupWindow expander > title { + min-height: 32px; +} +#MatePanelPopupWindow button { + padding: 4px 16px; +} +#MatePanelPopupWindow > frame > box > box > box > widget { + color: rgba(212, 190, 152, 0.2); +} + +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(212, 190, 152, 0.2); + border-radius: 7px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + background-color: #3C3836; +} +.mate-panel-applet-slider frame > border { + border-style: none; + background-color: transparent; +} + +#PanelApplet:not(:selected) > box { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} +#PanelApplet:selected > box { + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} + +#mate-menu { + border: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + background-color: #3C3836; +} +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: #d4be98; + font-weight: normal; +} +#mate-menu button:not(.flat) { + background-color: rgba(212, 190, 152, 0.12); +} +#mate-menu button image, +#mate-menu button label + label { + color: rgba(212, 190, 152, 0.7); +} +#mate-menu entry { + margin: 0 0 4px; +} +#mate-menu entry image { + margin: 0; +} +#mate-menu entry + button { + margin: 0 4px 4px; + padding: 4px; +} + +.brisk-menu { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +.brisk-menu entry { + margin-bottom: -2px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + border-image: none; + box-shadow: none; + background-color: transparent; +} +.brisk-menu entry + box > box:dir(ltr) { + margin-right: -2px; + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +.brisk-menu entry + box > box:dir(rtl) { + margin-left: -2px; + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +.brisk-menu .categories-list { + padding-top: 4px; +} +.brisk-menu .categories-list button { + margin: 0 4px; +} +.brisk-menu .session-button { + padding: 8px; +} +.brisk-menu .frame { + border-style: none; + background-color: transparent; +} +.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: #d4be98; + font-weight: normal; +} + +/** + * CAJA File manager + */ +.caja-navigation-window box.horizontal > 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, +.caja-notebook { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; + background-color: transparent; +} + +.caja-canvas-item { + border-radius: 6px; +} + +.caja-desktop.view .entry, +.caja-navigation-window .view .entry { + border: none; + border-radius: 6px; + background-color: rgba(212, 190, 152, 0.04); + background-image: none; + color: #d4be98; +} +.caja-desktop.view .entry:selected, +.caja-navigation-window .view .entry:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +.caja-desktop.view .entry { + background-color: rgba(0, 0, 0, 0.3); + color: #fff; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); + caret-color: currentcolor; +} +.caja-desktop.view .entry:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} + +.caja-notebook frame > border { + border-style: none; + background-color: transparent; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} +#caja-extra-view-widget button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +#caja-extra-view-widget button:not(:disabled):drop(active), #caja-extra-view-widget button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#caja-extra-view-widget button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#caja-extra-view-widget button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} + +/** + * Pluma + */ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.pluma-window statusbar frame > border { + border-style: none; + background-color: transparent; +} +.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(212, 190, 152, 0.2); +} +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; + background-color: transparent; +} +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +/** + * Atril + */ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; + background-color: transparent; +} +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 7px; + box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + background-color: #3C3836; +} +.lock-dialog frame > border { + border-style: none; + background-color: transparent; +} +.lock-dialog button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.lock-dialog button:not(:disabled):drop(active), .lock-dialog button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.lock-dialog button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.lock-dialog button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} + +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 6px; + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} +MsdOsdWindow.background.osd .trough { + border-radius: 0; + background-color: rgba(221, 199, 161, 0.2); +} +MsdOsdWindow.background.osd .progressbar { + border-radius: 0; + background-color: #ddc7a1; +} +/** + * Budgie Desktop + */ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 6px; +} + +.budgie-popover { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 7px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-clip: padding-box; + background-color: #3C3836; +} +.budgie-popover .container { + padding: 2px; +} +.budgie-popover border { + border: none; + background-color: transparent; +} +.budgie-popover row { + padding: 0; +} +.budgie-popover row:hover { + box-shadow: none; +} +.budgie-popover button.flat:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: #d4be98; + font-weight: normal; +} +.budgie-popover button.flat:not(.image-button):disabled { + color: rgba(212, 190, 152, 0.5); +} +.budgie-popover.budgie-menu .container { + padding: 0; +} +.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(212, 190, 152, 0.2); + border-image: none; + border-radius: 0; + box-shadow: none; + font-size: 120%; +} +.budgie-popover.budgie-menu button.flat:not(.image-button) { + min-height: 32px; + padding: 0 8px; + border-radius: 0; +} +.budgie-popover.budgie-menu button.flat:not(.image-button):drop(active):not(:active), .budgie-popover.budgie-menu button.flat:not(.image-button):hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +.budgie-popover.budgie-menu button.flat:not(.image-button):checked { + background-color: rgba(124, 111, 100, 0.6); +} +.budgie-popover.budgie-menu button.flat:not(.image-button):checked:disabled { + background-color: transparent; +} +.budgie-popover.user-menu .container { + padding: 8px; +} +.budgie-popover.user-menu separator { + margin: 4px 0; +} +.budgie-popover.sound-popover separator { + margin: 3px 0; +} +.budgie-popover.night-light-indicator .container { + padding: 8px; +} +.budgie-popover.places-menu .container { + padding: 8px; +} +.budgie-popover.places-menu .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: 4px; + padding-top: 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} +.budgie-popover.workspace-popover .container { + padding: 8px; +} +.budgie-popover.workspace-popover separator { + margin: 4px 0; +} +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(221, 199, 161, 0.2); +} +.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(221, 199, 161, 0.2); +} +.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: rgba(221, 199, 161, 0.12); +} +.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: #1e1c1b; + color: rgba(221, 199, 161, 0.7); + font-weight: 500; +} +.budgie-panel.transparent { + background-color: black; + color: rgba(255, 255, 255, 0.6); +} +.budgie-panel button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: rgba(221, 199, 161, 0.7); + box-shadow: none; + background-color: transparent; +} +.budgie-panel button:drop(active), .budgie-panel button:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.budgie-panel button:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.budgie-panel button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.budgie-panel button:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.3); +} +.budgie-panel button:checked { + color: #ddc7a1; + box-shadow: none; + background-color: rgba(221, 199, 161, 0.12); +} +.budgie-panel button:checked:drop(active), .budgie-panel button:checked:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.budgie-panel button:checked:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.budgie-panel button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.budgie-panel button:checked:disabled { + background-color: rgba(221, 199, 161, 0.12); + color: rgba(221, 199, 161, 0.5); +} +.budgie-panel.horizontal button { + padding: 0 4px; +} +.budgie-panel.vertical button { + padding: 4px 0; +} +.budgie-panel separator { + background-color: rgba(221, 199, 161, 0.3); +} +.budgie-panel .alert { + color: #ea6962; +} +.budgie-panel .titlebar:not(headerbar) { + min-height: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + color: #ddc7a1; +} +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action) { + color: rgba(221, 199, 161, 0.7); +} +.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(221, 199, 161, 0.5); +} +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(221, 199, 161, 0.3); +} +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel button.flat.launcher, .budgie-panel .top button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentcolor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} +.budgie-panel .unpinned button.flat.launcher, +.budgie-panel .pinned button.flat.launcher.running, .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel button.flat.launcher:checked, .budgie-panel .top button.flat.launcher: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, .bottom .budgie-panel button.flat.launcher, .budgie-panel .bottom button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} +.budgie-panel .unpinned button.flat.launcher, +.budgie-panel .pinned button.flat.launcher.running, .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel button.flat.launcher:checked, .budgie-panel .bottom button.flat.launcher: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, .left .budgie-panel button.flat.launcher, .budgie-panel .left button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentcolor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} +.budgie-panel .unpinned button.flat.launcher, +.budgie-panel .pinned button.flat.launcher.running, .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel button.flat.launcher:checked, .budgie-panel .left button.flat.launcher: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, .right .budgie-panel button.flat.launcher, .budgie-panel .right button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentcolor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} +.budgie-panel .unpinned button.flat.launcher, +.budgie-panel .pinned button.flat.launcher.running, .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel button.flat.launcher:checked, .budgie-panel .right button.flat.launcher: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; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +.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: #3C3836; +} +.raven > box:not(:only-child) { + margin-bottom: -10px; +} +.raven .raven-header { + min-height: 32px; + padding: 3px; +} +.raven .raven-header.top { + padding: 0; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.raven .raven-header.top stackswitcher.linked > button { + margin: -4px 0 -5px; + padding: 0 16px; + min-height: 40px; + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 0%, transparent 0%) 0 0 0/0 0 0; + border-radius: 0; +} +.raven .raven-header.top stackswitcher.linked > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; +} +.raven .raven-header.bottom { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.raven stack .raven-header { + margin-top: -6px; +} +.raven stack scrolledwindow .raven-header { + margin-top: -8px; +} +.raven .expander-button { + border-radius: 9999px; +} +.raven .raven-background stackswitcher.linked > button { + margin: -2px 8px 9px; + padding: 0 12px; + min-height: 32px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); + font-weight: normal; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.raven .raven-background stackswitcher.linked > button:drop(active), .raven .raven-background stackswitcher.linked > button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.1536); +} +.raven .raven-background stackswitcher.linked > button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.1536); +} +.raven .raven-background stackswitcher.linked > button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +.raven .raven-background stackswitcher.linked > button:checked { + color: #7c6f64; + box-shadow: none; + background-color: rgba(124, 111, 100, 0.12); +} +.raven .raven-background stackswitcher.linked > button:checked:drop(active), .raven .raven-background stackswitcher.linked > button:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +.raven .raven-background stackswitcher.linked > button:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +.raven .raven-background stackswitcher.linked > button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.raven .raven-background stackswitcher.linked > button:not(:first-child) { + margin-left: 0; +} +.raven .raven-background > overlay > widget > image { + color: rgba(212, 190, 152, 0.08); +} +.raven revealer > .raven-background { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.raven .raven-header + .raven-background { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.raven viewport.frame > list > row { + padding: 0; + box-shadow: none; + background: none; +} +.raven viewport.frame > list > row:not(:first-child) { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.raven viewport.frame > list > row > box { + margin-top: -5px; + margin-left: -5px; + margin-bottom: -5px; +} +.raven viewport.frame > list > row > box > box { + padding: 6px; + margin-bottom: -10px; +} +.raven viewport.frame > list > row > box > list > row { + padding: 8px; +} +.raven viewport.frame > list > row > box > list > row > box { + margin-bottom: -5px; +} +.raven viewport.frame > list > row > box > list > row > box > box > label { + font-weight: bold; +} +.raven viewport.frame > list > row > box > list > row > box > box > button.image-button { + padding: 0; +} +.raven viewport.frame > list > row > box > list > row > box > label { + margin-top: -6px; + font-size: smaller; +} +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 8px; +} +.raven .option-subtitle { + font-size: smaller; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} +calendar.raven-calendar:selected { + border-radius: 6px; + background-color: rgba(124, 111, 100, 0.6); +} + +.raven-mpris { + background-color: black; + color: rgba(255, 255, 255, 0.87); +} +.raven-mpris label { + min-height: 24px; +} +.raven-mpris button.image-button { + padding: 8px; + color: rgba(255, 255, 255, 0.6); + box-shadow: none; + background-color: transparent; +} +.raven-mpris button.image-button:drop(active), .raven-mpris button.image-button:hover { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.08); +} +.raven-mpris button.image-button:focus { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.08); +} +.raven-mpris button.image-button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 0%); +} + +.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(212, 190, 152, 0.7); +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +.drop-shadow button.text-button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.drop-shadow button.text-button:not(:disabled):drop(active), .drop-shadow button.text-button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.drop-shadow button.text-button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.drop-shadow button.text-button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.drop-shadow .linked > button { + margin-right: 4px; +} + +.budgie-run-dialog, .budgie-polkit-dialog, .budgie-session-dialog { + border-radius: 6px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +.budgie-run-dialog decoration, .budgie-polkit-dialog decoration, .budgie-session-dialog decoration { + border-radius: 6px; +} + +.budgie-session-dialog > box { + padding: 8px; +} +.budgie-session-dialog image { + margin: -8px; + -gtk-icon-transform: scale(0); +} +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + margin-bottom: 8px; + font-size: 20px; + font-weight: 500; +} +.budgie-session-dialog .dialog-title + label { + color: rgba(212, 190, 152, 0.7); +} +.budgie-session-dialog .linked.horizontal > button:not(:last-child) { + margin-right: 8px; +} +.budgie-session-dialog .linked.horizontal > button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.budgie-session-dialog .linked.horizontal > button:not(:disabled):drop(active), .budgie-session-dialog .linked.horizontal > button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.budgie-session-dialog .linked.horizontal > button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.budgie-session-dialog .linked.horizontal > button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} + +.budgie-polkit-dialog .message { + color: rgba(212, 190, 152, 0.7); +} +.budgie-polkit-dialog .failure { + color: #ea6962; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 4px 12px; + border-image: none; + box-shadow: none; + background-color: transparent; +} +.budgie-run-dialog list { + padding: 4px 0; +} +.budgie-run-dialog list .dim-label { + color: inherit; +} +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.budgie-run-dialog scrollbar.right, .budgie-run-dialog scrollbar.bottom { + border-bottom-right-radius: 6px; +} +.budgie-run-dialog scrollbar.left, .budgie-run-dialog scrollbar.bottom { + border-bottom-left-radius: 6px; +} + +/** + * Xfce4 Apps + */ +/** + * xfce4-panel + */ +.xfce4-panel.background { + border: none; + background-color: #1e1c1b; + color: rgba(221, 199, 161, 0.7); + font-weight: 500; +} +.xfce4-panel.background button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: rgba(221, 199, 161, 0.7); + box-shadow: none; + background-color: transparent; +} +.xfce4-panel.background button:drop(active), .xfce4-panel.background button:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.xfce4-panel.background button:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.xfce4-panel.background button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.xfce4-panel.background button:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.3); +} +.xfce4-panel.background button:checked { + color: #ddc7a1; + box-shadow: none; + background-color: rgba(221, 199, 161, 0.12); +} +.xfce4-panel.background button:checked:drop(active), .xfce4-panel.background button:checked:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.xfce4-panel.background button:checked:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.xfce4-panel.background button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.xfce4-panel.background button:checked:disabled { + background-color: rgba(221, 199, 161, 0.12); + color: rgba(221, 199, 161, 0.5); +} +.xfce4-panel.background .tasklist button { + border-image: image(transparent) 0 0 2/0 0 2px; +} +.xfce4-panel.background .tasklist button:checked { + border-image: image(currentcolor) 0 0 2/0 0 2px; +} +.xfce4-panel.background .tasklist button image { + padding: 4px; +} +.xfce4-panel.background frame > border { + border-style: none; + background-color: transparent; +} +.xfce4-panel.background progressbar progress { + background-color: #7c6f64; +} +.xfce4-panel.background progressbar trough { + background-color: rgba(221, 199, 161, 0.2); +} + +wnck-pager:hover { + background-color: rgba(221, 199, 161, 0.08); +} +wnck-pager:active { + background-color: rgba(221, 199, 161, 0.12); +} +wnck-pager:selected { + background-color: #7c6f64; +} + +XfdesktopIconView.view { + border-radius: 6px; + color: #fff; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} +XfdesktopIconView.view:active { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.6); +} +XfdesktopIconView.view .rubberband { + border-radius: 0; +} + +#XfceNotifyWindow { + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; + color: #d4be98; +} +#XfceNotifyWindow buttonbox button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +#XfceNotifyWindow buttonbox button:not(:disabled):drop(active), #XfceNotifyWindow buttonbox button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#XfceNotifyWindow buttonbox button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#XfceNotifyWindow buttonbox button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +#XfceNotifyWindow label#summary { + font-weight: bold; +} +#XfceNotifyWindow label#summary + label { + color: rgba(212, 190, 152, 0.7); +} +#xfwm-tabwin { + padding: 12px; + border-radius: 6px; + -XfwmTabwinWidget-icon-size: 64px; + -XfwmTabwinWidget-preview-size: 64px; +} +/** + * Thunar + */ +.thunar #location-toolbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.thunar #location-toolbar > toolitem > button { + min-width: 24px; + padding: 4px; + border-radius: 9999px; +} +.thunar .shortcuts-pane.frame, +.thunar .standard-view.frame { + border-width: 0; + background-color: transparent; +} +.thunar statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} + +/** + * LightDM GTK+ Greeter + */ +#panel_window { + background-color: rgba(0, 0, 0, 0.3); + color: #fff; +} +#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 { + background-color: rgba(255, 255, 255, 0.12); + color: #fff; +} +#panel_window menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 6px; + box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; + color: #d4be98; +} + +#content_frame { + padding-bottom: 16px; +} + +#buttonbox_frame { + padding-top: 24px; +} +#buttonbox_frame > box, +#buttonbox_frame > buttonbox { + margin: -16px; +} +#buttonbox_frame button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +#buttonbox_frame button:not(:disabled):drop(active), #buttonbox_frame button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#buttonbox_frame button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#buttonbox_frame button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} + +/** + * Nemo + */ +.nemo-window .primary-toolbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.nemo-window .primary-toolbar stack > box { + margin: -2px; +} +.nemo-window .primary-toolbar button.text-button { + padding-left: 8px; + padding-right: 8px; +} +.nemo-window .primary-toolbar button:not(.text-button):not(.image-button) { + padding-left: 4px; + padding-right: 4px; +} +.nemo-window scrolledwindow.frame { + border-style: none; + background-color: transparent; +} +.nemo-window .nemo-window-pane widget.entry { + border-radius: 6px; + background-color: rgba(212, 190, 152, 0.04); +} +.nemo-window .nemo-window-pane widget.entry:selected { + background-color: rgba(124, 111, 100, 0.6); +} +.places-treeview { + -NemoPlacesTreeView-disk-full-bg-color: #4a463e; + -NemoPlacesTreeView-disk-full-fg-color: #7c6f64; + -NemoPlacesTreeView-disk-full-bar-width: 2px; + -NemoPlacesTreeView-disk-full-bar-radius: 0; + -NemoPlacesTreeView-disk-full-bottom-padding: 1px; + -NemoPlacesTreeView-disk-full-max-length: 80px; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #d4be98; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #d4be98; +/* +widget base background color */ +@define-color theme_bg_color #282828; +/* +text widgets and the like base background color */ +@define-color theme_base_color #282828; +/* +base background color of selections */ +@define-color theme_selected_bg_color #7c6f64; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color rgba(255, 255, 255, 0.87); +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #282828; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(212, 190, 152, 0.5); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #282828; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #d4be98; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #d4be98; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #282828; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #282828; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #7c6f64; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color rgba(255, 255, 255, 0.87); +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(212, 190, 152, 0.5); +/* +widgets main borders color */ +@define-color borders rgba(212, 190, 152, 0.2); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(212, 190, 152, 0.2); +/* +these are pretty self explicative */ +@define-color warning_color #d8a657; +@define-color error_color #ea6962; +@define-color success_color #a9b665; +/* +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 #ddc7a1; +@define-color wm_unfocused_title rgba(221, 199, 161, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.05); +@define-color wm_bg #32302f; +@define-color wm_unfocused_bg #282625; +@define-color xfwm4_title #ddc7a1; +@define-color xfwm4_unfocused_title #a7977c; +/* content view background such as thumbnails view in Photos or Boxes */ +@define-color content_view_bg #282828; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #282828; +/* placeholder for entries */ +@define-color placeholder_text_color #a09176; diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-checked-symbolic.svg new file mode 100644 index 000000000..8067c1124 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-mixed-symbolic.svg new file mode 100644 index 000000000..76e69c9ed --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-unchecked-symbolic.svg new file mode 100644 index 000000000..97dbb89ee --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/cursor-handle-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/cursor-handle-symbolic.svg similarity index 100% rename from local/share/themes/Gruvbox-Dark/gtk-3.0/assets/scalable/cursor-handle-symbolic.svg rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/cursor-handle-symbolic.svg diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-checked-symbolic.svg new file mode 100644 index 000000000..7b82c3ded --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-mixed-symbolic.svg new file mode 100644 index 000000000..55d89167d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-unchecked-symbolic.svg new file mode 100644 index 000000000..6d9755906 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-checked-symbolic.svg new file mode 100644 index 000000000..7ad27d5ed --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-mixed-symbolic.svg new file mode 100644 index 000000000..0f8085030 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-unchecked-symbolic.svg new file mode 100644 index 000000000..bfe0a5618 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-checked-symbolic.svg new file mode 100644 index 000000000..04a9a21eb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-mixed-symbolic.svg new file mode 100644 index 000000000..31aac91bb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-unchecked-symbolic.svg new file mode 100644 index 000000000..f87038196 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-3.0/icons/small-radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png new file mode 100644 index 000000000..6980cd327 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png new file mode 100644 index 000000000..65fdef591 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png new file mode 100644 index 000000000..a1c4353a3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png new file mode 100644 index 000000000..22f4916fb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png new file mode 100644 index 000000000..451fe491d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png new file mode 100644 index 000000000..414de45a9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider.png new file mode 100644 index 000000000..61f0d7d20 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider@2.png new file mode 100644 index 000000000..b7f823ae6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-after-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png new file mode 100644 index 000000000..0b0efc10b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png new file mode 100644 index 000000000..0fc274bf6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png new file mode 100644 index 000000000..2c9a8c29f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png new file mode 100644 index 000000000..07a1a02a8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png new file mode 100644 index 000000000..fa74da71f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png new file mode 100644 index 000000000..29a6ee3f0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider.png new file mode 100644 index 000000000..d719ed338 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider@2.png new file mode 100644 index 000000000..fd2273d45 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-horz-marks-before-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-dark.png new file mode 100644 index 000000000..187078dbc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-dark@2.png new file mode 100644 index 000000000..1e423ebc2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled-dark.png new file mode 100644 index 000000000..32dee996d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled-dark@2.png new file mode 100644 index 000000000..e3a2f29c6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled.png new file mode 100644 index 000000000..c89fd30b6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled@2.png new file mode 100644 index 000000000..e53e06fa9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider.png new file mode 100644 index 000000000..2d2095825 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider@2.png new file mode 100644 index 000000000..530e07d9d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png new file mode 100644 index 000000000..a16bad236 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png new file mode 100644 index 000000000..27b96fb15 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png new file mode 100644 index 000000000..132c1e870 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png new file mode 100644 index 000000000..354c6dbb6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png new file mode 100644 index 000000000..c3b072482 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png new file mode 100644 index 000000000..2dd27091b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider.png new file mode 100644 index 000000000..250f616a5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider@2.png new file mode 100644 index 000000000..48de87544 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-after-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png new file mode 100644 index 000000000..16702d790 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png new file mode 100644 index 000000000..1e4217334 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png new file mode 100644 index 000000000..7e2bcd483 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png new file mode 100644 index 000000000..4faaa4663 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png new file mode 100644 index 000000000..f98b19483 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png new file mode 100644 index 000000000..27d5a3962 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider.png new file mode 100644 index 000000000..971228be1 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider@2.png new file mode 100644 index 000000000..ef45044a7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/scale-vert-marks-before-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png new file mode 100644 index 000000000..db1019600 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png new file mode 100644 index 000000000..7229282ce Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked.png new file mode 100644 index 000000000..05a03cdd3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked@2.png new file mode 100644 index 000000000..e3b84e885 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-checked@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png new file mode 100644 index 000000000..8175aeb09 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png new file mode 100644 index 000000000..5effa4b38 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked.png new file mode 100644 index 000000000..bd1a726a6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png new file mode 100644 index 000000000..9fbc798dc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/gtk.css b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/gtk.css new file mode 100644 index 000000000..594e4d7a1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/gtk.css @@ -0,0 +1,3539 @@ +@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, #7c6f64 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #7c6f64 100%, transparent 100%); + } +} +flowbox > flowboxchild, gridview > child, +entry > image, +button, modelbutton.flat, spinbutton:not(.vertical) > image, menubar > item, notebook > header > tabs > arrow, notebook > header > tabs > tab, check, +radio, row.activatable, listview > row, expander, calendar > grid > label.day-number, popover.emoji-picker > contents emoji, popover.emoji-completion > contents emoji-completion-row, popover.emoji-completion > contents emoji { + transition-property: all, border-image, background-size, background-image; + transition-duration: 75ms, 225ms, 300ms, 1200ms; + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 10%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} +flowbox > flowboxchild:active, gridview > child:active, +entry > image:active, +button:active, modelbutton.flat:active, spinbutton:not(.vertical) > image:active, menubar > item:active, notebook > header > tabs > arrow:active, notebook > header > tabs > tab:active, check:active, +radio:active, row.activatable:active, listview > row:active, expander:active, calendar > grid > label.day-number:active, popover.emoji-picker > contents emoji:active, popover.emoji-completion > contents emoji-completion-row:active, popover.emoji-completion > contents emoji:active { + transition-duration: 75ms, 225ms, 0ms, 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: 0% 0%; +} + +/** + * Base States + */ +.background { + background-color: #282828; + color: #d4be98; +} + +dnd { + color: #d4be98; +} + +.normal-icons { + -gtk-icon-size: 16px; +} + +.large-icons { + -gtk-icon-size: 32px; +} + +image:disabled { + -gtk-icon-filter: opacity(0.5); +} + +.view > .cell:hover { + background-color: rgba(212, 190, 152, 0.04); +} +.view:disabled { + color: rgba(212, 190, 152, 0.5); +} +.view:selected { + background-color: rgba(124, 111, 100, 0.6); +} +.view > .cell:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} + +textview { + caret-color: #7c6f64; +} +textview > text > selection { + background-color: rgba(124, 111, 100, 0.6); +} +textview > border { + color: rgba(212, 190, 152, 0.7); +} + +iconview > .cell { + border-radius: 6px; +} +iconview > dndtarget:drop(active) { + box-shadow: inset 0 0 0 2px #7c6f64; +} + +rubberband, columnview.view > rubberband, +treeview.view > rubberband { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.24); +} + +flowbox { + padding: 4px; + border-spacing: 4px; +} +flowbox > flowboxchild { + padding: 4px; + border-radius: 6px; +} +flowbox > flowboxchild:drop(active), flowbox > flowboxchild:hover { + background-color: rgba(212, 190, 152, 0.04); +} +flowbox > flowboxchild:focus { + background-color: rgba(212, 190, 152, 0.08); +} +flowbox > flowboxchild:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +flowbox > flowboxchild:selected { + background-color: rgba(124, 111, 100, 0.6); + background-color: rgba(124, 111, 100, 0.6); +} +flowbox > flowboxchild:selected:drop(active), flowbox > flowboxchild:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +flowbox > flowboxchild:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +flowbox > flowboxchild:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +gridview { + padding: 4px; + border-spacing: 4px; +} +gridview > child { + padding: 4px; + border-radius: 6px; +} +gridview > child:drop(active), gridview > child:hover { + background-color: rgba(212, 190, 152, 0.04); +} +gridview > child:focus { + background-color: rgba(212, 190, 152, 0.08); +} +gridview > child:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +gridview > child:selected { + background-color: rgba(124, 111, 100, 0.6); + background-color: rgba(124, 111, 100, 0.6); +} +gridview > child:selected:drop(active), gridview > child:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +gridview > child:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +gridview > child:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +coverflow > cover { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; + color: #d4be98; +} + +.content-view .tile:selected { + background-color: transparent; +} + +label { + caret-color: #7c6f64; +} +label.separator { + color: rgba(212, 190, 152, 0.7); +} +label.error { + color: #ea6962; +} +label > selection { + background-color: rgba(124, 111, 100, 0.6); +} +label:disabled { + color: rgba(212, 190, 152, 0.5); +} +headerbar label:disabled, modelbutton label:disabled, tab label:disabled, button label:disabled { + color: inherit; +} +label.osd { + border-radius: 6px; + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} + +.dim-label { + color: rgba(212, 190, 152, 0.7); +} + +window.assistant .sidebar { + padding: 4px 0; +} +window.assistant .sidebar > label { + min-height: 32px; + padding: 0 12px; + color: rgba(212, 190, 152, 0.5); + font-weight: 500; +} +window.assistant .sidebar > label.highlight { + color: #d4be98; +} + +window.aboutdialog > box > box > image.large-icons { + -gtk-icon-size: 128px; +} + +/** + * Spinner Animation + */ +@keyframes spin { + to { + transform: rotate(1turn); + } +} +spinner { + opacity: 0; + color: #7c6f64; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + transition: opacity 300ms cubic-bezier(0, 0, 0.2, 1); + animation: spin 1s linear infinite; +} +spinner:checked { + opacity: 1; +} +spinner:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * General Typography + */ +.large-title { + font-weight: 400; + font-size: 36pt; +} + +.title-1 { + font-weight: 400; + font-size: 25.5pt; + letter-spacing: 0.1875pt; +} + +.title-2 { + font-weight: 400; + font-size: 18pt; +} + +.title-3 { + font-weight: 500; + font-size: 15pt; + letter-spacing: 0.1125pt; +} + +.title-4 { + font-weight: 400; + font-size: 12pt; + letter-spacing: 0.375pt; +} + +.heading { + font-weight: 500; + font-size: 1em; +} + +.body { + font-weight: 400; + font-size: 1em; +} + +.caption-heading { + font-weight: 500; + font-size: 9pt; + letter-spacing: 1.125pt; +} + +.caption { + font-weight: 400; + font-size: 9pt; + letter-spacing: 0.3pt; +} + +/** + * Text Entries + */ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding: 0 8px; + border-spacing: 4px; + border-radius: 6px 6px 0 0; + 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), #7c6f64 0%, transparent 0%) 2/0 0 0px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #7c6f64; +} +spinbutton:hover:not(.vertical), spinbutton:drop(active):not(.vertical), +entry:hover, +entry:drop(active) { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.0784); +} +spinbutton:focus-within:not(.vertical), +entry:focus-within { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 100%) 2/0 0 2px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton:focus-within:not(.vertical) > text > placeholder, +entry:focus-within > text > placeholder { + opacity: 0; +} +spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton.flat:not(.vertical), +entry.flat { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: transparent; +} +spinbutton:not(.vertical) > text > placeholder, +entry > text > placeholder { + color: rgba(212, 190, 152, 0.7); +} +spinbutton:not(.vertical) > text > selection, +entry > text > selection { + background-color: rgba(124, 111, 100, 0.6); +} +spinbutton:not(.vertical) > text > block-cursor, +entry > text > block-cursor { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +spinbutton:not(.vertical) > image, +entry > image { + min-width: 24px; + min-height: 24px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); + margin-top: 4px; + margin-bottom: 4px; +} +spinbutton:not(.vertical) > image:drop(active), spinbutton:not(.vertical) > image:hover, +entry > image:drop(active), +entry > image:hover { + background-color: rgba(212, 190, 152, 0.08); +} +spinbutton:not(.vertical) > image:focus, +entry > image:focus { + background-color: rgba(212, 190, 152, 0.08); +} +spinbutton:not(.vertical) > image:active, +entry > image:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +spinbutton:not(.vertical) > image:disabled, +entry > image:disabled { + color: rgba(212, 190, 152, 0.5); +} +spinbutton:not(.vertical) > image.left, +entry > image.left { + margin-left: -4px; +} +spinbutton:not(.vertical) > image.right, +entry > image.right { + margin-right: -4px; +} +spinbutton.error:not(.vertical), +entry.error { + 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), #ea6962 0%, transparent 0%) 2/0 0 0px; + box-shadow: inset 0 -1px #ea6962; + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #ea6962; +} +spinbutton.error:focus-within:not(.vertical), +entry.error:focus-within { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ea6962 100%, transparent 100%) 2/0 0 2px; + box-shadow: inset 0 -1px #ea6962; + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton.warning:not(.vertical), +entry.warning { + 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), #d8a657 0%, transparent 0%) 2/0 0 0px; + box-shadow: inset 0 -1px #d8a657; + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #d8a657; +} +spinbutton.warning:focus-within:not(.vertical), +entry.warning:focus-within { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #d8a657 100%, transparent 100%) 2/0 0 2px; + box-shadow: inset 0 -1px #d8a657; + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton:not(.vertical) > progress > trough > progress, +entry > progress > trough > progress { + margin: 0 -8px; + margin-bottom: -4px; + border-bottom: 2px solid #7c6f64; + background-color: transparent; +} +spinbutton.vertical > text { + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; + color: #d4be98; + caret-color: #7c6f64; +} +spinbutton.vertical > text:focus-within { + border-image: none; + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +spinbutton.vertical > text:drop(active) { + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +spinbutton.vertical > text:disabled { + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +spinbutton.vertical > text.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #ea6962; + color: #000; + caret-color: #000; +} +spinbutton.vertical > text.error:focus-within { + border-image: none; + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +spinbutton.vertical > text.error:disabled { + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +spinbutton.vertical > text.error image { + color: rgba(0, 0, 0, 0.7); +} +spinbutton.vertical > text.error image:hover, spinbutton.vertical > text.error image:active { + color: #000; +} +spinbutton.vertical > text.error image:disabled { + color: rgba(0, 0, 0, 0.5); +} +spinbutton.vertical > text.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #d8a657; + color: #000; + caret-color: #000; +} +spinbutton.vertical > text.warning:focus-within { + border-image: none; + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +spinbutton.vertical > text.warning:disabled { + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +spinbutton.vertical > text.warning image { + color: rgba(0, 0, 0, 0.7); +} +spinbutton.vertical > text.warning image:hover, spinbutton.vertical > text.warning image:active { + color: #000; +} +spinbutton.vertical > text.warning image:disabled { + color: rgba(0, 0, 0, 0.5); +} + +treeview entry, treeview entry.flat { + background-color: #282828; +} +treeview entry, treeview entry:focus-within, treeview entry.flat, treeview entry.flat:focus-within { + border-image: none; + box-shadow: none; +} + +.entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: #d4be98; +} +.entry-tag:hover { + background-image: image(rgba(212, 190, 152, 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; + color: rgba(212, 190, 152, 0.7); +} + +/** + * Buttons + */ +@keyframes needs-attention { + from { + background-image: radial-gradient(farthest-side, #7c6f64 0%, transparent 0%); + } + to { + background-image: radial-gradient(farthest-side, #7c6f64 100%, transparent 100%); + } +} +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 6px; + background-color: #3C3836; + color: #d4be98; + font-weight: 500; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; +} +button:drop(active), +button:hover { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #423d3a; +} +button:focus { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #48433e; +} +button:active { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +button:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button:checked { + color: #7c6f64; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #443f3c; +} +button:checked:drop(active), +button:checked:hover { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #46413e; +} +button:checked:focus { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #48433f; +} +button:checked:active { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +button:checked:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.1904); + color: rgba(212, 190, 152, 0.5); +} +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} +button.image-button { + min-width: 24px; + padding: 4px; + border-radius: 9999px; +} +button.text-button.image-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; + border-radius: 6px; +} +button.text-button.image-button image:first-child { + margin-left: -4px; + margin-right: 8px; +} +button.text-button.image-button image:last-child { + margin-left: 8px; + margin-right: -4px; +} +frame button, +.frame button, popover button { + background-color: transparent; + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.3); + background-color: transparent; +} +frame button:drop(active), +.frame button:drop(active), popover button:drop(active), frame button:hover, +.frame button:hover, popover button:hover { + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); +} +frame button:focus, +.frame button:focus, popover button:focus { + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.08); +} +frame button:active, +.frame button:active, popover button:active { + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.3); + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} + +button.sidebar-button, +pathbar.linked:not(.vertical) > button, spinbutton.vertical button, spinbutton:not(.vertical) > button, combobox > .linked:not(.vertical) > button:not(:only-child), infobar.info > revealer > box button, infobar.question > revealer > box button, filechooser #pathbarbox > stack > box > button, window.dialog.message .dialog-action-area > button, .app-notification button, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action), popover.menu button.model, .titlebar button:not(.suggested-action):not(.destructive-action), .toolbar button, +button.flat { + background-color: transparent; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +button.sidebar-button:drop(active), +pathbar.linked:not(.vertical) > button:drop(active), spinbutton.vertical button:drop(active), spinbutton:not(.vertical) > button:drop(active), combobox > .linked:not(.vertical) > button:drop(active):not(:only-child), infobar.info > revealer > box button:drop(active), infobar.question > revealer > box button:drop(active), filechooser #pathbarbox > stack > box > button:drop(active), window.dialog.message .dialog-action-area > button:drop(active), .app-notification button:drop(active), actionbar > revealer > box button:drop(active):not(.suggested-action):not(.destructive-action), popover.menu button.model:drop(active), .titlebar button:drop(active):not(.suggested-action):not(.destructive-action), .toolbar button:drop(active), +button.flat:drop(active), button.sidebar-button:hover, +pathbar.linked:not(.vertical) > button:hover, spinbutton.vertical button:hover, spinbutton:not(.vertical) > button:hover, combobox > .linked:not(.vertical) > button:hover:not(:only-child), infobar.info > revealer > box button:hover, infobar.question > revealer > box button:hover, filechooser #pathbarbox > stack > box > button:hover, window.dialog.message .dialog-action-area > button:hover, .app-notification button:hover, actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action), popover.menu button.model:hover, .titlebar button:hover:not(.suggested-action):not(.destructive-action), .toolbar button:hover, +button.flat:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +button.sidebar-button:focus, +pathbar.linked:not(.vertical) > button:focus, spinbutton.vertical button:focus, spinbutton:not(.vertical) > button:focus, combobox > .linked:not(.vertical) > button:focus:not(:only-child), infobar.info > revealer > box button:focus, infobar.question > revealer > box button:focus, filechooser #pathbarbox > stack > box > button:focus, window.dialog.message .dialog-action-area > button:focus, .app-notification button:focus, actionbar > revealer > box button:focus:not(.suggested-action):not(.destructive-action), popover.menu button.model:focus, .titlebar button:focus:not(.suggested-action):not(.destructive-action), .toolbar button:focus, +button.flat:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +button.sidebar-button:active, +pathbar.linked:not(.vertical) > button:active, spinbutton.vertical button:active, spinbutton:not(.vertical) > button:active, combobox > .linked:not(.vertical) > button:active:not(:only-child), infobar.info > revealer > box button:active, infobar.question > revealer > box button:active, filechooser #pathbarbox > stack > box > button:active, window.dialog.message .dialog-action-area > button:active, .app-notification button:active, actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action), popover.menu button.model:active, .titlebar button:active:not(.suggested-action):not(.destructive-action), .toolbar button:active, +button.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +button.sidebar-button:disabled, +pathbar.linked:not(.vertical) > button:disabled, spinbutton.vertical button:disabled, spinbutton:not(.vertical) > button:disabled, combobox > .linked:not(.vertical) > button:disabled:not(:only-child), infobar.info > revealer > box button:disabled, infobar.question > revealer > box button:disabled, filechooser #pathbarbox > stack > box > button:disabled, window.dialog.message .dialog-action-area > button:disabled, .app-notification button:disabled, actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action), popover.menu button.model:disabled, .titlebar button:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:disabled, +button.flat:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} + +combobox > .linked:not(.vertical) > button:checked:not(:only-child), infobar.info > revealer > box button:checked, infobar.question > revealer > box button:checked, filechooser #pathbarbox > stack > box > button:checked, window.dialog.message .dialog-action-area > button:checked, .app-notification button:checked, actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked, .titlebar button:checked:not(.suggested-action):not(.destructive-action), .toolbar button:checked, +button.flat:checked { + color: #7c6f64; + box-shadow: none; + background-color: rgba(124, 111, 100, 0.12); +} +combobox > .linked:not(.vertical) > button:checked:drop(active):not(:only-child), infobar.info > revealer > box button:checked:drop(active), infobar.question > revealer > box button:checked:drop(active), filechooser #pathbarbox > stack > box > button:checked:drop(active), window.dialog.message .dialog-action-area > button:checked:drop(active), .app-notification button:checked:drop(active), actionbar > revealer > box button:checked:drop(active):not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:drop(active), .titlebar button:checked:drop(active):not(.suggested-action):not(.destructive-action), .toolbar button:checked:drop(active), +button.flat:checked:drop(active), combobox > .linked:not(.vertical) > button:checked:hover:not(:only-child), infobar.info > revealer > box button:checked:hover, infobar.question > revealer > box button:checked:hover, filechooser #pathbarbox > stack > box > button:checked:hover, window.dialog.message .dialog-action-area > button:checked:hover, .app-notification button:checked:hover, actionbar > revealer > box button:checked:hover:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:hover, .titlebar button:checked:hover:not(.suggested-action):not(.destructive-action), .toolbar button:checked:hover, +button.flat:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +combobox > .linked:not(.vertical) > button:checked:focus:not(:only-child), infobar.info > revealer > box button:checked:focus, infobar.question > revealer > box button:checked:focus, filechooser #pathbarbox > stack > box > button:checked:focus, window.dialog.message .dialog-action-area > button:checked:focus, .app-notification button:checked:focus, actionbar > revealer > box button:checked:focus:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:focus, .titlebar button:checked:focus:not(.suggested-action):not(.destructive-action), .toolbar button:checked:focus, +button.flat:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +combobox > .linked:not(.vertical) > button:checked:active:not(:only-child), infobar.info > revealer > box button:checked:active, infobar.question > revealer > box button:checked:active, filechooser #pathbarbox > stack > box > button:checked:active, window.dialog.message .dialog-action-area > button:checked:active, .app-notification button:checked:active, actionbar > revealer > box button:checked:active:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:active, .titlebar button:checked:active:not(.suggested-action):not(.destructive-action), .toolbar button:checked:active, +button.flat:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), infobar.info > revealer > box button:checked:disabled, infobar.question > revealer > box button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, window.dialog.message .dialog-action-area > button:checked:disabled, .app-notification button:checked:disabled, actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:disabled, .titlebar button:checked:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:checked:disabled, +button.flat:checked:disabled { + color: rgba(212, 190, 152, 0.5); +} + +infobar.info > revealer > box button.text-button, infobar.question > revealer > box button.text-button, filechooser #pathbarbox > stack > box > button.text-button, window.dialog.message .dialog-action-area > button.text-button, .app-notification button.text-button, actionbar > revealer > box button.text-button:not(.suggested-action):not(.destructive-action), popover.menu button.text-button.model, .titlebar button.text-button:not(.suggested-action):not(.destructive-action), .toolbar button.text-button, +button.flat.text-button { + min-width: 48px; + padding-left: 8px; + padding-right: 8px; +} +infobar.info > revealer > box button.text-button.image-button, infobar.question > revealer > box button.text-button.image-button, filechooser #pathbarbox > stack > box > button.text-button.image-button, window.dialog.message .dialog-action-area > button.text-button.image-button, .app-notification button.text-button.image-button, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action), popover.menu button.text-button.image-button.model, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action), .toolbar button.text-button.image-button, +button.flat.text-button.image-button { + min-width: 24px; + padding: 4px; +} +infobar.info > revealer > box button.text-button.image-button label:first-child, infobar.question > revealer > box button.text-button.image-button label:first-child, filechooser #pathbarbox > stack > box > button.text-button.image-button label:first-child, window.dialog.message .dialog-action-area > button.text-button.image-button label:first-child, .app-notification button.text-button.image-button label:first-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, popover.menu button.text-button.image-button.model label:first-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, .toolbar button.text-button.image-button label:first-child, +button.flat.text-button.image-button label:first-child { + margin-left: 8px; +} +infobar.info > revealer > box button.text-button.image-button label:last-child, infobar.question > revealer > box button.text-button.image-button label:last-child, filechooser #pathbarbox > stack > box > button.text-button.image-button label:last-child, window.dialog.message .dialog-action-area > button.text-button.image-button label:last-child, .app-notification button.text-button.image-button label:last-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, popover.menu button.text-button.image-button.model label:last-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, .toolbar button.text-button.image-button label:last-child, +button.flat.text-button.image-button label:last-child { + margin-right: 8px; +} +infobar.info > revealer > box .linked:not(.vertical) > button:not(:only-child), infobar.question > revealer > box .linked:not(.vertical) > button:not(:only-child), filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:not(:only-child), window.dialog.message .dialog-action-area.linked:not(.vertical) > button:not(:only-child), .app-notification .linked:not(.vertical) > button:not(:only-child), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.menu .linked:not(.vertical) > button.model:not(:only-child), .titlebar .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), .toolbar .linked:not(.vertical) > button:not(:only-child), infobar.info > revealer > box .linked.vertical > button:not(:only-child), infobar.question > revealer > box .linked.vertical > button:not(:only-child), filechooser #pathbarbox > stack > box.linked.vertical > button:not(:only-child), window.dialog.message .dialog-action-area.linked.vertical > button:not(:only-child), .app-notification .linked.vertical > button:not(:only-child), actionbar > revealer > box .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.menu .linked.vertical > button.model:not(:only-child), .titlebar .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), .toolbar .linked.vertical > button:not(:only-child), +.linked:not(.vertical) > button.flat:not(:only-child), +.linked.vertical > button.flat:not(:only-child) { + border-radius: 6px; +} +infobar.info > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.question > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), window.dialog.message .dialog-action-area.linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .app-notification .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.menu .linked:not(.vertical) > button.model:not(:only-child).image-button:not(.text-button), .titlebar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), .toolbar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.info > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button), infobar.question > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button), filechooser #pathbarbox > stack > box.linked.vertical > button:not(:only-child).image-button:not(.text-button), window.dialog.message .dialog-action-area.linked.vertical > button:not(:only-child).image-button:not(.text-button), .app-notification .linked.vertical > button:not(:only-child).image-button:not(.text-button), actionbar > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.menu .linked.vertical > button.model:not(:only-child).image-button:not(.text-button), .titlebar .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), .toolbar .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.linked:not(.vertical) > button.flat:not(:only-child).image-button:not(.text-button), +.linked.vertical > button.flat:not(:only-child).image-button:not(.text-button) { + border-radius: 9999px; +} + +button.osd { + padding: 8px 12px; +} +button.osd.image-button { + padding: 8px; +} +button.osd:disabled { + opacity: 0; +} +button.suggested-action { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #7c6f64; +} +button.suggested-action:drop(active), button.suggested-action:hover { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #81756a; +} +button.suggested-action:focus { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #867b70; +} +button.suggested-action:active { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 10%); +} +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button.suggested-action:checked { + background-color: #8c8077; +} +button.suggested-action.flat { + background-color: transparent; +} +button.suggested-action.flat:drop(active), button.suggested-action.flat:hover { + background-color: rgba(124, 111, 100, 0.08); +} +button.suggested-action.flat:focus { + background-color: rgba(124, 111, 100, 0.08); +} +button.suggested-action.flat:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +button.suggested-action.flat:checked { + background-color: rgba(124, 111, 100, 0.12); +} +button.destructive-action { + background-color: #ea6962; + color: #000; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #ea6962; +} +button.destructive-action:drop(active), button.destructive-action:hover { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #d7615a; +} +button.destructive-action:focus { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #ce5c56; +} +button.destructive-action:active { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 10%); +} +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button.destructive-action:checked { + background-color: #c55852; +} +button.destructive-action.flat { + background-color: transparent; +} +button.destructive-action.flat:drop(active), button.destructive-action.flat:hover { + background-color: rgba(234, 105, 98, 0.12); +} +button.destructive-action.flat:focus { + background-color: rgba(234, 105, 98, 0.12); +} +button.destructive-action.flat:active { + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 10%); +} +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +button.destructive-action.flat:checked { + background-color: rgba(234, 105, 98, 0.16); +} +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 { + border-spacing: 6px; +} +button.close, menubutton.circular > button, button.circular { + border-radius: 9999px; +} + +button.sidebar-button, notebook > header > tabs > tab button.flat, spinbutton:not(.vertical) > button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +stacksidebar.sidebar 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.sidebar row.needs-attention > label:dir(rtl), stackswitcher > button.needs-attention > label:dir(rtl), +stackswitcher > button.needs-attention > image:dir(rtl) { + background-position: left 3px; +} + +.linked:not(stackswitcher) { + border-spacing: 4px; +} + +.linked:not(.vertical) > button.radio { + border-radius: 0; +} +.linked:not(.vertical) > button.radio:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.linked:not(.vertical) > button.radio:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +.linked:not(.vertical) > button.radio:not(:first-child) { + margin-left: -4px; +} + +.linked.vertical > button.radio { + border-radius: 0; +} +.linked.vertical > button.radio:first-child { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} +.linked.vertical > button.radio:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} +.linked.vertical > button.radio:not(:first-child) { + margin-top: -4px; +} + +/* menu buttons */ +modelbutton.flat:drop(active), modelbutton.flat:hover { + background-color: rgba(212, 190, 152, 0.08); +} +modelbutton.flat:focus { + background-color: rgba(212, 190, 152, 0.08); +} +modelbutton.flat:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +modelbutton.flat arrow { + min-width: 16px; + min-height: 16px; + color: rgba(212, 190, 152, 0.7); +} +modelbutton.flat arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +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-width: 24px; + min-height: 24px; + padding: 4px; +} + +menubutton > button > box > arrow { + min-height: 16px; + min-width: 16px; +} +menubutton > button > box > arrow.none { + -gtk-icon-source: -gtk-icontheme("open-menu-symbolic"); +} +menubutton > button > box > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +menubutton > button > box > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +menubutton > button > box > arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} +menubutton > button > box > arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +/** + * Links + */ +link { + color: #7c6f64; +} +link:visited { + color: #d3869b; +} + +button.link { + color: #7c6f64; +} +button.link:drop(active), button.link:hover { + background-color: rgba(124, 111, 100, 0.08); +} +button.link:focus { + background-color: rgba(124, 111, 100, 0.08); +} +button.link:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +button.link:visited { + color: #d3869b; +} +button.link:visited:drop(active), button.link:visited:hover { + background-color: rgba(211, 134, 155, 0.08); +} +button.link:visited:focus { + background-color: rgba(211, 134, 155, 0.08); +} +button.link:visited:active { + background-image: radial-gradient(circle, rgba(211, 134, 155, 0.12) 10%, transparent 10%); +} +button.link > label { + text-decoration-line: underline; +} + +/** + * GtkSpinButton + */ +spinbutton { + font-feature-settings: "tnum"; +} +spinbutton:not(.vertical) > text { + min-width: 32px; +} +spinbutton:not(.vertical) > button { + margin: 4px 0; +} +spinbutton:not(.vertical) > button.up:dir(ltr) { + margin-right: -4px; +} +spinbutton:not(.vertical) > button.up:dir(rtl) { + margin-left: -4px; +} +spinbutton.vertical > text { + min-height: 32px; + min-width: 40px; + padding: 0; +} +spinbutton.vertical > text > selection { + background-color: rgba(124, 111, 100, 0.6); +} +spinbutton.vertical button { + min-height: 32px; + min-width: 40px; + padding: 0; +} +spinbutton.vertical button:focus:not(:hover):not(:active) { + box-shadow: inset 0 0 0 9999px transparent; +} +spinbutton.vertical button.up { + border-radius: 6px 6px 0 0; +} +spinbutton.vertical button.down { + border-radius: 0 0 6px 6px; +} +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} +treeview spinbutton:not(.vertical) > text { + min-height: 0; + padding: 1px 2px; +} + +/** + * ComboBoxes + */ +dropdown arrow, +combobox arrow { + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + transition: -gtk-icon-transform 75ms cubic-bezier(0, 0, 0.2, 1); +} +dropdown button:checked arrow, +combobox button:checked arrow { + color: #7c6f64; + -gtk-icon-transform: rotate(-0.5turn); +} + +dropdown > button > box { + border-spacing: 6px; +} +dropdown > popover.menu > contents { + padding: 0; +} +dropdown > popover.menu > contents listview { + padding: 6px 0; +} +dropdown > popover.menu > contents listview > row { + min-height: 24px; + padding: 4px 8px; +} +dropdown > popover.menu > contents listview > row:selected { + background-color: rgba(212, 190, 152, 0.08); +} + +.dropdown-searchbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.dropdown-searchbar > entry.search { + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +combobox > box > button > box { + border-spacing: 6px; +} +combobox cellview { + margin: -2px; +} +combobox > popover.menu > contents modelbutton { + padding-left: 8px; + padding-right: 8px; +} +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -36px; + padding-right: 32px; +} +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -36px; + padding-left: 32px; +} +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 4px; + padding: 4px; + border-radius: 9999px; +} + +dropdown > button.toggle, +button.combo:only-child { + padding-left: 8px; + padding-right: 8px; + border-radius: 6px 6px 0 0; + font-weight: normal; + 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), #7c6f64 0%, transparent 0%) 2/0 0 0px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #7c6f64; +} +dropdown > button.toggle:focus, +button.combo:only-child:focus { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +dropdown > button.toggle:drop(active), dropdown > button.toggle:hover, +button.combo:only-child:drop(active), +button.combo:only-child:hover { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.0784); +} +dropdown > button.toggle:checked, +button.combo:only-child:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 100%) 2/0 0 2px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +dropdown > button.toggle:disabled, +button.combo:only-child:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +dropdown > button.toggle arrow, +button.combo:only-child arrow { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +dropdown > button.toggle arrow:disabled, +button.combo:only-child arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Toolbars + */ +.toolbar { + padding: 4px; + border-spacing: 4px; +} +.toolbar.top { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.toolbar.bottom { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.toolbar.start { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +.toolbar.end { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +.toolbar.osd.left, .toolbar.osd.right, .toolbar.osd.top, .toolbar.osd.bottom { + border-radius: 0; +} +.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: 4px 0; +} +.toolbar.vertical > separator { + margin: 0 4px; +} + +.app-notification, .toolbar.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px; + border-spacing: 4px; + border-radius: 6px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +.app-notification:backdrop, .toolbar.osd:backdrop { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); +} + +.inline-toolbar { + padding: 4px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(212, 190, 152, 0.2); + background-color: #282828; +} + +searchbar > revealer > box { + padding: 4px; + border-spacing: 4px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +/** + * Title buttons + */ +windowcontrols { + border-spacing: 4px; +} +windowcontrols:not(:only-child):not(.empty) { + border-image: linear-gradient(to bottom, transparent 12px, rgba(221, 199, 161, 0.2) 12px, rgba(221, 199, 161, 0.2) calc(100% - 12px), transparent calc(100% - 12px)) 1; +} +windowcontrols:not(:only-child):not(.empty).start:dir(ltr), windowcontrols:not(:only-child):not(.empty).end:dir(rtl) { + padding-right: 4px; + border-right: 1px solid; +} +windowcontrols:not(:only-child):not(.empty).start:dir(rtl), windowcontrols:not(:only-child):not(.empty).end:dir(ltr) { + padding-left: 4px; + border-left: 1px solid; +} +/** + * Header bars + */ +.titlebar { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px 6px 0 0; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; + color: #ddc7a1; +} +.titlebar:disabled { + color: rgba(221, 199, 161, 0.5); +} +.titlebar:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +.titlebar:backdrop:disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar box.start, +.titlebar box.end { + border-spacing: 4px; +} +.titlebar .title { + padding-left: 12px; + padding-right: 12px; + font-weight: bold; +} +.titlebar .subtitle { + padding-left: 12px; + padding-right: 12px; + font-size: smaller; +} +.titlebar .subtitle, +.titlebar .dim-label { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(221, 199, 161, 0.7); +} +.titlebar .subtitle:backdrop, +.titlebar .dim-label:backdrop { + color: rgba(221, 199, 161, 0.5); +} +.titlebar headerbar + separator { + background-color: rgba(221, 199, 161, 0.2); +} +.titlebar entry { + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.3); + background-color: rgba(221, 199, 161, 0.04); + color: #ddc7a1; +} +.titlebar entry:disabled { + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.2); + background-color: rgba(221, 199, 161, 0.04); + color: rgba(221, 199, 161, 0.5); +} +.titlebar entry image { + color: rgba(221, 199, 161, 0.7); +} +.titlebar entry image:hover, .titlebar entry image:active { + color: #ddc7a1; +} +.titlebar entry image:disabled { + color: rgba(221, 199, 161, 0.5); +} +.titlebar .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} +.titlebar button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 0%, transparent 0%) 0 0 0/0 0 0px; + background-color: transparent; + color: rgba(221, 199, 161, 0.7); +} +.titlebar button:not(.suggested-action):not(.destructive-action):drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):hover { + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):focus { + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):active { + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 10%); +} +.titlebar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 100%, transparent 100%) 0 0 2/0 0 2px; + background-color: transparent; + color: #ddc7a1; +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked:drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):checked:hover { + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked:focus { + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked:active { + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 10%); +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.5); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(221, 199, 161, 0.5); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(221, 199, 161, 0.7); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(221, 199, 161, 0.3); +} + +.titlebar button.suggested-action:disabled, +.titlebar button.destructive-action:disabled { + background-color: rgba(221, 199, 161, 0.08); + color: rgba(221, 199, 161, 0.5); +} +.titlebar stackswitcher button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 104px; +} +.titlebar .path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; + padding-left: 4px; + padding-right: 4px; +} +.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); + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode .subtitle:link { + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.38); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 100%) 0 0 2/0 0 2px; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(255, 255, 255, 0.38); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.26); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.26); +} +.titlebar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} +.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +.titlebar .selection-mode { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #7c6f64; +} +.tiled .titlebar, .tiled-top .titlebar, .tiled-right .titlebar, .tiled-bottom .titlebar, .tiled-left .titlebar, .maximized .titlebar, .fullscreen .titlebar { + border-radius: 0; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} +.titlebar.default-decoration { + min-height: 24px; + padding: 4px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} +.tiled .titlebar.default-decoration, .maximized .titlebar.default-decoration, .fullscreen .titlebar.default-decoration { + box-shadow: none; +} +.titlebar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} +.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: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} + +headerbar > windowhandle > box { + min-height: 40px; + padding: 0 4px; + border-spacing: 4px; +} +headerbar > windowhandle > box entry, +headerbar > windowhandle > box spinbutton, +headerbar > windowhandle > box button { + margin-top: 4px; + margin-bottom: 4px; +} +headerbar > windowhandle > box separator.titlebutton { + margin-top: 10px; + margin-bottom: 10px; + background-color: rgba(221, 199, 161, 0.2); +} +headerbar > windowhandle > box switch { + margin-top: 8px; + margin-bottom: 8px; +} +headerbar > windowhandle > box spinbutton button { + margin-top: 0; + margin-bottom: 0; +} +headerbar > windowhandle > box .entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +/** + * Pathbars + */ +pathbar.linked:not(.vertical) > button { + padding-left: 4px; + padding-right: 4px; + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 6px; +} +pathbar.linked:not(.vertical) > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 100%) 0 0 2/0 0 2px; + color: #d4be98; +} +pathbar.linked:not(.vertical) > button:checked, +pathbar.linked:not(.vertical) > button:checked:disabled { + background-color: transparent; +} +pathbar.linked:not(.vertical) > button label:not(:only-child):first-child { + margin-left: 0; +} +pathbar.linked:not(.vertical) > button label:not(:only-child):last-child { + margin-right: 0; +} +pathbar.linked:not(.vertical) > button.text-button { + min-width: 0; +} +pathbar.linked:not(.vertical) > button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +/** + * Tree Views + */ +columnview.view, +treeview.view { + border-left-color: rgba(212, 190, 152, 0.3); + border-top-color: rgba(212, 190, 152, 0.2); +} +columnview.view.separator, +treeview.view.separator { + min-height: 5px; + color: rgba(212, 190, 152, 0.2); +} +columnview.view:drop(active), +treeview.view:drop(active) { + box-shadow: none; +} +columnview.view > dndtarget:drop(active), +treeview.view > dndtarget:drop(active) { + border-style: solid none; + border-width: 9999px; + border-color: rgba(212, 190, 152, 0.08); +} +columnview.view > dndtarget:drop(active).after, +treeview.view > dndtarget:drop(active).after { + border-top-style: none; +} +columnview.view > dndtarget:drop(active).before, +treeview.view > dndtarget:drop(active).before { + border-bottom-style: none; +} +columnview.view.expander, +treeview.view.expander { + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(212, 190, 152, 0.7); +} +columnview.view.expander:dir(rtl), +treeview.view.expander:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} +columnview.view.expander:checked, +treeview.view.expander:checked { + -gtk-icon-transform: unset; +} +columnview.view.expander:hover, columnview.view.expander:active, +treeview.view.expander:hover, +treeview.view.expander:active { + color: #d4be98; +} +columnview.view.expander:disabled, +treeview.view.expander:disabled { + color: rgba(212, 190, 152, 0.3); +} +columnview.view.progressbar, +treeview.view.progressbar { + border-bottom: 4px solid #7c6f64; + background-color: transparent; +} +columnview.view.progressbar:selected:hover, +treeview.view.progressbar:selected:hover { + background-color: transparent; +} +columnview.view.trough, +treeview.view.trough { + border-bottom: 4px solid rgba(212, 190, 152, 0.2); + background-color: transparent; +} +columnview.view.trough:selected:hover, +treeview.view.trough:selected:hover { + background-color: transparent; +} +columnview.view > header > button, +treeview.view > header > button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); + border-radius: 0; + background-clip: padding-box; + background-color: transparent; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +columnview.view > header > button:drop(active), columnview.view > header > button:hover, +treeview.view > header > button:drop(active), +treeview.view > header > button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.04); +} +columnview.view > header > button:focus, +treeview.view > header > button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +columnview.view > header > button:active, +treeview.view > header > button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +columnview.view > header > button:drop(active):not(:active), columnview.view > header > button:hover:not(:active), +treeview.view > header > button:drop(active):not(:active), +treeview.view > header > button:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +columnview.view > header > button:disabled, +treeview.view > header > button:disabled { + color: rgba(212, 190, 152, 0.3); +} +columnview.view > header > button:last-child, +treeview.view > header > button:last-child { + border-right-style: none; +} +columnview.view > header > button > box > sort-indicator, +treeview.view > header > button > box > sort-indicator { + min-height: 16px; + min-width: 16px; +} +columnview.view > header > button > box > sort-indicator.ascending, +treeview.view > header > button > box > sort-indicator.ascending { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +columnview.view > header > button > box > sort-indicator.descending, +treeview.view > header > button > box > sort-indicator.descending { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +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(212, 190, 152, 0.2); + border-radius: 0; + box-shadow: none; + background-clip: border-box; + color: #7c6f64; +} +columnview.view acceleditor > label, +treeview.view acceleditor > label { + background-color: #7c6f64; +} + +/** + * Menus + */ +menubar { + background-color: #32302f; + color: #ddc7a1; +} +menubar:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +.csd menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} +menubar > item { + min-height: 20px; + padding: 4px 8px; + color: rgba(221, 199, 161, 0.7); +} +menubar > item:hover { + background-color: rgba(221, 199, 161, 0.08); +} +menubar > item:focus:not(:hover) { + background-color: rgba(221, 199, 161, 0.08); +} +menubar > item:active { + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 10%); +} +menubar > item:selected:not(:focus) { + transition: none; + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} +menubar > item:disabled { + color: rgba(221, 199, 161, 0.3); +} + +popover.menu > contents { + padding: 6px 0; +} +popover.menu separator { + margin: 6px 0; +} +popover.menu label.title { + min-height: 24px; + padding: 4px 32px; + font-weight: bold; +} +popover.menu modelbutton { + min-height: 22px; + min-width: 40px; + padding: 4px 32px; +} +popover.menu modelbutton:disabled { + color: rgba(212, 190, 152, 0.5); +} +popover.menu modelbutton accelerator { + color: rgba(212, 190, 152, 0.7); +} +popover.menu modelbutton accelerator:dir(ltr) { + margin-left: 24px; + margin-right: -16px; +} +popover.menu modelbutton accelerator:dir(rtl) { + margin-left: -16px; + margin-right: 24px; +} +popover.menu modelbutton:disabled accelerator { + color: rgba(212, 190, 152, 0.3); +} +popover.menu check, popover.menu check:focus, popover.menu check:hover, popover.menu check:active, popover.menu check:disabled, +popover.menu radio, +popover.menu radio:focus, +popover.menu radio:hover, +popover.menu radio:active, +popover.menu radio:disabled { + background-color: transparent; + background-image: none; +} +popover.menu arrow, +popover.menu check, +popover.menu radio { + min-width: 16px; + min-height: 16px; + margin: 0; + padding: 0; +} +popover.menu arrow.left, +popover.menu check.left, +popover.menu radio.left { + margin-left: -24px; + margin-right: 8px; +} +popover.menu arrow.right, +popover.menu check.right, +popover.menu radio.right { + margin-left: 8px; + margin-right: -24px; +} +popover.menu box.inline-buttons { + padding: 0 8px; +} +popover.menu box.circular-buttons { + padding: 4px 32px; +} +popover.menu box.circular-buttons button.circular.image-button.model { + padding: 12px; +} + +/** + * Popovers + */ +popover { + font: initial; +} +popover.background { + background-color: transparent; +} +popover > arrow, +popover > contents { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; + color: #d4be98; +} +popover > arrow:backdrop, +popover > contents:backdrop { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} +popover > arrow { + border-width: 1px; + border-style: solid; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + background-clip: padding-box; +} + +popover > contents { + padding: 8px; + border-radius: 6px; +} +popover > contents > list, +popover > contents .view, +popover > contents > .toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} +popover frame, +popover .frame { + border: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: none; + background-color: transparent; +} +/** + * Notebooks + */ +notebook:focus:focus-visible > header > tabs > tab:checked { + background-color: rgba(124, 111, 100, 0.08); +} +notebook > header.top { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); +} +notebook > header.top > tabs > tab { + box-shadow: inset 0 -2px transparent; +} +notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -2px #7c6f64; +} +notebook > header.bottom { + box-shadow: inset 0 1px rgba(212, 190, 152, 0.2); +} +notebook > header.bottom > tabs > tab { + box-shadow: inset 0 2px transparent; +} +notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 2px #7c6f64; +} +notebook > header.left { + box-shadow: inset -1px 0 rgba(212, 190, 152, 0.2); +} +notebook > header.left > tabs > tab { + box-shadow: inset -2px 0 transparent; +} +notebook > header.left > tabs > tab:checked { + box-shadow: inset -2px 0 #7c6f64; +} +notebook > header.right { + box-shadow: inset 1px 0 rgba(212, 190, 152, 0.2); +} +notebook > header.right > tabs > tab { + box-shadow: inset 2px 0 transparent; +} +notebook > header.right > tabs > tab:checked { + box-shadow: inset 2px 0 #7c6f64; +} +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + border-radius: 0; + color: rgba(212, 190, 152, 0.7); +} +notebook > header > tabs > arrow:drop(active), notebook > header > tabs > arrow:hover { + background-color: rgba(212, 190, 152, 0.04); +} +notebook > header > tabs > arrow:focus { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > arrow:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +notebook > header > tabs > arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +notebook > header > tabs > tab { + min-height: 24px; + min-width: 24px; + padding: 4px 12px; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +notebook > header > tabs > tab:drop(active), notebook > header > tabs > tab:hover { + background-color: rgba(212, 190, 152, 0.04); +} +notebook > header > tabs > tab:focus { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > tab:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +notebook > header > tabs > tab:disabled { + color: rgba(212, 190, 152, 0.3); +} +notebook > header > tabs > tab:checked { + color: #7c6f64; +} +notebook > header > tabs > tab:checked:drop(active), notebook > header > tabs > tab:checked:hover { + background-color: rgba(124, 111, 100, 0.04); +} +notebook > header > tabs > tab:checked:focus { + background-color: rgba(124, 111, 100, 0.08); +} +notebook > header > tabs > tab:checked:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +notebook > header > tabs > tab:checked:disabled { + color: rgba(212, 190, 152, 0.3); +} +notebook > header > tabs > tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -4px -12px; + padding: 4px 12px; +} +notebook > header > tabs > tab > box:drop(active) { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > tab button.flat:last-child { + margin-left: 4px; + margin-right: -8px; +} +notebook > header > tabs > tab button.flat:first-child { + margin-left: -8px; + margin-right: 4px; +} + +/** + * Scrollbars + */ +scrollbar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-clip: padding-box; +} +scrollbar.top { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.bottom { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.left { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.right { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar > range > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 10px; + min-height: 10px; + border: 3px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(212, 190, 152, 0.5); +} +scrollbar > range > trough > slider:hover { + background-color: rgba(212, 190, 152, 0.6); +} +scrollbar > range > trough > slider:active { + background-color: rgba(212, 190, 152, 0.7); +} +scrollbar > range > trough > slider:disabled { + background-color: rgba(212, 190, 152, 0.3); +} +scrollbar.horizontal > range > trough > slider { + min-width: 24px; +} +scrollbar.vertical > range > trough > slider { + min-height: 24px; +} +scrollbar > range.fine-tune > trough > slider { + min-width: 4px; + min-height: 4px; +} +scrollbar > range.fine-tune.horizontal > trough > slider { + margin: 3px 0; +} +scrollbar > range.fine-tune.vertical > trough > slider { + margin: 0 3px; +} +scrollbar.overlay-indicator > range:not(.fine-tune) > 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 > slider { + min-width: 4px; + min-height: 4px; + margin: 2px; + border: 1px solid rgba(40, 40, 40, 0.3); +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal > range > trough > slider { + min-width: 24px; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical > range > trough > slider { + min-height: 24px; +} +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: #3C3836; +} + +/** + * Switch + */ +switch { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(212, 190, 152, 0.3); + background-clip: padding-box; + font-size: 0; +} +switch:checked { + background-color: rgba(124, 111, 100, 0.5); +} +switch:disabled { + opacity: 0.5; +} +switch > image { + margin: -8px; + -gtk-icon-transform: scale(0); +} +switch > slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + box-shadow: 0 0 0 10px transparent, 0 0 0 -10px rgba(212, 190, 152, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; +} +switch:hover > slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 0 0 -10px rgba(212, 190, 152, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:focus > slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 0 0 -10px rgba(212, 190, 152, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:active > slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 0 0 10px rgba(212, 190, 152, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:checked > slider { + background-color: #7c6f64; +} +switch:checked:hover > slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 0 0 -10px rgba(124, 111, 100, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:checked:focus > slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 0 0 -10px rgba(124, 111, 100, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:checked:active > slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 0 0 10px rgba(124, 111, 100, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +/** + * Check and Radio items + */ +.view.content-view.check:not(list), +.content-view:not(list) .tile check { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12); +} +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view:not(list) .tile check:hover, +.content-view:not(list) .tile check:active { + -gtk-icon-shadow: 0 2px 3px rgba(0, 0, 0, 0.2), 0 4px 5px rgba(0, 0, 0, 0.14), 0 1px 10px rgba(0, 0, 0, 0.12); +} +.view.content-view.check:not(list), +.content-view:not(list) .tile check { + -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:not(list) .tile check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + border-spacing: 4px; +} +checkbutton.text-button, +radiobutton.text-button { + padding: 4px; +} + +check, +radio { + min-height: 24px; + min-width: 24px; + margin: -8px; + padding: 8px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); +} +check:drop(active), check:hover, +radio:drop(active), +radio:hover { + background-color: rgba(212, 190, 152, 0.08); +} +check:focus, +radio:focus { + background-color: rgba(212, 190, 152, 0.08); +} +check:active, +radio:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #7c6f64; +} +check:checked:drop(active), check:checked:hover, check:indeterminate:drop(active), check:indeterminate:hover, +radio:checked:drop(active), +radio:checked:hover, +radio:indeterminate:drop(active), +radio:indeterminate:hover { + background-color: rgba(124, 111, 100, 0.08); +} +check:checked:focus, check:indeterminate:focus, +radio:checked:focus, +radio:indeterminate:focus { + background-color: rgba(124, 111, 100, 0.08); +} +check:checked:active, check:indeterminate:active, +radio:checked:active, +radio:indeterminate:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +check:disabled, +radio:disabled { + color: rgba(212, 190, 152, 0.3); +} + +check { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-unchecked-symbolic.svg")); +} +check:checked { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-checked-symbolic.svg")); +} +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-mixed-symbolic.svg")); +} + +radio { + -gtk-icon-source: -gtk-recolor(url("icons/radio-unchecked-symbolic.svg")); + border-image-slice: 20; + border-image-width: 20px; + border-image-source: radial-gradient(circle, #7c6f64 0%, transparent 0%); +} +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/radio-mixed-symbolic.svg")); +} +radio:checked:not(:indeterminate) { + border-image-source: radial-gradient(circle, #7c6f64 4.5px, transparent 5px); +} +radio:checked:not(:indeterminate):disabled { + border-image-source: radial-gradient(circle, rgba(212, 190, 152, 0.3) 4.5px, transparent 5px); +} + +popover.menu modelbutton check { + min-height: 16px; + min-width: 16px; + border-radius: 6px; + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-unchecked-symbolic.svg")); +} +popover.menu modelbutton check:checked { + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-checked-symbolic.svg")); +} +popover.menu modelbutton check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-mixed-symbolic.svg")); +} + +popover.menu modelbutton radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-unchecked-symbolic.svg")); +} +popover.menu modelbutton radio:checked { + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-checked-symbolic.svg")); +} +popover.menu modelbutton radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-mixed-symbolic.svg")); +} + +treeview.view check, +treeview.view radio { + padding: 0; + color: rgba(212, 190, 152, 0.7); +} +treeview.view check:checked, treeview.view check:indeterminate, +treeview.view radio:checked, +treeview.view radio:indeterminate { + color: #7c6f64; +} +treeview.view check:disabled, +treeview.view radio:disabled { + color: rgba(212, 190, 152, 0.3); +} +treeview.view check, treeview.view check:hover, treeview.view check:selected, treeview.view check:selected:hover, +treeview.view radio, +treeview.view radio:hover, +treeview.view radio:selected, +treeview.view radio:selected:hover { + background-color: transparent; +} + +treeview.view radio:checked { + -gtk-icon-source: -gtk-recolor(url("icons/radio-checked-symbolic.svg")); + border-image: none; +} + +/** + * GtkScale + */ +scale { + min-height: 2px; + min-width: 2px; +} +scale.horizontal { + padding: 15px 12px; +} +scale.vertical { + padding: 12px 15px; +} +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 14px; + padding-bottom: 14px; +} +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 14px; + padding-right: 14px; +} +scale.fine-tune > trough > slider { + margin: -14px; +} +scale > trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(212, 190, 152, 0.3); +} +scale > trough:disabled { + background-color: rgba(212, 190, 152, 0.2); +} +scale > trough > highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); + background-image: image(#7c6f64); +} +scale > trough > highlight:disabled { + background-color: #282828; + background-image: image(rgba(212, 190, 152, 0.3)); +} +scale > trough > fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(212, 190, 152, 0.3); +} +scale > trough > fill:disabled { + background-color: transparent; +} +scale > 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-width: 32px; + min-height: 32px; + margin: -15px; + border-radius: 50%; + background-repeat: no-repeat; + background-position: center; + background-size: auto, 1000% 1000%; + color: #7c6f64; +} +scale > trough > slider { + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 10%); +} +scale > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 10%); +} +scale > trough > slider:hover { + background-color: rgba(124, 111, 100, 0.08); +} +scale > trough > slider:focus { + background-color: rgba(124, 111, 100, 0.08); +} +scale > trough > 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-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); + background-size: auto, 0% 0%; +} +scale > marks, +scale > value { + color: rgba(212, 190, 152, 0.7); +} +scale > value { + font-feature-settings: "tnum"; +} +scale indicator { + background-color: rgba(212, 190, 152, 0.3); +} +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 { + 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 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +scale.color { + min-height: 0; + min-width: 0; +} +scale.color.horizontal:dir(ltr), scale.color.horizontal:dir(rtl) { + padding: 0 0 12px 0; +} +scale.color.horizontal:dir(ltr) slider, scale.color.horizontal:dir(rtl) slider { + margin-bottom: -24px; + margin-top: 8px; +} +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} +scale.color.vertical:dir(ltr) slider { + margin-left: -24px; + margin-right: 8px; +} +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} +scale.color.vertical:dir(rtl) slider { + margin-right: -24px; + margin-left: 8px; +} + +/** + * Progress bars + */ +progressbar { + color: rgba(212, 190, 152, 0.7); + font-size: smaller; + font-feature-settings: "tnum"; +} +progressbar > trough { + background-color: rgba(212, 190, 152, 0.2); +} +progressbar > trough > progress { + background-color: #7c6f64; +} +progressbar.horizontal > trough { + min-width: 150px; +} +progressbar.horizontal > trough, +progressbar.horizontal > trough > progress { + min-height: 4px; +} +progressbar.vertical > trough { + min-height: 80px; +} +progressbar.vertical > trough, +progressbar.vertical > trough > progress { + min-width: 4px; +} +progressbar > trough.empty > progress { + all: unset; +} + +/** + * Level Bar + */ +levelbar.horizontal > trough > block { + min-height: 4px; +} +levelbar.horizontal.discrete > trough > block { + min-width: 32px; +} +levelbar.horizontal.discrete > trough > block:not(:last-child) { + margin-right: 2px; +} +levelbar.vertical > trough > block { + min-width: 4px; +} +levelbar.vertical.discrete > trough > block { + min-height: 32px; +} +levelbar.vertical.discrete > trough > block:not(:last-child) { + margin-bottom: 2px; +} +levelbar > trough > block.low { + background-color: #d8a657; +} +levelbar > trough > block.high, levelbar > trough > block:not(.empty) { + background-color: #7c6f64; +} +levelbar > trough > block.full { + background-color: #a9b665; +} +levelbar > trough > block.empty { + background-color: rgba(212, 190, 152, 0.2); +} + +/** + * Print dialog + */ +window.dialog.print paper { + border-radius: 6px; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: #d4be98; +} +window.dialog.print .dialog-action-box { + margin: 12px; +} + +/** + * Frames + */ +frame, +.frame { + border-radius: 6px; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: #d4be98; +} +frame > label { + margin: 4px; +} + +statusbar { + padding: 6px 10px; +} + +actionbar > revealer > box { + padding: 4px; + border-spacing: 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +actionbar > revealer > box .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} + +overshoot.top { + background-image: radial-gradient(farthest-side at top, rgba(124, 111, 100, 0.24) 99%, rgba(124, 111, 100, 0) 100%); + background-size: 200% 75%; + background-repeat: no-repeat; + background-position: top; +} +overshoot.bottom { + background-image: radial-gradient(farthest-side at bottom, rgba(124, 111, 100, 0.24) 99%, rgba(124, 111, 100, 0) 100%); + background-size: 200% 75%; + background-repeat: no-repeat; + background-position: bottom; +} +overshoot.left { + background-image: radial-gradient(farthest-side at left, rgba(124, 111, 100, 0.24) 99%, rgba(124, 111, 100, 0) 100%); + background-size: 75% 200%; + background-repeat: no-repeat; + background-position: left; +} +overshoot.right { + background-image: radial-gradient(farthest-side at right, rgba(124, 111, 100, 0.24) 99%, rgba(124, 111, 100, 0) 100%); + background-size: 75% 200%; + background-repeat: no-repeat; + background-position: right; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); +} +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(212, 190, 152, 0.2); +} + +button.font > box > box > separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/** + * Lists + */ +listview > row, +list > row { + padding: 2px; +} +listview > row.expander, +list > row.expander { + padding: 0; +} +listview > row.expander .row-header, +list > row.expander .row-header { + padding: 2px; +} +listview.separators:not(.horizontal) > row:not(:first-child), +list.separators:not(.horizontal) > row:not(:first-child) { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +listview.separators.horizontal > row:not(:first-child), +list.separators.horizontal > row:not(:first-child) { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} + +row { + background-clip: padding-box; +} +row.activatable:drop(active), row.activatable:hover { + background-color: rgba(212, 190, 152, 0.04); +} +row.activatable:focus { + background-color: rgba(212, 190, 152, 0.08); +} +row.activatable:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +row.activatable:drop(active):not(:active), row.activatable:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +row.activatable.has-open-popup { + background-color: rgba(212, 190, 152, 0.12); +} +row:selected { + background-color: rgba(124, 111, 100, 0.6); + background-color: rgba(124, 111, 100, 0.6); +} +row:selected:drop(active), row:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +row:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +row:selected.has-open-popup { + background-color: rgba(124, 111, 100, 0.648); +} + +listview > row:drop(active), listview > row:hover { + background-color: rgba(212, 190, 152, 0.04); +} +listview > row:focus { + background-color: rgba(212, 190, 152, 0.08); +} +listview > row:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +listview > row:drop(active):not(:active), listview > row:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +listview:selected { + background-color: rgba(124, 111, 100, 0.6); + background-color: rgba(124, 111, 100, 0.6); +} +listview:selected:drop(active), listview:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +listview:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +listview:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +columnview > listview > row { + padding: 0; +} +columnview > listview > row > cell { + min-height: 24px; + padding: 4px 6px; +} +columnview > listview > row > cell:not(:last-child) { + border-right: 1px solid transparent; +} +columnview.column-separators > listview > row > cell { + border-right-color: rgba(212, 190, 152, 0.2); +} +columnview.data-table > listview > row > cell { + padding-top: 2px; + padding-bottom: 2px; +} + +.rich-list > row { + padding: 12px; + min-height: 32px; +} +.rich-list > row > box { + border-spacing: 12px; +} + +/** + * App Notifications + */ +.app-notification { + margin: 8px; + border-style: none; +} +.app-notification button.text-button:not(:disabled) { + color: #7c6f64; +} +.app-notification button.text-button:not(:disabled):drop(active), .app-notification button.text-button:not(:disabled):hover { + background-color: rgba(124, 111, 100, 0.08); +} +.app-notification button.text-button:not(:disabled):focus { + background-color: rgba(124, 111, 100, 0.08); +} +.app-notification button.text-button:not(:disabled):active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +/** + * Expanders + */ +expander { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + padding: 4px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +expander:drop(active), expander:hover { + background-color: rgba(212, 190, 152, 0.08); +} +expander:focus { + background-color: rgba(212, 190, 152, 0.08); +} +expander:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +expander:disabled { + color: rgba(212, 190, 152, 0.3); +} +expander:checked:dir(ltr) { + -gtk-icon-transform: rotate(-180deg); +} +expander:checked:dir(rtl) { + -gtk-icon-transform: rotate(180deg); +} + +indent { + min-width: 16px; + min-height: 16px; + padding: 4px; +} + +expander-widget:focus > box > title > expander { + box-shadow: inset 0 0 0 9999px rgba(212, 190, 152, 0.08); +} +expander-widget > box > title:drop(active) > expander, +expander-widget > box > title:hover > expander { + box-shadow: inset 0 0 0 9999px rgba(212, 190, 152, 0.08); +} +expander-widget > box > title:active > expander { + transition-duration: 75ms, 225ms, 0ms, 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: 0% 0%; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} + +/** + * Calendar + */ +calendar { + border-radius: 6px; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: #d4be98; +} +calendar:disabled { + color: rgba(212, 190, 152, 0.5); +} +calendar > header { + padding: 4px; + border-spacing: 4px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +calendar > header > button.image-button { + padding: 0; + min-width: 28px; + min-height: 28px; + border-radius: 9999px; + background-color: transparent; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +calendar > header > button.image-button:drop(active), calendar > header > button.image-button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +calendar > header > button.image-button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +calendar > header > button.image-button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +calendar > header > button.image-button:disabled { + color: rgba(212, 190, 152, 0.3); +} +calendar > grid { + padding: 4px; + border-spacing: 4px; +} +calendar > grid > label { + padding: 0; + min-width: 28px; + min-height: 28px; + border-radius: 9999px; +} +calendar > grid > label.day-name, +calendar > grid > label.week-number { + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +calendar > grid > label.day-number:drop(active), calendar > grid > label.day-number:hover { + background-color: rgba(212, 190, 152, 0.08); +} +calendar > grid > label.day-number:focus { + background-color: rgba(212, 190, 152, 0.08); +} +calendar > grid > label.day-number:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +calendar > grid > label.day-number.today { + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.7); +} +calendar > grid > label.day-number.other-month { + color: rgba(212, 190, 152, 0.3); +} +calendar > grid > label.day-number:selected { + background-color: rgba(124, 111, 100, 0.6); + box-shadow: inset 0 0 0 1px transparent; + background-color: rgba(124, 111, 100, 0.6); +} +calendar > grid > label.day-number:selected:drop(active), calendar > grid > label.day-number:selected:hover { + background-color: rgba(124, 111, 100, 0.632); +} +calendar > grid > label.day-number:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +calendar > grid > label.day-number:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +/** + * Dialogs + */ +window.dialog.message.csd.background { + min-width: 280px; + border-radius: 6px; + background-color: #3C3836; +} +window.dialog.message > .titlebar { + min-height: 24px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: transparent; + color: #d4be98; +} +window.dialog.message > .titlebar:backdrop { + background-color: transparent; + color: rgba(212, 190, 152, 0.7); +} +window.dialog.message > box.dialog-vbox.vertical { + border-spacing: 20px; +} +window.dialog.message > box.dialog-vbox.vertical > box.vertical > box.horizontal { + margin: 0 -6px; +} +window.dialog.message label.title { + font-weight: 500; + font-size: 15pt; + letter-spacing: 0.1125pt; +} +window.dialog.message label.title + label { + color: rgba(212, 190, 152, 0.7); +} +window.dialog.message list, +window.dialog.message .view { + background-color: transparent; +} +window.dialog.message .dialog-action-area > button:not(:disabled) { + color: #7c6f64; +} +window.dialog.message .dialog-action-area > button:not(:disabled):drop(active), window.dialog.message .dialog-action-area > button:not(:disabled):hover { + background-color: rgba(124, 111, 100, 0.08); +} +window.dialog.message .dialog-action-area > button:not(:disabled):focus { + background-color: rgba(124, 111, 100, 0.08); +} +window.dialog.message .dialog-action-area > button:not(:disabled):active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +window.dialog.message .dialog-action-area > button.suggested-action:not(:disabled) { + background-color: transparent; +} +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled) { + background-color: transparent; + color: #ea6962; +} +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled):drop(active), window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled):hover { + background-color: rgba(234, 105, 98, 0.12); +} +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled):focus { + background-color: rgba(234, 105, 98, 0.12); +} +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled):active { + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 10%); +} + +.dialog-action-area { + padding: 4px; + border-spacing: 4px; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +filechooser #pathbarbox { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +filechooser #pathbarbox > stack > box > button { + border-radius: 9999px; +} + +filechooserbutton > button > box { + border-spacing: 6px; +} + +/** + * Sidebar + */ +.sidebar { + border-style: none; +} +.sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) { + border-right: 1px solid rgba(212, 190, 152, 0.2); + border-left-style: none; +} + +.sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { + border-left: 1px solid rgba(212, 190, 152, 0.2); + border-right-style: none; +} + +paned .sidebar:dir(rtl):not(:dir(ltr)), paned .sidebar:dir(ltr):not(:dir(rtl)) { + border-style: none; +} + +stacksidebar.sidebar list { + padding: 4px; +} +stacksidebar.sidebar list.separators:not(.horizontal) > row:not(:first-child) { + border-top-style: none; +} +stacksidebar.sidebar row { + min-height: 32px; + padding: 0 2px; + border-radius: 6px; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +stacksidebar.sidebar row:selected { + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); +} +stacksidebar.sidebar row:selected:drop(active), stacksidebar.sidebar row:selected:hover { + background-color: rgba(124, 111, 100, 0.1904); +} +stacksidebar.sidebar row:selected:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +stacksidebar.sidebar row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +stacksidebar.sidebar row + row { + margin-top: 4px; +} +stacksidebar.sidebar row > label { + padding-left: 6px; + padding-right: 6px; +} +/** + * File chooser + */ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +row image.sidebar-icon:disabled { + color: rgba(212, 190, 152, 0.3); +} + +placessidebar.sidebar list { + padding: 4px 0; +} +placessidebar.sidebar list > separator { + margin: 4px 0; +} +placessidebar.sidebar row { + min-height: 32px; + margin: 0 4px; + padding: 0; + border-radius: 6px; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +placessidebar.sidebar row > revealer { + padding: 0 8px; +} +placessidebar.sidebar row:selected { + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); +} +placessidebar.sidebar row:selected:drop(active), placessidebar.sidebar row:selected:hover { + background-color: rgba(124, 111, 100, 0.1904); +} +placessidebar.sidebar row:selected:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +placessidebar.sidebar row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +placessidebar.sidebar row:selected image.sidebar-icon { + color: #7c6f64; +} +placessidebar.sidebar row:disabled { + color: rgba(212, 190, 152, 0.5); +} +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:dir(ltr) { + padding-right: 2px; +} +placessidebar.sidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} +placessidebar.sidebar row.sidebar-placeholder-row { + background-color: rgba(212, 190, 152, 0.08); +} +placessidebar.sidebar row.sidebar-new-bookmark-row { + color: #7c6f64; +} +placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #7c6f64; +} + +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 > box { + border-spacing: 4px; +} +placesview > actionbar > revealer > box > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/** + * Paned + */ +paned > separator { + background-clip: content-box; +} +paned > separator.wide { + min-width: 4px; + min-height: 4px; + border: 1px solid rgba(212, 190, 152, 0.2); + background-color: transparent; +} +paned.horizontal > separator:not(.wide) { + margin: 0 -4px; + padding: 0 4px; +} +paned.horizontal > separator.wide { + border-style: none solid; +} +paned.vertical > separator:not(.wide) { + margin: -4px 0; + padding: 4px 0; +} +paned.vertical > separator.wide { + border-style: solid none; +} + +/** + * GtkVideo + */ +video { + background-color: black; +} +video image.osd { + min-width: 64px; + min-height: 64px; + border-radius: 32px; + background-color: black; + color: rgba(255, 255, 255, 0.87); +} +video controls.osd { + padding: 4px; + 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)); + color: rgba(255, 255, 255, 0.87); +} +video controls.osd button { + background-color: transparent; + color: rgba(255, 255, 255, 0.6); +} +video controls.osd button:drop(active), video controls.osd button:hover { + background-color: rgba(255, 255, 255, 0.08); +} +video controls.osd button:focus { + background-color: rgba(255, 255, 255, 0.08); +} +video controls.osd button:active { + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 10%); +} + +/** + * GtkInfoBar + */ +infobar > revealer > box { + padding: 8px; + border-spacing: 12px; +} +infobar.action:hover > revealer > box { + background-image: image(rgba(212, 190, 152, 0.08)); +} +infobar.info > revealer > box, infobar.question > revealer > box { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +infobar.info > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button.text-button:not(:disabled) { + color: #7c6f64; +} +infobar.info > revealer > box button.text-button:not(:disabled):drop(active), infobar.info > revealer > box button.text-button:not(:disabled):hover, infobar.question > revealer > box button.text-button:not(:disabled):drop(active), infobar.question > revealer > box button.text-button:not(:disabled):hover { + background-color: rgba(124, 111, 100, 0.08); +} +infobar.info > revealer > box button.text-button:not(:disabled):focus, infobar.question > revealer > box button.text-button:not(:disabled):focus { + background-color: rgba(124, 111, 100, 0.08); +} +infobar.info > revealer > box button.text-button:not(:disabled):active, infobar.question > revealer > box button.text-button:not(:disabled):active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +infobar.warning > revealer > box { + background-color: #d8a657; + color: #000; +} +infobar.warning > revealer > box button.flat { + color: #000; +} +infobar.warning > revealer > box button.flat:drop(active), infobar.warning > revealer > box button.flat:hover { + background-color: rgba(0, 0, 0, 0.08); +} +infobar.warning > revealer > box button.flat:focus { + background-color: rgba(0, 0, 0, 0.08); +} +infobar.warning > revealer > box button.flat:active { + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 10%); +} +infobar.warning > revealer > box link { + color: #000; +} +infobar.error > revealer > box { + background-color: #ea6962; + color: #000; +} +infobar.error > revealer > box button.flat { + color: #000; +} +infobar.error > revealer > box button.flat:drop(active), infobar.error > revealer > box button.flat:hover { + background-color: rgba(0, 0, 0, 0.08); +} +infobar.error > revealer > box button.flat:focus { + background-color: rgba(0, 0, 0, 0.08); +} +infobar.error > revealer > box button.flat:active { + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 10%); +} +infobar.error > revealer > box link { + color: #000; +} +/** + * Tooltips + */ +tooltip { + min-height: 24px; + padding: 4px 8px; + border-radius: 6px; +} +tooltip.background { + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} +tooltip:not(.csd) { + background-color: rgba(50, 48, 47, 0.9); +} +tooltip > box { + border-spacing: 6px; +} +tooltip .dim-label { + color: rgba(221, 199, 161, 0.7); +} + +/** + * Color Chooser + */ +colorswatch { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +colorswatch:drop(active), colorswatch.activatable:hover { + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +colorswatch:disabled { + opacity: 0.5; +} +colorswatch.top { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} +colorswatch.bottom { + 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.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +colorswatch.dark { + color: #fff; +} +colorswatch.light { + color: #000; +} +colorswatch#add-color-button { + background-color: #3C3836; + color: #d4be98; +} +colorswatch#editor-color-sample { + border-radius: 6px; +} + +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); +} + +/** + * Misc + */ +/** + * Window Decorations + */ +window.csd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px 6px 0 0; + border-radius: 6px; + box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 16px 24px 2px transparent, 0 6px 30px 5px transparent; +} +window.csd:backdrop { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 16px 24px 2px transparent, 0 6px 30px 5px transparent; +} +window.ssd { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} +window.solid-csd { + margin: 0; + padding: 2px; + border-radius: 0; + box-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; +} +window.solid-csd:backdrop { + background-color: #282625; +} +window.maximized, window.fullscreen, window.tiled, window.tiled-top, window.tiled-left, window.tiled-right, window.tiled-bottom { + border-radius: 0; +} + +.monospace { + font-family: monospace; +} + +/** + * Touch Copy & Paste + */ +cursor-handle { + min-width: 24px; + min-height: 24px; + border-radius: 50%; + background-color: #7c6f64; +} +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + border-top-right-radius: 0; +} +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + border-top-left-radius: 0; +} +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + margin-top: 6px; + transform: rotate(45deg); +} + +shortcuts-section { + margin: 20px; +} + +.shortcuts-search-results { + margin: 20px; + border-spacing: 24px; +} + +shortcut { + border-spacing: 6px; +} + +shortcut > .keycap { + min-width: 12px; + min-height: 28px; + padding-left: 8px; + padding-right: 8px; + border-radius: 6px; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; + color: #d4be98; + font-size: smaller; +} + +stackswitcher > button.text-button { + min-width: 100px; +} + +stackswitcher.circular { + border-spacing: 12px; +} +stackswitcher.circular > button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/** + * App Icons + */ +/** + * Emoji + */ +popover.emoji-picker > contents { + padding: 0; +} +popover.emoji-picker > contents emoji { + min-width: 3em; + min-height: 3em; + border-radius: 6px; +} +popover.emoji-picker > contents emoji:drop(active), popover.emoji-picker > contents emoji:hover { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-picker > contents emoji:focus { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-picker > contents emoji:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} + +.emoji-searchbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.emoji-searchbar > entry.search { + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +.emoji-toolbar { + padding: 4px; + border-spacing: 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.emoji-toolbar > button.emoji-section:checked { + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); +} +.emoji-toolbar > button.emoji-section:checked:drop(active), .emoji-toolbar > button.emoji-section:checked:hover { + background-color: rgba(124, 111, 100, 0.1904); +} +.emoji-toolbar > button.emoji-section:checked:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +.emoji-toolbar > button.emoji-section:checked:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +popover.emoji-completion > contents { + padding: 8px 0; +} +popover.emoji-completion > contents emoji-completion-row { + min-height: 32px; + padding: 0 8px; +} +popover.emoji-completion > contents emoji-completion-row:drop(active), popover.emoji-completion > contents emoji-completion-row:hover { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-completion > contents emoji-completion-row:focus { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-completion > contents emoji-completion-row:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +popover.emoji-completion > contents emoji-completion-row > box { + border-spacing: 8px; +} +popover.emoji-completion > contents emoji { + border-radius: 6px; +} +popover.emoji-completion > contents emoji:drop(active), popover.emoji-completion > contents emoji:hover { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-completion > contents emoji:focus { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-completion > contents emoji:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} + +popover.entry-completion > contents { + padding: 0; +} +popover.entry-completion > contents treeview.view { + min-height: 32px; + padding: 8px 0; +} +popover.entry-completion > contents treeview.view > .cell { + padding: 0 4px; +} +popover.entry-completion > contents treeview.view > .cell:selected:hover { + background-color: rgba(212, 190, 152, 0.08); +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #d4be98; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #d4be98; +/* +widget base background color */ +@define-color theme_bg_color #282828; +/* +text widgets and the like base background color */ +@define-color theme_base_color #282828; +/* +base background color of selections */ +@define-color theme_selected_bg_color #7c6f64; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color rgba(255, 255, 255, 0.87); +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #282828; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(212, 190, 152, 0.5); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #282828; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #d4be98; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #d4be98; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #282828; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #282828; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #7c6f64; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color rgba(255, 255, 255, 0.87); +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(212, 190, 152, 0.5); +/* +widgets main borders color */ +@define-color borders rgba(212, 190, 152, 0.2); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(212, 190, 152, 0.2); +/* +these are pretty self explicative */ +@define-color warning_color #d8a657; +@define-color error_color #ea6962; +@define-color success_color #a9b665; +/* +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 #ddc7a1; +@define-color wm_unfocused_title rgba(221, 199, 161, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.05); +@define-color wm_bg #32302f; +@define-color wm_unfocused_bg #282625; +@define-color xfwm4_title #ddc7a1; +@define-color xfwm4_unfocused_title #a7977c; +/* content view background such as thumbnails view in Photos or Boxes */ +@define-color content_view_bg #282828; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #282828; +/* placeholder for entries */ +@define-color placeholder_text_color #a09176; diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-checked-symbolic.svg new file mode 100644 index 000000000..8067c1124 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-mixed-symbolic.svg new file mode 100644 index 000000000..76e69c9ed --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-unchecked-symbolic.svg new file mode 100644 index 000000000..97dbb89ee --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Dark/gtk-4.0/assets/cursor-handle-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/cursor-handle-symbolic.svg similarity index 100% rename from local/share/themes/Gruvbox-Dark/gtk-4.0/assets/cursor-handle-symbolic.svg rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/cursor-handle-symbolic.svg diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-checked-symbolic.svg new file mode 100644 index 000000000..7b82c3ded --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-mixed-symbolic.svg new file mode 100644 index 000000000..55d89167d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-unchecked-symbolic.svg new file mode 100644 index 000000000..6d9755906 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-checked-symbolic.svg new file mode 100644 index 000000000..7ad27d5ed --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-mixed-symbolic.svg new file mode 100644 index 000000000..0f8085030 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-unchecked-symbolic.svg new file mode 100644 index 000000000..bfe0a5618 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-checked-symbolic.svg new file mode 100644 index 000000000..04a9a21eb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-mixed-symbolic.svg new file mode 100644 index 000000000..31aac91bb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-unchecked-symbolic.svg new file mode 100644 index 000000000..f87038196 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/gtk-4.0/icons/small-radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/index.theme b/local/share/themes/Gruvbox-Material-Dark-HIDPI/index.theme new file mode 100644 index 000000000..6a60155f6 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Gruvbox-Material-Dark-HIDPI +Comment=Gruvbox Material theme (HIDPI Version) +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Gruvbox-Material-Dark-HIDPI +MetacityTheme=Gruvbox-Material-Dark-HIDPI +IconTheme=Adwaita +CursorTheme=Adwaita +CursorSize=24 diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/button.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/button.svg new file mode 100644 index 000000000..51c67bf46 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/button.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/close.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/close.svg new file mode 100644 index 000000000..1fe080592 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/maximize.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/maximize.svg new file mode 100644 index 000000000..02d76eb51 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/maximize.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/menu.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/menu.svg new file mode 100644 index 000000000..ad8570add --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/menu.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/minimize.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/minimize.svg new file mode 100644 index 000000000..dc1fa3f58 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/minimize.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/shade.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/shade.svg new file mode 100644 index 000000000..29aeeae3e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/shade.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/unmaximize.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/unmaximize.svg new file mode 100644 index 000000000..cd03f349f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/unmaximize.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/unshade.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/unshade.svg new file mode 100644 index 000000000..fa98887f7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/assets/unshade.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/metacity-theme-2.xml b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/metacity-theme-2.xml new file mode 100644 index 000000000..024b052c1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/metacity-theme-2.xml @@ -0,0 +1,621 @@ + + + + oomox-Gruvbox-Material-Dark-HIDPI + nana-4 + GPL + 2020 + oomox-Gruvbox-Material-Dark-HIDPI Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-3.xml b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/metacity-theme-3.xml similarity index 64% rename from local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-3.xml rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/metacity-theme-3.xml index 250a8fa94..99f2fb6d3 100644 --- a/local/share/themes/Gruvbox-Dark/metacity-1/metacity-theme-3.xml +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/metacity-1/metacity-theme-3.xml @@ -1,11 +1,11 @@ - Tokyonight - vinceliucie | mod: fkorpsvart + oomox-Gruvbox-Material-Dark-HIDPI + nana-4 GPL - 2024 - Tokyonight Metacity theme + 2020 + oomox-Gruvbox-Material-Dark-HIDPI Metacity theme @@ -16,20 +16,18 @@ - - - - - - - - - - - + + + + + + + + + @@ -40,11 +38,11 @@ - + - + @@ -58,10 +56,10 @@ - - - - + + + + @@ -75,8 +73,8 @@ - - + + @@ -117,228 +115,132 @@ + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - + - - + - - + - - + - - + - + - - - - - - - - - - - + - - + - - + - - + - - + - + - - - - - - - - - - - + - - + - - + - - + - - + - + - - - - - - - - - - - + - - + - - + - - + - - + @@ -482,7 +384,6 @@ - @@ -526,7 +427,6 @@ - @@ -566,112 +466,40 @@ - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + diff --git a/local/share/themes/Gruvbox-Dark/plank/dock.theme b/local/share/themes/Gruvbox-Material-Dark-HIDPI/plank/dock.theme similarity index 92% rename from local/share/themes/Gruvbox-Dark/plank/dock.theme rename to local/share/themes/Gruvbox-Material-Dark-HIDPI/plank/dock.theme index aca8fe607..04fa7414f 100644 --- a/local/share/themes/Gruvbox-Dark/plank/dock.theme +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/plank/dock.theme @@ -3,23 +3,23 @@ [PlankTheme] #The roundness of the top corners. -TopRoundness=15 +TopRoundness=4 #The roundness of the bottom corners. -BottomRoundness=15 +BottomRoundness=0 #The thickness (in pixels) of lines drawn. -LineWidth=1 +LineWidth=0 #The color (RGBA) of the outer stroke. -OuterStrokeColor=150;;158;;188;;50 +OuterStrokeColor=0;;0;;0;;0 #The starting color (RGBA) of the fill gradient. -FillStartColor=29;;32;;33;;200 +FillStartColor=0;;0;;0;;153 #The ending color (RGBA) of the fill gradient. -FillEndColor=29;;32;;33;;200 +FillEndColor=0;;0;;0;;153 #The color (RGBA) of the inner stroke. -InnerStrokeColor=29;;32;;33;;100 +InnerStrokeColor=0;;0;;0;;0 [PlankDockTheme] #The padding on the left/right dock edges, in tenths of a percent of IconSize. -HorizPadding=2 +HorizPadding=1 #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. diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close.svg new file mode 100644 index 000000000..9848ab85d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash.svg new file mode 100644 index 000000000..09409f2fa --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_disabled.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_disabled.svg new file mode 100644 index 000000000..444a6c88f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_disabled.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_prelight.svg new file mode 100644 index 000000000..cf46c6cdc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_pressed.svg new file mode 100644 index 000000000..63ffe23a0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_dash_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_normal.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_normal.svg new file mode 100644 index 000000000..9848ab85d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_normal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_prelight.svg new file mode 100644 index 000000000..8abca127f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_pressed.svg new file mode 100644 index 000000000..ad211d3d0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused.svg new file mode 100644 index 000000000..b1e6012a9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused_prelight.svg new file mode 100644 index 000000000..5555bb91b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused_pressed.svg new file mode 100644 index 000000000..6399c8ba6 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/close_unfocused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/dash-widgets.json b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/dash-widgets.json new file mode 100644 index 000000000..09309f73f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/dash-widgets.json @@ -0,0 +1,162 @@ +{ + "stock-icons" : { + "checkmark" : ["/usr/share/icons/unity/checkmark.svg", "32px", "32px"], + "cross" : ["/usr/share/icons/unity/cross.svg", "32px", "32px"], + "grid-view" : ["/usr/share/icons/unity/grid-view.svg", "32px", "32px"], + "flow-view" : ["/usr/share/icons/unity/flow-view.svg", "32px", "32px"], + "star" : ["/usr/share/icons/unity/star.svg", "32px", "32px"], + "triangle" : ["/usr/share/icons/unity/curved-triangle.svg", "32px", "32px"], + "bag" : ["/usr/share/icons/unity/bag.svg", "32px", "32px"], + "next" : ["/usr/share/icons/unity/next.svg", "32px", "32px"], + "prev" : ["/usr/share/icons/unity/prev.svg", "32px", "32px"], + "play" : ["/usr/share/icons/unity/play.svg", "32px", "32px"] + }, + + "regular-text" : { + "text-color" : "#d4be98", + "text-opacity" : 1.0, + "text-size" : 13.0, + "text-mode" : "normal", + "text-weight" : "regular" + }, + + "comments": { + "states" : ["ACTIVE", "NORMAL","PRELIGHT","SELECTED","INSENSITIVE"] + }, + + "button-icon": { + "color" : ["#d4be98", "#FFFFFF", "#FFFFFF", "#FFFFFF", "#FFFFFF"], + "opacity" : [ 1.0, 1.0, 1.0, 0.8, 0.8], + "overlay-opacity": [ 0.30, 0.48, 0.48, 0.45, 0.45], + "overlay-mode" : [ "normal","multiply", "multiply", "normal", "normal"], + "blur-size" : [ 5, 0, 0, 0, 0] + }, + + "icon-only" : { + "color" : "#123456", + "opacity" : 1.0, + "overlay-opacity": 0.2, + "overlay-mode" : "normal", + "blur-size" : 6 + }, + + "lens-nav-bar" : { + "icon-height" : 20, + "icon-gap" : 40 + }, + + "button-label": { + "border-opacity" : [ 0.8, 0.13, 0.13, 0.13, 0.13], + "border-color" : ["#d4be98", "#FFFFFF", "#FFFFFF", "#FFFFFF", "#FFFFFF"], + "border-size" : [ 2.0, 1.0, 1.0, 0.5, 0.5], + "border-radius" : 4.0, + "text-size" : 1.0, + "text-color" : ["#d4be98", "#d4be98", "#d4be98", "#d4be98", "#d4be98"], + "text-opacity" : [ 1.0, 1.0, 1.0, 1.0, 1.0], + "fill-color" : ["#FFFFFF", "#000000", "#000000", "#000000", "#000000"], + "fill-opacity" : [ 0.13, 0.0, 0.0, 0.0, 0.0], + "overlay-opacity": [ 0.1, 0.1, 0.1, 0.0, 0.0], + "overlay-mode" : [ "normal", "normal", "normal", "normal", "normal"], + "blur-size" : [ 1, 1, 1, 0, 0] + }, + + "track-view" : { + "line-gap" : 26.0, + "heading-list-gap" : 30, + "left-padding" : 20 + }, + + "row-caption" : { + "main-text-color" : "#d4be98", + "main-text-opacity" : 1.0, + "main-text-size" : 17.0, + "main-text-weight" : "regular", + "sub-text-color" : "#d4be98", + "sub-text-opacity" : 0.5, + "sub-text-size" : 13.0, + "sub-text-weight" : "regular", + "icon-main-gap" : 10, + "main-sub-gap" : 15, + "sub-arrow-gap" : 10 + }, + + "preview-heading-small" : { + "main-title-size" : 23.0, + "main-title-color" : "#d4be98", + "main-title-opacity" : 1.0, + "main-title-mode" : "normal", + "main-title-weight" : "regular", + "sub-title-size" : 17.0, + "sub-title-color" : "#d4be98", + "sub-title-opacity" : 1.0, + "sub-title-mode" : "normal", + "sub-title-weight" : "regular", + "main-sub-gap" : 15, + "padding" : 10 + }, + + "preview-heading" : { + "main-title-size" : 30.0, + "main-title-color" : "#d4be98", + "main-title-opacity" : 1.0, + "main-title-mode" : "normal", + "main-title-weight" : "regular", + "sub-title-size" : 17.0, + "sub-title-color" : "#d4be98", + "sub-title-opacity" : 1.0, + "sub-title-mode" : "normal", + "sub-title-weight" : "regular", + "main-sub-gap" : 15, + "padding" : 10 + }, + + "scrollbar" : { + "color" : "#fff", + "opacity" : 1.0, + "size" : 8, + "buttons-size" : 0, + "corner-radius" : 3 + }, + + "scrollbar-overlay": { + "color" : "#fff", + "opacity" : 1.0, + "size" : 3, + "corner-radius" : 1.5 + }, + + "scrollbar-track": { + "color" : "#fff", + "opacity" : 0.4 + }, + + "filter-pane" : { + "width" : 330, + "title-size" : 17.0, + "title-color" : "#d4be98", + "title-opacity" : 1.0, + "title-mode" : "normal", + "title-style" : "bold", + "title-arrow-gap" : 10, + "button-height" : 30, + "border-size" : 1 + }, + + "separator" : { + "size" : 1.0, + "color" : "#d4be98", + "opacity" : 0.15, + "overlay-opacity": 0.47, + "overlay-mode" : "normal", + "blur-size" : 6 + }, + + "filter-caption" : { + "text-size" : 17, + "text-color" : "#d4be98", + "text-opacity" : 1.0, + "text-mode" : "normal", + "text-weight" : "bold", + "text-arrow-gap" : 10 + } +} diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_btt_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_btt_19.svg new file mode 100644 index 000000000..e418638af --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_btt_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_btt_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_btt_37.svg new file mode 100644 index 000000000..bd447f939 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_btt_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ltr_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ltr_19.svg new file mode 100644 index 000000000..4ba2b2fea --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ltr_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ltr_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ltr_37.svg new file mode 100644 index 000000000..bb86e8db7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ltr_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_btt_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_btt_19.svg new file mode 100644 index 000000000..c059418dc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_btt_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_btt_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_btt_37.svg new file mode 100644 index 000000000..b06dc3a44 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_btt_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ltr_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ltr_19.svg new file mode 100644 index 000000000..6e83e74cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ltr_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ltr_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ltr_37.svg new file mode 100644 index 000000000..abd07029f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ltr_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_rtl_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_rtl_19.svg new file mode 100644 index 000000000..6e83e74cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_rtl_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_rtl_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_rtl_37.svg new file mode 100644 index 000000000..abd07029f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_rtl_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ttb_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ttb_19.svg new file mode 100644 index 000000000..c059418dc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ttb_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ttb_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ttb_37.svg new file mode 100644 index 000000000..b06dc3a44 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_outline_ttb_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_rtl_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_rtl_19.svg new file mode 100644 index 000000000..4ba2b2fea --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_rtl_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_rtl_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_rtl_37.svg new file mode 100644 index 000000000..bb86e8db7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_rtl_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ttb_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ttb_19.svg new file mode 100644 index 000000000..e418638af --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ttb_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ttb_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ttb_37.svg new file mode 100644 index 000000000..bd447f939 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_arrow_ttb_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_bfb.png b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_bfb.png new file mode 100644 index 000000000..9ffc9ec63 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_bfb.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_back_150.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_back_150.svg new file mode 100644 index 000000000..1d22116a8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_back_150.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_back_54.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_back_54.svg new file mode 100644 index 000000000..da3e720f5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_back_54.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_edge_150.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_edge_150.svg new file mode 100644 index 000000000..1d22116a8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_edge_150.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_edge_54.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_edge_54.svg new file mode 100644 index 000000000..da3e720f5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_edge_54.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_glow_200.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_glow_200.svg new file mode 100644 index 000000000..2a94c40c4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_glow_200.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_glow_62.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_glow_62.svg new file mode 100644 index 000000000..9dc92a6b4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_glow_62.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_selected_back_150.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_selected_back_150.svg new file mode 100644 index 000000000..45f5d9aff --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_selected_back_150.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_selected_back_54.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_selected_back_54.svg new file mode 100644 index 000000000..4bba64be7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_selected_back_54.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shadow_200.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shadow_200.svg new file mode 100644 index 000000000..2a94c40c4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shadow_200.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shadow_62.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shadow_62.svg new file mode 100644 index 000000000..9dc92a6b4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shadow_62.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shine_150.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shine_150.svg new file mode 100644 index 000000000..1d22116a8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shine_150.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shine_54.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shine_54.svg new file mode 100644 index 000000000..da3e720f5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_icon_shine_54.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_btt_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_btt_19.svg new file mode 100644 index 000000000..14e4c161d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_btt_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_btt_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_btt_37.svg new file mode 100644 index 000000000..8d492647d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_btt_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ltr_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ltr_19.svg new file mode 100644 index 000000000..614167baf --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ltr_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ltr_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ltr_37.svg new file mode 100644 index 000000000..0ad552398 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ltr_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_rtl_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_rtl_19.svg new file mode 100644 index 000000000..614167baf --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_rtl_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_rtl_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_rtl_37.svg new file mode 100644 index 000000000..0ad552398 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_rtl_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ttb_19.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ttb_19.svg new file mode 100644 index 000000000..14e4c161d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ttb_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ttb_37.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ttb_37.svg new file mode 100644 index 000000000..8d492647d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/launcher_pip_ttb_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize.svg new file mode 100644 index 000000000..e1c550c41 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash.svg new file mode 100644 index 000000000..0ab2df578 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_disabled.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_disabled.svg new file mode 100644 index 000000000..574556fd5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_disabled.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_prelight.svg new file mode 100644 index 000000000..e4d28a3fa --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_pressed.svg new file mode 100644 index 000000000..5e057fcea --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_dash_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_normal.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_normal.svg new file mode 100644 index 000000000..e1c550c41 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_normal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_prelight.svg new file mode 100644 index 000000000..e6a06a9cf --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_pressed.svg new file mode 100644 index 000000000..dc00033b4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused.svg new file mode 100644 index 000000000..2245ed7b7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused_prelight.svg new file mode 100644 index 000000000..3f432785f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused_pressed.svg new file mode 100644 index 000000000..be68f7efb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/maximize_unfocused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize.svg new file mode 100644 index 000000000..f495e8e83 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash.svg new file mode 100644 index 000000000..ba94973b7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_disabled.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_disabled.svg new file mode 100644 index 000000000..6973e881c --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_disabled.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_prelight.svg new file mode 100644 index 000000000..68133ae08 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_pressed.svg new file mode 100644 index 000000000..86cd1dcc8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_dash_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_normal.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_normal.svg new file mode 100644 index 000000000..f495e8e83 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_normal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_prelight.svg new file mode 100644 index 000000000..b575cd903 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_pressed.svg new file mode 100644 index 000000000..aa09c32f9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused.svg new file mode 100644 index 000000000..fc71609c5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused_prelight.svg new file mode 100644 index 000000000..3bc0ea9d3 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused_pressed.svg new file mode 100644 index 000000000..8ef9582d9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/minimize_unfocused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/progress_bar_fill.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/progress_bar_fill.svg new file mode 100644 index 000000000..ac4700422 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/progress_bar_fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/progress_bar_trough.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/progress_bar_trough.svg new file mode 100644 index 000000000..7ff9196cc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/progress_bar_trough.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused.svg new file mode 100644 index 000000000..9848ab85d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused_prelight.svg new file mode 100644 index 000000000..8abca127f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused_pressed.svg new file mode 100644 index 000000000..ad211d3d0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/sheet_style_close_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize.svg new file mode 100644 index 000000000..153512f3a --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash.svg new file mode 100644 index 000000000..86444917f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_disabled.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_disabled.svg new file mode 100644 index 000000000..e96303c81 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_disabled.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_prelight.svg new file mode 100644 index 000000000..22a9c5ff5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_pressed.svg new file mode 100644 index 000000000..c08db66de --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_dash_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_normal.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_normal.svg new file mode 100644 index 000000000..153512f3a --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_normal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_prelight.svg new file mode 100644 index 000000000..e2001e552 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_pressed.svg new file mode 100644 index 000000000..b72d7eeb1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused.svg new file mode 100644 index 000000000..41c4877a0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused_prelight.svg new file mode 100644 index 000000000..f8665ecf8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused_pressed.svg new file mode 100644 index 000000000..7d8e2bb89 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/unity/unmaximize_unfocused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-left-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-left-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-left-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-left-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-left-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-left-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-right-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-right-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-right-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-right-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-right-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/bottom-right-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-active.svg new file mode 100644 index 000000000..cffe6d087 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-inactive.svg new file mode 100644 index 000000000..e727fbb07 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-prelight.svg new file mode 100644 index 000000000..b9ed221a7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-pressed.svg new file mode 100644 index 000000000..ac4521756 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/close-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-active.svg new file mode 100644 index 000000000..7e4da4fc3 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-inactive.svg new file mode 100644 index 000000000..5579e31da --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-prelight.svg new file mode 100644 index 000000000..6aa504338 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-pressed.svg new file mode 100644 index 000000000..4c17343b8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/hide-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/left-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/left-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/left-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/left-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/left-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/left-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-active.svg new file mode 100644 index 000000000..9a3830a83 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-inactive.svg new file mode 100644 index 000000000..8f2591d1a --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-prelight.svg new file mode 100644 index 000000000..1fda0e392 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-pressed.svg new file mode 100644 index 000000000..7c778ac1e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-active.svg new file mode 100644 index 000000000..b35e0813a --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-inactive.svg new file mode 100644 index 000000000..cef38c71f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-prelight.svg new file mode 100644 index 000000000..fb01548c4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-pressed.svg new file mode 100644 index 000000000..79c951ad0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/maximize-toggled-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-active.svg new file mode 100644 index 000000000..03f32666d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-inactive.svg new file mode 100644 index 000000000..f4ba2a5a5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-prelight.svg new file mode 100644 index 000000000..8db34ad3c --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-pressed.svg new file mode 100644 index 000000000..8308c7595 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/menu-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/right-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/right-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/right-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/right-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/right-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/right-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-active.svg new file mode 100644 index 000000000..a52ff6464 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-inactive.svg new file mode 100644 index 000000000..298762043 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-prelight.svg new file mode 100644 index 000000000..a4f797494 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-pressed.svg new file mode 100644 index 000000000..ca520bdbc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-active.svg new file mode 100644 index 000000000..e0d31c986 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-inactive.svg new file mode 100644 index 000000000..0c5c94c51 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-prelight.svg new file mode 100644 index 000000000..3864258c9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-pressed.svg new file mode 100644 index 000000000..705418724 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/shade-toggled-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-active.svg new file mode 100644 index 000000000..64f79aa20 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-inactive.svg new file mode 100644 index 000000000..86babd18f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-prelight.svg new file mode 100644 index 000000000..31270edd9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-pressed.svg new file mode 100644 index 000000000..8a04aeccc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-active.svg new file mode 100644 index 000000000..343a406e2 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-inactive.svg new file mode 100644 index 000000000..06e95f4a3 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-prelight.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-prelight.svg new file mode 100644 index 000000000..ab1338819 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-pressed.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-pressed.svg new file mode 100644 index 000000000..42260bec4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/stick-toggled-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/themerc b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/themerc new file mode 100644 index 000000000..a61cfba93 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/themerc @@ -0,0 +1,23 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#ddc7a1 +active_text_shadow_color=#ddc7a1 +inactive_text_color=#a9987c +inactive_text_shadow_color=#a9987c +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=0 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-1-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-1-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-1-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-1-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-1-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-1-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-2-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-2-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-2-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-2-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-2-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-2-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-3-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-3-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-3-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-3-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-3-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-3-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-4-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-4-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-4-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-4-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-4-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-4-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-5-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-5-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-5-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-5-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-5-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/title-5-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-left-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-left-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-left-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-left-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-left-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-left-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-right-active.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-right-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-right-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-right-inactive.svg b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-right-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark-HIDPI/xfwm4/top-right-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/COPYING b/local/share/themes/Gruvbox-Material-Dark/COPYING new file mode 100644 index 000000000..d159169d1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/COPYING @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/local/share/themes/Gruvbox-Material-Dark/INSTALL_GDM_THEME.md b/local/share/themes/Gruvbox-Material-Dark/INSTALL_GDM_THEME.md new file mode 100644 index 000000000..58e0708bc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/INSTALL_GDM_THEME.md @@ -0,0 +1,47 @@ +# How to change the GDM theme + +To change the GDM (lock/login screen) theme, you need to replace the system's _default_ GNOME Shell theme. + +## :warning: Cautions :warning: + +- If the replacement fails, your desktop environment will not work properly. So please **be careful** if doing this. +- When applying this, other third-party GNOME Shell themes would look broken until you restore to the original theme. +- If GNOME Shell has been updated and restored to the original theme, you will need to install this again. + > Tip: On Arch Linux, you can automatically reinstall the GDM theme by creating a [hook](https://wiki.archlinux.org/index.php/Pacman#Hooks) file. For example, if you use Materia-compact as your GDM theme, put [this file](https://gist.github.com/looselyrigorous/a1aa931ce48627cc39daccc9253b30c7) in the `/usr/share/libalpm/hooks/` directory. + +## Requirements + +- `glib-compile-resources` — The package name depends on the distro. + - `glib2` (Arch Linux) + - `glib2-devel` (Fedora, openSUSE, etc.) + - `libglib2.0-dev-bin` (Debian, Ubuntu, etc.) +- `libxml2-utils` — Ubuntu users only. + +## Installation + +1. **Back up** the original theme file first. If you are already using a custom GDM theme, skip this: + + ```sh + sudo cp -av /usr/share/gnome-shell/gnome-shell-theme.gresource{,~} + ``` + +2. Select a **GTK** theme to decide which variant to install. +3. Replace the default theme file: + + ```sh + THEME_NAME="$(gsettings get org.gnome.desktop.interface gtk-theme | sed "s/'//g")" + THEME_SRC_DIR="/usr/share/themes/$THEME_NAME/gnome-shell" + sudo glib-compile-resources --target="/usr/share/gnome-shell/gnome-shell-theme.gresource" --sourcedir="$THEME_SRC_DIR" "$THEME_SRC_DIR/gnome-shell-theme.gresource.xml" + ``` + +4. Reload the theme. If you are running GNOME Shell, press Alt + F2 then type `rt`. + +## Uninstallation + +1. Restore to the original theme file from the backup: + + ```sh + sudo mv -v /usr/share/gnome-shell/gnome-shell-theme.gresource{~,} + ``` + +2. Reload the theme. If you are running GNOME Shell, press Alt + F2 then type `rt`. diff --git a/local/share/themes/Gruvbox-Material-Dark/chrome/chrome-scrollbar.crx b/local/share/themes/Gruvbox-Material-Dark/chrome/chrome-scrollbar.crx new file mode 100644 index 000000000..b1d77c796 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/chrome/chrome-scrollbar.crx differ diff --git a/local/share/themes/Gruvbox-Material-Dark/chrome/chrome-theme.crx b/local/share/themes/Gruvbox-Material-Dark/chrome/chrome-theme.crx new file mode 100644 index 000000000..a89287a3b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/chrome/chrome-theme.crx differ diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace-active.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace-active.svg new file mode 100644 index 000000000..7f6573de4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace-active.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace-hover.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace-hover.svg new file mode 100644 index 000000000..c52e0b5e1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace-hover.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace.svg new file mode 100644 index 000000000..559062962 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/add-workspace.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/calendar-arrow-left.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/calendar-arrow-left.svg new file mode 100644 index 000000000..5448aacea --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/calendar-arrow-right.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/calendar-arrow-right.svg new file mode 100644 index 000000000..f089edbc5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/checkbox-off.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/checkbox-off.svg new file mode 100644 index 000000000..54317fdf5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/checkbox.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/checkbox.svg new file mode 100644 index 000000000..c2473a4cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/checkbox.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/corner-ripple.png b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/corner-ripple.png new file mode 100644 index 000000000..35d95ffef Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/corner-ripple.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/radiobutton-off.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/radiobutton-off.svg new file mode 100644 index 000000000..43467e850 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/radiobutton-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/radiobutton.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/radiobutton.svg new file mode 100644 index 000000000..772feeb24 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/radiobutton.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/toggle-off.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/toggle-off.svg new file mode 100644 index 000000000..b2ab136f6 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/toggle-off.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/toggle-on.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/toggle-on.svg new file mode 100644 index 000000000..1e713b651 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/toggle-on.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/trash-icon.png b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/trash-icon.png new file mode 100644 index 000000000..270fe2ef4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/trash-icon.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close-active.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close-active.svg new file mode 100644 index 000000000..f3a1c9a25 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close-active.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close-hover.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close-hover.svg new file mode 100644 index 000000000..48c97c806 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close-hover.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close.svg b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close.svg new file mode 100644 index 000000000..22cba72e3 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/assets/window-close.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/cinnamon.css b/local/share/themes/Gruvbox-Material-Dark/cinnamon/cinnamon.css new file mode 100644 index 000000000..ac040ad8e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/cinnamon/cinnamon.css @@ -0,0 +1,1711 @@ +.notification-button, .modal-dialog-button { + color: #d4be98; + background-color: #3C3836; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; + font-size: 10.5pt; + font-weight: 500; + min-height: 32px; + padding: 0 16px; + border-radius: 6px; +} +.notification-button:focus, .modal-dialog-button:focus { + color: #d4be98; + background-color: #48433e; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.notification-button:hover, .modal-dialog-button:hover, .notification-button:checked, .modal-dialog-button:checked { + color: #d4be98; + background-color: #48433e; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.notification-button:active, .modal-dialog-button:active { + color: #d4be98; + background-color: #4e4842; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.notification-button:insensitive, .modal-dialog-button:insensitive { + color: rgba(212, 190, 152, 0.5); + background-color: rgba(212, 190, 152, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.notification-icon-button, .keyboard-key, .sound-player StButton { + color: #d4be98; + background-color: #3C3836; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; + min-height: 32px; + min-width: 32px; + padding: 6px; + border-radius: 6px; +} +.notification-icon-button:focus, .keyboard-key:focus, .sound-player StButton:focus { + color: #d4be98; + background-color: #48433e; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.notification-icon-button:hover, .keyboard-key:hover, .sound-player StButton:hover, .notification-icon-button:checked, .keyboard-key:checked, .sound-player StButton:checked { + color: #d4be98; + background-color: #48433e; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.notification-icon-button:active, .keyboard-key:active, .sound-player StButton:active { + color: #d4be98; + background-color: #4e4842; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.notification-icon-button:insensitive, .keyboard-key:insensitive, .sound-player StButton:insensitive { + color: rgba(212, 190, 152, 0.5); + background-color: rgba(212, 190, 152, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.slider, .popup-slider-menu-item, .sound-player .slider { + height: 20px; + color: #7c6f64; + -slider-height: 2px; + -slider-background-color: rgba(212, 190, 152, 0.3); + -slider-border-color: transparent; + -slider-active-background-color: #7c6f64; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 6px; +} + +.separator, .popup-separator-menu-item { + -gradient-height: 1px; + -gradient-start: rgba(212, 190, 152, 0.2); + -gradient-end: rgba(212, 190, 152, 0.2); + -margin-horizontal: 4px; + height: 1.5em; +} + +#notification StEntry, .run-dialog-entry, #menu-search-entry { + transition-duration: 100ms; + background-color: rgba(212, 190, 152, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + width: 250px; + min-height: 32px; + padding: 0 8px; + border-radius: 6px 6px 0 0; + color: #d4be98; + caret-color: #d4be98; + selection-background-color: rgba(124, 111, 100, 0.6); + selected-color: #d4be98; +} +#notification StEntry:focus, .run-dialog-entry:focus, #menu-search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #7c6f64; + padding: 0 8px; + border-width: 0; + color: #d4be98; +} + +.desklet-with-borders, .desklet-with-borders-and-header, .desklet-header, .photoframe-box { + color: #d4be98; + border: none; + padding: 12px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); +} + +.calendar-change-month-back, .calendar-change-month-forward { + width: 16px; + height: 16px; + border-radius: 999px; + transition-duration: 100ms; +} +.calendar-change-month-back:active, .calendar-change-month-forward:active { + background-color: rgba(212, 190, 152, 0.3); +} + +.menu, .popup-combo-menu { + background-color: #3C3836; + border-radius: 6px; + color: #d4be98; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} + +.menu-application-button-label:ltr, .menu-category-button-label:ltr { + padding-left: 4px; +} +.menu-application-button-label:rtl, .menu-category-button-label:rtl { + padding-right: 4px; +} + +.show-processes-dialog-subject, .mount-question-dialog-subject { + font-weight: bold; + color: #d4be98; + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; +} + +.show-processes-dialog-subject:rtl, .mount-question-dialog-subject:rtl { + padding-left: 0; + padding-right: 17px; +} + +.show-processes-dialog-description, .mount-question-dialog-description { + color: #d4be98; + padding-left: 17px; + width: 28em; +} + +.check-box StBin, .check-box:focus StBin { + width: 24px; + height: 24px; + padding: 4px; + border-radius: 100px; + background-image: url(assets/checkbox-off.svg); +} + +.radiobutton StBin, .radiobutton:focus StBin { + width: 20px; + height: 20px; + padding: 6px; + border-radius: 100px; + background-image: url(assets/radiobutton-off.svg); +} + +.tile-preview, .tile-hud { + background-color: rgba(0, 0, 0, 0.3); + border: 2px solid rgba(212, 190, 152, 0.2); +} + +.tile-preview.snap, .tile-hud.snap { + background-color: rgba(0, 0, 0, 0.3); + border: 2px solid #7c6f64; +} + +#LookingGlassDialog, .switcher-list, .modal-dialog, .osd-window, .overview-empty-placeholder, .info-osd, .workspace-osd { + color: #d4be98; + background-color: #3C3836; + border: none; + border-radius: 6px; + padding: 12px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); +} + +.overview-empty-placeholder, .info-osd, .workspace-osd { + font-size: 15pt; + font-weight: 500; + text-align: center; + padding: 8px 10px; +} + +stage { + font-size: 10.5pt; + font-weight: 400; + font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif; + color: #d4be98; +} + +.cinnamon-link { + color: #7c6f64; + font-style: italic; +} +.cinnamon-link:hover { + color: #7c6f64; +} + +.label-shadow { + color: transparent; +} + +StScrollBar { + padding: 0px; +} +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + background-color: rgba(212, 190, 152, 0.5); + border-radius: 100px; + margin: 4px; +} +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: rgba(212, 190, 152, 0.7); +} +StScrollBar StBin#trough { + margin: 4px; + border-radius: 100px; + background-color: rgba(212, 190, 152, 0.2); +} + +StScrollView.vfade { + -st-vfade-offset: 32px; +} +StScrollView.hfade { + -st-hfade-offset: 32px; +} +StScrollView StScrollBar { + min-width: 16px; + min-height: 16px; +} + +#Tooltip { + font-size: 9pt; + font-weight: 400; + padding: 6px 8px; + color: #ddc7a1; + text-align: center; + border-radius: 6px; + background-color: rgba(50, 48, 47, 0.9); +} + +.menu { + min-width: 100px; + margin: 4px; +} + +.menu-top-box { + spacing: 5px; +} + +.menu-systembuttons-box { + padding: 10px; +} + +.popup-sub-menu { + background-color: rgba(212, 190, 152, 0.04); +} + +.popup-menu-arrow { + icon-size: 1.14em; +} + +.popup-combo-menu { + padding: 8px 0; +} + +.popup-menu-content { + padding: 8px 0; +} + +.popup-menu-item { + padding: 0.4em 16px; + spacing: 8px; + transition-duration: 100ms; +} +.popup-menu-item:active { + background-color: rgba(212, 190, 152, 0.08); + color: #d4be98; + transition-duration: 0ms; +} +.popup-menu-item:insensitive { + color: rgba(212, 190, 152, 0.5); +} + +.popup-image-menu-item { + color: rgba(212, 190, 152, 0.7); +} + +.popup-combobox-item { + padding: 0.4em 16px; +} + +.popup-device-menu-item { + spacing: 0.5em; +} + +.popup-inactive-menu-item { + color: #d4be98; +} +.popup-inactive-menu-item:insensitive { + color: rgba(212, 190, 152, 0.5); +} + +.popup-subtitle-menu-item { + font-size: 10.5pt; + font-weight: 500; +} + +.popup-menu-icon { + icon-size: 1.14em; +} + +.popup-alternating-menu-item:alternate { + font-size: 10.5pt; + font-weight: 500; +} + +.toggle-switch { + width: 40px; + height: 20px; +} + +.toggle-switch-us, .toggle-switch-intl { + background-image: url(assets/toggle-off.svg); +} +.toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url(assets/toggle-on.svg); +} + +.nm-menu-item-icons { + spacing: 0.5em; + icon-size: 1.14em; +} + +#panel { + color: rgba(221, 199, 161, 0.7); + background-color: black; + height: 2.5em; + width: 3.2em; +} +#panel:highlight { + background-color: rgba(221, 199, 161, 0.3); +} + +.panel-dummy { + background-color: rgba(255, 0, 0, 0.6); +} +.panel-dummy:entered { + background-color: rgba(0, 255, 0, 0.6); +} + +.panelLeft { + spacing: 4px; +} +.panelLeft:dnd { + background-color: rgba(255, 0, 0, 0.6); +} +.panelLeft:ltr { + padding-right: 4px; +} +.panelLeft:rtl { + padding-left: 4px; +} +.panelLeft.vertical { + padding: 0; +} +.panelCenter { + spacing: 4px; +} +.panelCenter:dnd { + background-color: rgba(0, 255, 0, 0.6); +} +.panelCenter.vertical { + padding-left: 0; + padding-right: 0; +} +.panelRight { + spacing: 4px; +} +.panelRight:dnd { + background-color: rgba(0, 0, 255, 0.6); +} +.panelRight:ltr { + padding-left: 0; + spacing: 0; +} +.panelRight:rtl { + padding-right: 0; + spacing: 0; +} +.panelRight.vertical { + padding: 0; +} +.panel-top .window-list-item-box:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .window-list-item-box:active:hover, .panel-top .window-list-item-box:checked:hover, .panel-top .window-list-item-box:focus:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .grouped-window-list-item-box:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .grouped-window-list-item-box:active:hover, .panel-top .grouped-window-list-item-box:checked:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .grouped-window-list-item-box:focus:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .grouped-window-list-badge { + margin-top: 2px; +} +.panel-top .workspace-switcher, .panel-top .workspace-graph, .panel-top .workspace-button { + padding: 1px 4px; +} +.panel-top .workspace-graph:hover, .panel-top .workspace-button:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .applet-box { + padding: 0 4px; +} +.panel-top .applet-box:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .panel-launchers .launcher:hover { + box-shadow: 0 3px 0 0 #7c6f64 inset; +} +.panel-top .applet-separator { + padding: 3px 4px; +} +.panel-top .systray:hover { + box-shadow: 0 4px 0 0 #7c6f64 inset; +} + +.panel-bottom .window-list-item-box:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .window-list-item-box:active:hover, .panel-bottom .window-list-item-box:checked:hover, .panel-bottom .window-list-item-box:focus:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .grouped-window-list-item-box:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .grouped-window-list-item-box:active:hover, .panel-bottom .grouped-window-list-item-box:checked:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .grouped-window-list-item-box:focus:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .workspace-switcher, .panel-bottom .workspace-graph, .panel-bottom .workspace-button { + padding: 1px 4px; +} +.panel-bottom .workspace-graph:hover, .panel-bottom .workspace-button:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .applet-box { + padding: 0 4px; +} +.panel-bottom .applet-box:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .panel-launchers .launcher:hover { + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} +.panel-bottom .applet-separator { + padding: 3px 4px; +} +.panel-bottom .systray:hover { + box-shadow: 0 4px 0 0 #7c6f64 inset; +} + +.panel-left .window-list-item-box:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .window-list-item-box:active:hover, .panel-left .window-list-item-box:checked:hover, .panel-left .window-list-item-box:focus:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .grouped-window-list-item-box:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .grouped-window-list-item-box:active:hover, .panel-left .grouped-window-list-item-box:checked:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .grouped-window-list-item-box:focus:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .grouped-window-list-badge { + margin-left: 2px; +} +.panel-left .workspace-switcher, .panel-left .workspace-graph, .panel-left .workspace-button { + padding: 4px 1px; + min-height: 1.2em; +} +.panel-left .workspace-graph:hover, .panel-left .workspace-button:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .applet-box { + padding: 4px 0; +} +.panel-left .applet-box:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .panel-launchers .launcher:hover { + box-shadow: 3px 0 0 0 #7c6f64 inset; +} +.panel-left .applet-separator { + padding: 4px 3px; +} +.panel-left .systray:hover { + box-shadow: 4px 0 0 0 #7c6f64 inset; +} + +.panel-right .window-list-item-box:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .window-list-item-box:active:hover, .panel-right .window-list-item-box:checked:hover, .panel-right .window-list-item-box:focus:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .grouped-window-list-item-box:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .grouped-window-list-item-box:active:hover, .panel-right .grouped-window-list-item-box:checked:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .grouped-window-list-item-box:focus:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .workspace-switcher, .panel-right .workspace-graph, .panel-right .workspace-button { + padding: 4px 1px; + min-height: 1.2em; +} +.panel-right .workspace-graph:hover, .panel-right .workspace-button:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .applet-box { + padding: 4px 0; +} +.panel-right .applet-box:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .panel-launchers .launcher:hover { + box-shadow: -3px 0 0 0 #7c6f64 inset; +} +.panel-right .applet-separator { + padding: 4px 3px; +} +.panel-right .systray:hover { + box-shadow: -4px 0 0 0 #7c6f64 inset; +} + +.panel-status-button { + font-size: 10.5pt; + font-weight: 500; + -natural-hpadding: 4px; + -minimum-hpadding: 4px; + color: rgba(221, 199, 161, 0.7); +} +.panel-status-button:hover { + color: #ddc7a1; +} + +.system-status-icon { + icon-size: 1.14em; + padding: 0; + spacing: 0; +} +.system-status-icon.warning { + color: #d8a657; +} +.system-status-icon.error { + color: #ea6962; +} + +#overview { + spacing: 12px; +} + +.window-caption { + font-size: 9pt; + font-weight: 400; + background-color: rgba(0, 0, 0, 0.01); + color: rgba(221, 199, 161, 0.7); + padding: 4px 6px; + text-align: center; + height: 1.5em; + -cinnamon-caption-spacing: 12px; +} +.window-caption#selected, .window-caption:focus { + color: #ddc7a1; + box-shadow: 0 -3px 0 0 #7c6f64 inset; +} + +.workspace-controls { + visible-height: 32px; +} + +.workspace-thumbnails-background { + color: rgba(221, 199, 161, 0.7); + background-color: rgba(255, 255, 255, 0.08); + border: none; + padding: 8px; + border-radius: 6px 0 0 6px; +} +.workspace-thumbnails-background:rtl { + border-radius: 0 6px 6px 0; +} + +.workspace-thumbnails { + spacing: 32px; +} + +.workspace-add-button { + background-image: url(assets/add-workspace.svg); + height: 200px; + width: 35px; + transition-duration: 100ms; +} +.workspace-add-button:hover { + background-image: url(assets/add-workspace-hover.svg); +} +.workspace-add-button:active { + background-image: url(assets/add-workspace-active.svg); +} + +.workspace-close-button, .window-close { + background-image: url(assets/window-close.svg); + height: 32px; + width: 32px; + -cinnamon-close-overlap: 20px; +} +.workspace-close-button:hover, .window-close:hover { + background-image: url(assets/window-close-hover.svg); +} +.workspace-close-button:active, .window-close:active { + background-image: url(assets/window-close-active.svg); +} +.workspace-close-button:rtl, .window-close:rtl { + -st-background-image-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); +} + +.window-border { + border: 1px solid rgba(212, 190, 152, 0.2); +} + +.window-close-area { + background-image: url(assets/trash-icon.png); + background-size: 100px; + background-color: rgba(0, 0, 0, 0.3); + border: 1px solid rgba(212, 190, 152, 0.2); + border-bottom-width: 0; + border-radius: 20px 20px 0 0; + height: 120px; + width: 400px; +} + +.expo-background { + background-color: black; +} + +.workspace-overview-background-shade { + background-color: black; +} + +.expo-workspace-thumbnail-frame { + border: 1px solid rgba(212, 190, 152, 0.2); +} +.expo-workspace-thumbnail-frame#active { + border: 1px solid #7c6f64; +} + +#LookingGlassDialog { + spacing: 4px; + padding: 8px; +} + +.calendar { + padding: 4px 8px; + spacing-rows: 2px; + spacing-columns: 4px; +} + +.datemenu-date-label { + font-size: 15pt; + font-weight: 500; + height: 24px; + margin: 2px; + padding: 6px 16px; + border-radius: 6px; + color: #d4be98; + text-align: center; +} +.datemenu-date-label:focus { + background-color: rgba(212, 190, 152, 0.2); +} + +.calendar-month-label { + font-size: 10.5pt; + font-weight: 500; + height: 16px; + margin: 2px; + padding: 6px 16px; + border-radius: 6px; + color: #d4be98; + text-align: center; +} +.calendar-month-label:focus { + background-color: rgba(212, 190, 152, 0.2); +} + +.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); +} + +.calendar-day-base { + font-size: 9pt; + font-weight: 400; + text-align: center; + width: 28px; + height: 28px; + padding: 0; + margin: 2px; + border-radius: 100px; +} +.calendar-day-base:hover, .calendar-day-base:focus { + background-color: rgba(221, 199, 161, 0.3); +} +.calendar-day-base:active { + color: rgba(255, 255, 255, 0.87); + background-color: #7c6f64; + border-color: transparent; +} + +.calendar-week-number { + font-size: 9pt; + font-weight: 400; + width: 21px; + height: 28px; + margin: 2px; + padding: 0; + border-radius: 100px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + text-align: center; +} + +.calendar-day-heading { + font-size: 9pt; + font-weight: 400; + width: 28px; + height: 21px; + margin: 2px; + padding: 0; + border-radius: 100px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + text-align: center; +} + +.calendar-day { + border-width: 0; +} + +.calendar-day-top { + border-top-width: 0; +} + +.calendar-day-left { + border-left-width: 0; +} + +.calendar-nonwork-day { + color: #d4be98; +} + +.calendar-today { + font-weight: bold; + border: none; +} + +.calendar-day-with-events { + color: #7c6f64; + font-weight: normal; + text-decoration: underline; + background-image: none; +} + +.calendar-other-month-day { + color: rgba(212, 190, 152, 0.3); + opacity: 0.5; +} + +.calendar-week-number { + width: 28px; + height: 21px; + margin: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + font-size: inherit; + font-weight: bold; + text-align: center; +} + +#notification { + background-color: #3C3836; + border-radius: 6px; + border: 1px solid rgba(212, 190, 152, 0.2); + padding: 8px; + spacing-rows: 4px; + spacing-columns: 8px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #d4be98; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +#notification.multi-line-notification { + padding-bottom: 8px; +} +#notification .url-highlighter { + link-color: #7c6f64; +} + +.notification-with-image { + min-height: 159px; + color: #d4be98; +} + +#notification-scrollview { + max-height: 10em; +} +#notification-scrollview > .top-shadow { + height: 1em; +} +#notification-scrollview > .bottom-shadow { + height: 1em; +} +#notification-scrollview:ltr > StScrollBar { + padding-left: 6px; +} +#notification-scrollview:rtl > StScrollBar { + padding-right: 6px; +} + +#notification-body { + spacing: 4px; +} + +#notification-actions { + spacing: 8px; +} + +.notification-icon-button > StIcon { + icon-size: 1.5em; +} + +#altTabPopup { + padding: 8px; + spacing: 16px; +} + +.switcher-list { + transition-duration: 100ms; +} +.switcher-list .item-box { + padding: 8px; + border-radius: 6px; +} +.switcher-list .item-box:selected { + background-color: rgba(212, 190, 152, 0.2); +} +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} +.switcher-list .thumbnail { + width: 256px; +} +.switcher-list .separator { + width: 1px; + background: rgba(212, 190, 152, 0.2); +} + +.switcher-list-item-container { + spacing: 8px; +} + +.thumbnail-scroll-gradient-left { + background-gradient-direction: horizontal; + background-gradient-start: #333333; + background-gradient-end: rgba(51, 51, 51, 0); + border-radius: 6px; + border-radius-topright: 0; + border-radius-bottomright: 0; + width: 60px; +} + +.thumbnail-scroll-gradient-right { + background-gradient-direction: horizontal; + background-gradient-start: rgba(51, 51, 51, 0); + background-gradient-end: #333333; + border-radius: 6px; + border-radius-topleft: 0; + border-radius-bottomleft: 0; + width: 60px; +} + +.switcher-arrow { + border-color: rgba(0, 0, 0, 0); + color: rgba(212, 190, 152, 0.7); +} +.switcher-arrow:highlighted { + color: #d4be98; +} + +.switcher-preview-backdrop { + background-color: black; +} + +.ripple-box { + width: 104px; + height: 104px; + background-image: url(assets/corner-ripple.png); + background-color: #7c6f64; + border-radius: 52px; +} + +.modal-dialog { + padding: 16px 20px; +} + +.modal-dialog-button-box { + spacing: 16px; +} + +.run-dialog-label { + color: rgba(212, 190, 152, 0.7); + padding-bottom: 0.4em; +} + +.run-dialog-error-label { + color: #ea6962; +} + +.run-dialog-error-box { + padding-top: 16px; + spacing: 6px; +} + +.run-dialog-completion-box { + padding-left: 15px; +} + +.run-dialog { + border-radius: 6px; + padding: 16px 20px; +} + +.lightbox { + background-color: rgba(0, 0, 0, 0.3); +} + +.cinnamon-mount-operation-icon { + icon-size: 4.8em; +} + +.mount-password-reask { + color: #d8a657; +} + +.show-processes-dialog { + spacing: 24px; +} + +.mount-question-dialog { + spacing: 24px; +} + +.show-processes-dialog-description:rtl { + padding-right: 17px; +} + +.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: #d4be98; +} +.show-processes-dialog-app-list-item:hover { + color: #d4be98; +} +.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; +} + +.magnifier-zoom-region { + border: 3px solid rgba(212, 190, 152, 0.2); +} +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +#keyboard { + background-color: black; +} + +.keyboard-key { + font-size: 10.5pt; + font-weight: 500; +} + +.keyboard-layout { + spacing: 8px; + padding: 8px; +} + +.keyboard-row { + spacing: 16px; +} + +.keyboard-subkeys { + color: inherit; + padding: 5px; + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -boxpointer-gap: 5px; + background-color: #3C3836; + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} + +.menu-favorites-box { + padding: 8px; +} + +.menu-favorites-button { + padding: 0.4em 4px; +} +.menu-favorites-button:hover { + background-color: rgba(212, 190, 152, 0.2); + border-radius: 6px; + color: #d4be98; +} + +.menu-categories-box { + padding: 8px; +} + +.menu-applications-inner-box { + padding: 8px; +} + +.menu-applications-outer-box { + padding: 8px; + border-radius: 6px; +} + +.menu-application-button { + padding: 0.4em 4px; +} +.menu-application-button:highlighted { + font-weight: bold; +} + +.menu-application-button-selected { + padding: 0.4em 4px; + background-color: rgba(212, 190, 152, 0.2); + border-radius: 6px; + color: #d4be98; +} +.menu-application-button-selected:highlighted { + font-weight: bold; +} + +.menu-category-button { + padding: 0.4em 4px; +} + +.menu-category-button-greyed { + padding: 0.4em 4px; + color: rgba(212, 190, 152, 0.7); + font-style: italic; +} + +.menu-category-button-selected { + padding: 0.4em 4px; + background-color: rgba(212, 190, 152, 0.2); + border-radius: 6px; + color: #d4be98; +} +.menu-selected-app-box { + padding: 8px; + margin-bottom: 4px; + text-align: right; +} +.menu-selected-app-box:rtl { + text-align: left; +} + +.menu-selected-app-title { + font-size: 9pt; + font-weight: 400; +} + +.menu-selected-app-description { + font-size: 9pt; + font-weight: 400; + max-width: 150px; +} + +.menu-search-box:ltr { + padding-left: 30px; + padding-bottom: 5px; + padding-top: 5px; +} +.menu-search-box:rtl { + padding-right: 30px; + padding-bottom: 5px; + padding-top: 5px; +} + +.menu-search-entry-icon { + icon-size: 1em; + padding: 0 0; + color: rgba(212, 190, 152, 0.5); +} + +.window-list-box { + font-size: 9pt; + font-weight: 400; + spacing: 4px; + padding: 0 3px; +} +.window-list-box.vertical { + spacing: 4px; + padding: 3px 0; +} +.window-list-box:highlight { + background: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} + +.window-list-item-box { + background-color: rgba(0, 0, 0, 0.01); + transition-duration: 100ms; +} +.window-list-item-box:hover { + color: #ddc7a1; +} +.window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + background-color: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} +.window-list-item-box:active:hover, .window-list-item-box:checked:hover, .window-list-item-box:focus:hover { + color: #ddc7a1; +} +.window-list-item-box .progress { + background-color: #a9b665; +} + +.window-list-item-box.top StLabel, .window-list-item-box.bottom StLabel { + padding-left: 3px; +} + +.window-list-item-demands-attention { + background-color: #32302f; + color: rgba(221, 199, 161, 0.7); +} + +.window-list-preview { + background-color: #3C3836; + border-radius: 6px; + padding: 10px 15px; + spacing: 1em; + color: #d4be98; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); +} + +.grouped-window-list-thumbnail-label { + padding-left: 3px; + padding-bottom: 6px; +} +.grouped-window-list-number-label { + font-size: 9pt; + font-weight: 400; + z-index: 99; +} +.grouped-window-list-list-button-label { + padding-left: 3px; +} +.grouped-window-list-badge { + border-radius: 9999px; + background-color: #1e1c1b; +} +.grouped-window-list-thumbnail-alert { + background: #d8a657; +} +.grouped-window-list-item-box { + background-color: rgba(0, 0, 0, 0.01); + transition-duration: 100ms; +} +.grouped-window-list-item-box:hover { + color: #ddc7a1; +} +.grouped-window-list-item-box:active, .grouped-window-list-item-box:checked { + background-color: rgba(221, 199, 161, 0.2); +} +.grouped-window-list-item-box:active:hover, .grouped-window-list-item-box:checked:hover { + color: #ddc7a1; +} +.grouped-window-list-item-box:focus { + background-color: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} +.grouped-window-list-item-box:focus:hover { + color: #ddc7a1; +} +.grouped-window-list-item-box .progress { + background-color: #a9b665; +} +.grouped-window-list-item-demands-attention { + background-color: #32302f; + color: rgba(221, 199, 161, 0.7); +} +.grouped-window-list-thumbnail-menu { + padding: 20px; + border: none; + border-radius: 6px; + color: rgba(221, 199, 161, 0.7); + background: none; +} +.grouped-window-list-thumbnail-menu .item-box { + padding: 8px; + spacing: 2px; + border-radius: 6px; +} +.grouped-window-list-thumbnail-menu .item-box:outlined { + border: 2px solid rgba(212, 190, 152, 0.2); + color: #ddc7a1; +} +.grouped-window-list-thumbnail-menu .item-box:selected { + background: rgba(221, 199, 161, 0.2); + color: #ddc7a1; +} +.grouped-window-list-thumbnail-menu .item-box > StBoxLayout:ltr { + margin: 1px 0 0 6px; +} +.grouped-window-list-thumbnail-menu .item-box > StBoxLayout:rtl { + margin: 1px 6px 0 0; +} +.grouped-window-list-thumbnail-menu .item-box > StBoxLayout StLabel { + padding-bottom: 2px; +} +.grouped-window-list-thumbnail-menu .item-box > StButton:ltr { + margin: 1px 6px 0 0; +} +.grouped-window-list-thumbnail-menu .item-box > StButton:rtl { + margin: 1px 0 0 6px; +} +.grouped-window-list-thumbnail-menu .thumbnail-box { + padding: 2px; +} +.grouped-window-list-thumbnail-menu .thumbnail { + width: 256px; +} +.grouped-window-list-thumbnail-menu .separator { + width: 1px; + background: rgba(212, 190, 152, 0.2); +} + +.sound-player StButton:small { + min-width: 24px; + min-height: 24px; + padding: 4px; +} +.sound-player StButton:small StIcon { + icon-size: 1em; +} +.sound-player StButton StIcon { + icon-size: 1.5em; +} +.sound-player .slider { + height: 5px; +} +.sound-player StBoxLayout { + spacing: 0.5em; +} +.sound-player > StBoxLayout { + padding: 5px; +} + +.sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); +} + +.sound-player-overlay { + background-color: #3C3836; + min-width: 300px; + padding: 12px 16px; + spacing: 0.5em; + color: rgba(212, 190, 152, 0.7); +} + +.workspace-button { + background-color: #1e1c1b; + width: 2em; + height: 1em; + color: rgba(221, 199, 161, 0.7); + margin: 2px; +} +.workspace-button:outlined { + background-color: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} + +.workspace-graph { + background-color: black; +} +.workspace-graph .workspace { + background-color: #1e1c1b; + border: 1px solid rgba(212, 190, 152, 0.2); +} +.workspace-graph .workspace:active { + background-color: rgba(221, 199, 161, 0.3); + border: 1px solid rgba(212, 190, 152, 0.2); +} +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(255, 255, 255, 0.8); + -active-window-border: rgba(0, 0, 0, 0.9); + -inactive-window-background: rgba(140, 140, 140, 0.8); + -inactive-window-border: rgba(0, 0, 0, 0.7); +} +.workspace-graph .workspace .windows { + -active-window-background: rgba(140, 140, 140, 0.8); + -active-window-border: rgba(0, 0, 0, 0.7); + -inactive-window-background: rgba(140, 140, 140, 0.8); + -inactive-window-border: rgba(0, 0, 0, 0.7); +} + +.panel-launchers { + padding: 0 4px; + spacing: 4px; + transition-duration: 100ms; +} +.panel-launchers .launcher { + background-color: rgba(0, 0, 0, 0.01); +} +.panel-launchers.vertical { + padding: 4px 0; + spacing: 4px; +} +.panel-launchers.vertical .launcher .icon-box { + padding-top: 0; +} + +.applet-separator-line, .applet-separator-line-vertical { + width: 2px; + background: rgba(221, 199, 161, 0.2); +} + +.applet-spacer:highlight { + background: rgba(255, 255, 255, 0.05); +} + +.applet-box { + background-color: rgba(0, 0, 0, 0.01); + color: rgba(221, 199, 161, 0.7); + transition-duration: 100ms; +} +.applet-box:checked { + color: #ddc7a1; +} +.applet-box:checked .applet-label { + color: #ddc7a1; +} +.applet-box:hover { + color: #ddc7a1; +} +.applet-box:hover .applet-label { + color: #ddc7a1; +} +.applet-box:highlight { + background: rgba(221, 199, 161, 0.3); + color: #ddc7a1; +} +.applet-box:highlight .applet-label { + color: #ddc7a1; +} + +.applet-label { + font-size: 10.5pt; + font-weight: 500; + color: rgba(221, 199, 161, 0.7); +} + +.applet-icon { + color: rgba(221, 199, 161, 0.7); + padding: 0; + spacing: 0; + icon-size: 22px; +} + +.desklet { + font-size: 9pt; + font-weight: 400; + color: #ddc7a1; + border: none; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + padding: 12px; + background-color: rgba(0, 0, 0, 0.3); + border-radius: 6px; +} + +.desklet-with-borders { + font-size: 9pt; + font-weight: 400; + background-color: #3C3836; + border-radius: 6px; +} +.desklet-with-borders:highlight { + background-color: rgba(255, 255, 255, 0.05); +} + +.desklet-with-borders-and-header { + font-size: 9pt; + font-weight: 400; + background-color: #3C3836; + border-radius-bottomleft: 2px; + border-radius-bottomright: 2px; +} +.desklet-with-borders-and-header:highlight { + background-color: rgba(255, 255, 255, 0.05); +} + +.desklet-header { + font-size: 15pt; + font-weight: 500; + background-color: #3C3836; + border-radius-topleft: 2px; + border-radius-topright: 2px; +} +.desklet-header:highlight { + background-color: rgba(255, 255, 255, 0.05); +} + +.photoframe-box { + background-color: #3C3836; + border-radius: 6px; +} +.photoframe-box:highlight { + background-color: rgba(255, 255, 255, 0.05); +} + +.desklet-drag-placeholder { + border: 2px solid #7c6f64; + background-color: rgba(0, 0, 0, 0.3); + border-radius: 6px; +} + +.launcher { + padding: 1px; +} +.launcher .icon-box { + padding-top: 2px; +} + +.about-content { + min-width: 250px; + min-height: 150px; + spacing: 8px; + padding-bottom: 16px; +} + +.about-title { + font-size: 15pt; + font-weight: 500; +} + +.about-uuid { + font-size: 9pt; + font-weight: 400; +} + +.about-icon { + padding-right: 20px; +} + +.about-scrollBox { + border: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 6px; +} + +.about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; +} + +.about-description { + padding-top: 4px; +} + +.about-version { + padding-left: 7px; +} + +.expo-workspaces-name-entry { + font-size: 11.25pt; + font-weight: 400; + background-color: rgba(255, 255, 255, 0.04); + color: #fff; + padding: 0 8px; + selection-background-color: rgba(255, 255, 255, 0.3); + selected-color: #fff; + caret-color: #fff; + text-align: center; + height: 32px; + border-radius: 6px 6px 0 0; + -cinnamon-caption-spacing: 12px; +} +.expo-workspaces-name-entry#selected { + color: #fff; + background-color: rgba(255, 255, 255, 0.3); +} +.expo-workspaces-name-entry:focus { + color: #fff; + box-shadow: inset 0 -2px #fff; +} +.expo-workspaces-name-entry:hover { + background-color: rgba(255, 255, 255, 0.2); +} + +.notification-applet-padding { + padding: 0.5em 1em; +} + +.notification-applet-container { + max-height: 100px; +} + +.check-box CinnamonGenericContainer { + spacing: 8px; +} +.check-box:focus:checked StBin { + background-image: url(assets/checkbox.svg); +} +.check-box:checked StBin { + background-image: url(assets/checkbox.svg); +} + +.radiobutton CinnamonGenericContainer { + spacing: 8px; +} +.radiobutton:focus:checked StBin { + background-image: url(assets/radiobutton.svg); +} +.radiobutton:checked StBin { + background-image: url(assets/radiobutton.svg); +} + +.flashspot { + background-color: #7c6f64; +} + +.osd-window { + spacing: 1em; + padding: 16px; +} +.osd-window .level { + height: 0.7em; + border-radius: 0.3em; + background-color: rgba(212, 190, 152, 0.3); +} +.osd-window .level-bar { + border-radius: 0.3em; + background-color: #7c6f64; +} + +.tile-hud:top { + border-top-width: 0; + border-radius: 0 0 10px 10px; +} +.tile-hud:bottom { + border-bottom-width: 0; + border-radius: 6px 6px 0 0; +} +.tile-hud:left { + border-left-width: 0; + border-radius: 0 10px 10px 0; +} +.tile-hud:right { + border-right-width: 0; + border-radius: 10px 0 0 10px; +} +.tile-hud:top-left { + border-top-width: 0; + border-left-width: 0; + border-radius: 0 0 10px 0; +} +.tile-hud:top-right { + border-top-width: 0; + border-right-width: 0; + border-radius: 0 0 0 10px; +} +.tile-hud:bottom-left { + border-bottom-width: 0; + border-left-width: 0; + border-radius: 0 10px 0 0; +} +.tile-hud:bottom-right { + border-bottom-width: 0; + border-right-width: 0; + border-radius: 10px 0 0 0; +} + +.systray { + spacing: 4px; +} + +.user-box { + padding: 0.4em 1.3em; + spacing: 10px; +} + +.user-icon { + padding: 4px; + border: none; +} + +.user-label { + font-size: 10.5pt; + font-weight: 500; + color: #d4be98; +} diff --git a/local/share/themes/Gruvbox-Material-Dark/cinnamon/thumbnail.png b/local/share/themes/Gruvbox-Material-Dark/cinnamon/thumbnail.png new file mode 100644 index 000000000..ac66aa16f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/cinnamon/thumbnail.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-arrow-left.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-arrow-left.svg new file mode 100644 index 000000000..6cf25440e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-arrow-right.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-arrow-right.svg new file mode 100644 index 000000000..33fd39266 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-event.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-event.svg new file mode 100644 index 000000000..2604cfa67 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/calendar-event.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/checkbox-off.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/checkbox-off.svg new file mode 100644 index 000000000..6aefb37ef --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/checkbox.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/checkbox.svg new file mode 100644 index 000000000..79b0c949f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/checkbox.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/close.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/close.svg new file mode 100644 index 000000000..c64e0d49b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash-placeholder.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash-placeholder.svg new file mode 100644 index 000000000..24f0a71b4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash-placeholder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running1-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running1-focused.svg new file mode 100644 index 000000000..c294acbc7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running1.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running1.svg new file mode 100644 index 000000000..c860f4690 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running2-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running2-focused.svg new file mode 100644 index 000000000..5fb41f99e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running2.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running2.svg new file mode 100644 index 000000000..a8f9812af --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running3-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running3-focused.svg new file mode 100644 index 000000000..a310296ad --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running3.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running3.svg new file mode 100644 index 000000000..cf4319193 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running4-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running4-focused.svg new file mode 100644 index 000000000..55d141529 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running4.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running4.svg new file mode 100644 index 000000000..0718aeff5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/bottom-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running1-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running1-focused.svg new file mode 100644 index 000000000..90b9f29d0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running1.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running1.svg new file mode 100644 index 000000000..2b91fe455 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running2-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running2-focused.svg new file mode 100644 index 000000000..4ed89bc64 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running2.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running2.svg new file mode 100644 index 000000000..0f5b2bae4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running3-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running3-focused.svg new file mode 100644 index 000000000..71821aa41 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running3.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running3.svg new file mode 100644 index 000000000..a091a8a1f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running4-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running4-focused.svg new file mode 100644 index 000000000..0b578e1a9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running4.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running4.svg new file mode 100644 index 000000000..95e2e0df8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/left-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running1-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running1-focused.svg new file mode 100644 index 000000000..934756f57 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running1.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running1.svg new file mode 100644 index 000000000..ab7c100e7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running2-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running2-focused.svg new file mode 100644 index 000000000..69c100d58 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running2.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running2.svg new file mode 100644 index 000000000..d6fd9b3dc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running3-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running3-focused.svg new file mode 100644 index 000000000..bbd2407a0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running3.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running3.svg new file mode 100644 index 000000000..cc0763e7f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running4-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running4-focused.svg new file mode 100644 index 000000000..db88367e8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running4.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running4.svg new file mode 100644 index 000000000..1b58762da --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/right-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running1-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running1-focused.svg new file mode 100644 index 000000000..d3d2694a2 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running1.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running1.svg new file mode 100644 index 000000000..edca858e7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running2-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running2-focused.svg new file mode 100644 index 000000000..04881ed42 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running2.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running2.svg new file mode 100644 index 000000000..baf023137 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running3-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running3-focused.svg new file mode 100644 index 000000000..0529dc574 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running3.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running3.svg new file mode 100644 index 000000000..d0f550150 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running4-focused.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running4-focused.svg new file mode 100644 index 000000000..23a5405d6 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running4.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running4.svg new file mode 100644 index 000000000..23e7eb711 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/dash/top-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-enter.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-enter.svg new file mode 100644 index 000000000..6b1dc1e85 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-enter.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-hide.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-hide.svg new file mode 100644 index 000000000..b83fd94cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-hide.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-layout.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-layout.svg new file mode 100644 index 000000000..1d64d4b81 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-layout.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift-latched-uppercase.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift-latched-uppercase.svg new file mode 100644 index 000000000..4d87b0f09 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift-latched-uppercase.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift-uppercase.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift-uppercase.svg new file mode 100644 index 000000000..aa46f3db7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift-uppercase.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift.svg new file mode 100644 index 000000000..25ce6a200 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/key-shift.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/menu-item-toggle-off.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/menu-item-toggle-off.svg new file mode 100644 index 000000000..410a6661f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/menu-item-toggle-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/menu-item-toggle-on.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/menu-item-toggle-on.svg new file mode 100644 index 000000000..b2020f14b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/menu-item-toggle-on.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/no-events.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/no-events.svg new file mode 100644 index 000000000..c04f94ab0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/no-events.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/no-notifications.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/no-notifications.svg new file mode 100644 index 000000000..479dc4e17 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/no-notifications.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/toggle-off.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/toggle-off.svg new file mode 100644 index 000000000..d2b46d7eb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/toggle-off.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/toggle-on.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/toggle-on.svg new file mode 100644 index 000000000..10d8e087f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/toggle-on.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/window-close.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/window-close.svg new file mode 100644 index 000000000..aa49e830e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/assets/window-close.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css new file mode 100644 index 000000000..2f3aa207b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css @@ -0,0 +1,519 @@ +#workspacestodockTriggerSpacer { + background-color: none; +} + +#workspacestodockContainerWrapper { + background-color: none; +} + +#workspacestodockContainer { + background-color: none; +} + +#workspacestodockDockWrapper { +} + +#workspacestodockDock { + padding: 0; +} + +#workspacestodockDock .workspace-thumbnails { + background-color: #37474F; + background-color: rgba(0, 0, 0, 0.6); +} + +#workspacestodockDock:overview .workspace-thumbnails { + background-color: rgba(255, 255, 255, 0.1); +} + +#workspacestodockDock.fullheight:overview .workspace-thumbnails { + background-color: transparent; +} + +#workspacestodockDock .workspace-thumbnail-indicator { + border-left-width: 0; +} + +#workspacestodockDock.right .workspace-thumbnail-indicator { + border-left-width: 2px; +} + +#workspacestodockDock.left .workspace-thumbnail-indicator { + border-right-width: 2px; +} + +#workspacestodockDock.top .workspace-thumbnail-indicator { + border-bottom-width: 2px; +} + +#workspacestodockDock.bottom .workspace-thumbnail-indicator { + border-top-width: 2px; +} + +#workspacestodockDock.right .workspace-thumbnails { + border-radius: 4px 0 0 4px; +} + +#workspacestodockDock.left .workspace-thumbnails { + border-radius: 0 4px 4px 0; +} + +#workspacestodockDock.top .workspace-thumbnails { + border-radius: 0 0 4px 4px; +} + +#workspacestodockDock.bottom .workspace-thumbnails { + border-radius: 4px 4px 0 0; +} + +#workspacestodockDock.right.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.left.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.top.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.bottom.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.right.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.left.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.top.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.bottom.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock .workspacestodock-shortcuts-panel { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +#workspacestodockDock.right .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-left: 1px; + border-right: none; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-left: none; + border-right: 1px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-top: none; + border-bottom: 1px; +} + +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-top: 1px; + border-bottom: none; +} + +#workspacestodockDock.right.inside .workspacestodock-shortcuts-panel { + border-radius: 4px 0 0 4px; + padding: 0; + spacing: 0; + border-left: none; + border-right: 1px; +} + +#workspacestodockDock.left.inside .workspacestodock-shortcuts-panel { + border-radius: 0 4px 4px 0; + padding: 0; + spacing: 0; + border-left: 1px; + border-right: none; +} + +#workspacestodockDock.top.inside .workspacestodock-shortcuts-panel { + border-radius: 0 0 4px 4px; + padding: 0; + spacing: 0; + border-top: 1px; + border-bottom: none; +} + +#workspacestodockDock.bottom.inside .workspacestodock-shortcuts-panel { + border-radius: 4px 4px 0 0; + padding: 0; + spacing: 0; + border-top: none; + border-bottom: 1px; +} + +#workspacestodockDock.right.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.left.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.top.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.bottom.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock .workspacestodock-shortcuts-panel > * { + border: 0 !important; +} + +.workspacestodock-shortcuts-panel-popupmenu { + padding: 2px; + spacing: 0; +} + +.workspacestodock-shortcuts-panel-favorites { +} + +.workspacestodock-shortcuts-panel-running { +} + +.workspacestodock-shortcuts-panel-places { +} + +/* shortcuts panel buttons */ +#workspacestodockDock .app-well-app { +} + +#workspacestodockDock .workspacestodock-shortcuts-panel > StButton { + background-size: cover; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton { + padding: 3px 6px; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:first-child, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:first-child { + padding: 6px 6px 3px 6px; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:last-child, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:last-child { + padding: 3px 6px 6px 6px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton { + padding: 6px 3px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:first-child, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:first-child { + padding: 6px 3px 6px 6px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:last-child, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:last-child { + padding: 6px 6px 6px 3px; +} + +.workspacestodock-shortcut-button { +} + +.workspacestodock-shortcut-button-symbolic { +} + +/* shortcuts panel button icons */ +#workspacestodockDock .app-well-app > .overview-icon { +} + +.workspacestodock-shortcut-button-icon { + padding: 6px; +} + +.workspacestodock-shortcut-button-symbolic-icon { + padding: 8px; +} + +/* shortcuts panel items */ +#workspacestodockDock .popup-separator-menu-item { + margin: 0; +} + +.workspacestodock-shortcut-panel-separator { + -margin-horizontal: 0; +} + +.workspacestodock-shortcut-panel-filler { + -margin-horizontal: 0; + height: 0; + padding: 0; + border: none; +} + +/* shortcuts panel button window count indicators */ +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/right-running1.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/left-running1.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/top-running1.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/bottom-running1.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/right-running2.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/left-running2.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/top-running2.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/bottom-running2.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/right-running3.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/left-running3.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/top-running3.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/bottom-running3.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/right-running4.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/left-running4.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/top-running4.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/bottom-running4.svg"); +} + +.workspacestodock-workspace-caption-container { + padding: 0; +} + +.workspacestodock-workspace-caption-background { + background-color: rgba(0, 0, 0, 0.6); + /* border-radius: 0 0 4px 4px; */ +} + +.workspacestodock-workspace-caption-background.caption-top { + /* border-radius: 4px 4px 0 0; */ +} + +.workspacestodock-workspace-caption { +} + +/* caption window apps (taskbar) */ +.workspacestodock-caption-windowapps { + padding: 0; +} + +.workspacestodock-caption-windowapps-menu { + -boxpointer-gap: 12px; +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item { + min-height: 24px; + padding-top: 4px; + padding-bottom: 4px; +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item:active { + background-color: rgba(0, 0, 0, 0.12); +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item.selected:active { + background-color: rgba(0, 0, 0, 0.24); +} + +.workspacestodock-caption-windowapps-menu-item { + /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */ +} + +.workspacestodock-caption-windowapps-menu-item:active { + /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */ +} + +.workspacestodock-caption-windowapps-menu-icon { +} + +.workspacestodock-caption-windowapps-menu-label { + padding: 0 8px; +} + +.workspacestodock-caption-windowapps-menu .window-close { + /* GS36+ can override gnome shell class 'window-close' */ + border-radius: 100px; + -st-background-image-shadow: none; + background-image: url("../../assets/close.svg"); + background-size: 24px; + height: 24px; + width: 24px; +} + +.workspacestodock-caption-windowapps-menu .window-close:hover { + background-color: rgba(0, 0, 0, 0.12); +} + +.workspacestodock-caption-windowapps-menu .window-close:active { + background-color: rgba(0, 0, 0, 0.24); +} + +.workspacestodock-caption-windowapps-menu-close { + /*fallback class for GS34 since it can't override gnome shell class 'window-close' */ +} + +.workspacestodock-caption-windowapps-menu-close:hover { + /*fallback class for GS34 since it can't override gnome shell class 'window-close' */ +} + +.workspacestodock-caption-windowapps-button { + padding: 0; +} + +.workspacestodock-caption-windowapps-button-icon { + padding: 2px; + background-color: rgba(0, 0, 0, 0.01); /* needs to draw box-shadow */ +} + +.workspacestodock-caption-windowapps-button:active > .workspacestodock-caption-windowapps-button-icon { + box-shadow: inset 0 -2px rgba(255, 255, 255, 0.3); +} + +.workspacestodock-caption-windowapps-button-active > .workspacestodock-caption-windowapps-button-icon { + box-shadow: inset 0 -2px #FFFFFF; +} + +/* caption workspace number */ +.workspacestodock-caption-number { + margin: 1px; + padding: 0 10px; + border-radius: 0; + background-color: rgba(255, 255, 255, 0.3); + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* caption workspace name */ +.workspacestodock-caption-name { + margin: 0 4px; + color: rgba(255, 255, 255, 0.6); + font-size: 9pt; + text-align: center; +} + +/* caption workspace windowcount */ +.workspacestodock-caption-windowcount { + /* min-width: 16px; */ + margin: 0px 4px; + padding: 0px 4px; + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* caption workspace windowcount image*/ +.workspacestodock-caption-windowcount-image { + width: 20px; + height: 20px; + margin: 1px; + border-radius: 0; + background-color: #FF4081; + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* The classes below are used in conjunction with the above workspacestodock-caption-windowcount-image + * They provide background images that corespond with the window count */ +.workspacestodock-caption-windowcount-image-1 { +} + +.workspacestodock-caption-windowcount-image-2 { +} + +.workspacestodock-caption-windowcount-image-3 { +} + +.workspacestodock-caption-windowcount-image-4 { +} + +/* caption spacer-filler */ +.workspacestodock-caption-spacer { + width: 4px; +} + +/* The classes below are used in conjuction with the above classes + * They provide additional theming for the current workspace caption */ +.workspacestodock-workspace-caption-background-current { +} + +.workspacestodock-workspace-caption-background-current.caption-top { +} + +.workspacestodock-caption-number-current { + /* background-color: #42A5F5; */ +} + +.workspacestodock-caption-name-current { +} + +.workspacestodock-caption-windowcount-current { +} + +.workspacestodock-caption-windowcount-image-current { +} diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell-start.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell-start.svg new file mode 100644 index 000000000..7712c866d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell-start.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell-theme.gresource.xml b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell-theme.gresource.xml new file mode 100644 index 000000000..56a74c761 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell-theme.gresource.xml @@ -0,0 +1,79 @@ + + + + assets/dash/bottom-running1.svg + assets/dash/bottom-running1-focused.svg + assets/dash/bottom-running2.svg + assets/dash/bottom-running2-focused.svg + assets/dash/bottom-running3.svg + assets/dash/bottom-running3-focused.svg + assets/dash/bottom-running4.svg + assets/dash/bottom-running4-focused.svg + assets/dash/left-running1.svg + assets/dash/left-running1-focused.svg + assets/dash/left-running2.svg + assets/dash/left-running2-focused.svg + assets/dash/left-running3.svg + assets/dash/left-running3-focused.svg + assets/dash/left-running4.svg + assets/dash/left-running4-focused.svg + assets/dash/right-running1.svg + assets/dash/right-running1-focused.svg + assets/dash/right-running2.svg + assets/dash/right-running2-focused.svg + assets/dash/right-running3.svg + assets/dash/right-running3-focused.svg + assets/dash/right-running4.svg + assets/dash/right-running4-focused.svg + assets/dash/top-running1.svg + assets/dash/top-running1-focused.svg + assets/dash/top-running2.svg + assets/dash/top-running2-focused.svg + assets/dash/top-running3.svg + assets/dash/top-running3-focused.svg + assets/dash/top-running4.svg + assets/dash/top-running4-focused.svg + assets/calendar-arrow-left.svg + assets/calendar-arrow-right.svg + assets/calendar-event.svg + assets/checkbox.svg + assets/checkbox-off.svg + assets/close.svg + assets/dash-placeholder.svg + assets/key-enter.svg + assets/key-hide.svg + assets/key-layout.svg + assets/key-shift.svg + assets/key-shift-uppercase.svg + assets/key-shift-latched-uppercase.svg + assets/menu-item-toggle-off.svg + assets/menu-item-toggle-on.svg + assets/no-events.svg + assets/no-notifications.svg + assets/toggle-off.svg + assets/toggle-on.svg + assets/window-close.svg + extensions/workspaces-to-dock/workspaces-to-dock.css + gnome-shell.css + gnome-shell-start.svg + icons/scalable/actions/color-pick.svg + icons/scalable/actions/pointer-double-click-symbolic.svg + icons/scalable/actions/pointer-drag-symbolic.svg + icons/scalable/actions/pointer-primary-click-symbolic.svg + icons/scalable/actions/pointer-secondary-click-symbolic.svg + icons/scalable/actions/preview-close-symbolic.svg + icons/scalable/status/carousel-arrow-back-24-symbolic.svg + icons/scalable/status/carousel-arrow-next-24-symbolic.svg + icons/scalable/status/eye-not-looking-symbolic.svg + icons/scalable/status/eye-open-negative-filled-symbolic.svg + icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg + icons/scalable/status/keyboard-enter-symbolic.svg + icons/scalable/status/keyboard-hide-symbolic.svg + icons/scalable/status/keyboard-layout-filled-symbolic.svg + icons/scalable/status/keyboard-shift-filled-symbolic.svg + icons/scalable/status/message-indicator-symbolic.svg + noise-texture.png + pad-osd.css + process-working.svg + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell.css b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell.css new file mode 100644 index 000000000..dbc03a472 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/gnome-shell.css @@ -0,0 +1,3322 @@ +/* Copyright 2009, 2015 Red Hat, Inc. + * + * Portions adapted from Mx's data/style/default.css + * Copyright 2009 Intel Corporation + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU Lesser General Public License, + * version 2.1, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + */ +stage { + color: #d4be98; + font-size: 1em; +} + +.shell-link { + transition-duration: 100ms; + border-radius: 6px; + color: #7c6f64; +} +.shell-link:hover { + background-color: rgba(124, 111, 100, 0.08); + color: #7c6f64; +} +.shell-link:active { + transition-duration: 200ms; + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; +} + +.lowres-icon { + icon-shadow: none; +} + +.icon-dropshadow { + icon-shadow: none; +} + +/* Entries */ +.lg-dialog StEntry, +StEntry { + min-height: 32px; + padding: 0 8px; + border-width: 0; + border-radius: 6px 6px 0 0; + color: #d4be98; + selection-background-color: rgba(124, 111, 100, 0.6); + selected-color: #d4be98; + font-size: 11.25pt; + font-weight: 400; + transition-duration: 100ms; + background-color: rgba(212, 190, 152, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); +} +StEntry:hover { + box-shadow: inset 0 -1px #d4be98; +} +StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #7c6f64; +} +StEntry:insensitive { + color: rgba(212, 190, 152, 0.5); + border-color: transparent; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); +} +StEntry StIcon.capslock-warning { + icon-size: 16px; + padding: 0 4px; + warning-color: #d8a657; +} +StEntry StIcon.peek-password { + icon-size: 16px; + padding: 0 4px; + color: rgba(212, 190, 152, 0.7); +} +StEntry StIcon.peek-password:hover { + color: #d4be98; +} +StEntry StLabel.hint-text { + margin-left: 2px; + color: rgba(212, 190, 152, 0.7); +} + +/* Buttons */ +.lg-obj-inspector-button, .app-folder-dialog .folder-name-container .edit-folder-button, .modal-dialog .modal-dialog-linked-button, .hotplug-notification-item, .notification-banner .notification-button, +.button { + min-height: 32px; + min-width: 48px; + padding: 0 8px; + border: 0; + border-radius: 6px; + font-size: 10.5pt; + font-weight: 500; + color: #7c6f64; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.lg-obj-inspector-button:focus, .app-folder-dialog .folder-name-container .edit-folder-button:focus, .modal-dialog .modal-dialog-linked-button:focus, .hotplug-notification-item:focus, .notification-banner .notification-button:focus, +.button:focus { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.lg-obj-inspector-button:hover, .app-folder-dialog .folder-name-container .edit-folder-button:hover, .modal-dialog .modal-dialog-linked-button:hover, .hotplug-notification-item:hover, .notification-banner .notification-button:hover, +.button:hover { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.lg-obj-inspector-button:active, .app-folder-dialog .folder-name-container .edit-folder-button:active, .modal-dialog .modal-dialog-linked-button:active, .hotplug-notification-item:active, .notification-banner .notification-button:active, +.button:active { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.lg-obj-inspector-button:insensitive, .app-folder-dialog .folder-name-container .edit-folder-button:insensitive, .modal-dialog .modal-dialog-linked-button:insensitive, .hotplug-notification-item:insensitive, .notification-banner .notification-button:insensitive, +.button:insensitive { + color: rgba(212, 190, 152, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog .modal-dialog-linked-button, .hotplug-notification-item, .notification-banner .notification-button { + margin: 4px; + margin-right: 0; +} +.modal-dialog .modal-dialog-linked-button:first-child, .hotplug-notification-item:first-child, .notification-banner .notification-button:first-child, .modal-dialog .modal-dialog-linked-button:last-child, .hotplug-notification-item:last-child, .notification-banner .notification-button:last-child { + border-radius: 6px; +} +.modal-dialog .modal-dialog-linked-button:last-child, .hotplug-notification-item:last-child, .notification-banner .notification-button:last-child { + margin-right: 4px; + border-right-width: 0; +} + +/* Check Boxes */ +.check-box StBoxLayout { + spacing: 8px; +} +.check-box StBin { + transition-duration: 100ms; + width: 24px; + height: 24px; + padding: 4px; + border-radius: 16px; +} +.check-box StBin, .check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} +.check-box:focus StBin { + background-color: rgba(212, 190, 152, 0.08); +} +.check-box:hover StBin { + background-color: rgba(212, 190, 152, 0.08); +} +.check-box:active StBin { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); +} +.check-box:checked StBin, .check-box:checked:focus StBin { + background-image: url("assets/checkbox.svg"); +} +.check-box:checked:focus StBin { + background-color: rgba(124, 111, 100, 0.08); +} +.check-box:checked:hover StBin { + background-color: rgba(124, 111, 100, 0.08); +} +.check-box:checked:active StBin { + background-color: rgba(124, 111, 100, 0.12); +} + +/* Switches */ +.toggle-switch { + color: inherit; + width: 40px; + height: 24px; + background-size: contain; + background-image: url("assets/toggle-off.svg"); +} +.toggle-switch:checked { + background-image: url("assets/toggle-on.svg"); +} + +/* Slider */ +.slider { + height: 20px; + -barlevel-height: 2px; + -barlevel-border-width: 0; + -barlevel-border-color: transparent; + -barlevel-background-color: rgba(212, 190, 152, 0.3); + -barlevel-active-border-color: transparent; + -barlevel-active-background-color: #7c6f64; + -barlevel-overdrive-color: #ea6962; + -barlevel-overdrive-border-color: transparent; + -barlevel-overdrive-separator-width: 2px; + -slider-handle-radius: 6px; + -slider-handle-border-width: 0; + -slider-handle-border-color: transparent; +} +.slider, .slider:hover, .slider:active { + color: #7c6f64; +} + +/* Scrollbars */ +StScrollView.vfade { + -st-vfade-offset: 32px; +} +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollBar { + padding: 0; +} +StScrollView StScrollBar { + min-width: 16px; + min-height: 16px; +} +StScrollBar StBin#trough { + margin: 4px; + border-radius: 4px; + background-color: rgba(212, 190, 152, 0.2); +} +StScrollBar StButton#vhandle, +StScrollBar StButton#hhandle { + transition-duration: 100ms; + margin: 4px; + border-radius: 4px; + background-color: rgba(212, 190, 152, 0.5); +} +StScrollBar StButton#vhandle:hover, +StScrollBar StButton#hhandle:hover { + background-color: rgba(212, 190, 152, 0.6); +} +StScrollBar StButton#vhandle:active, +StScrollBar StButton#hhandle:active { + background-color: rgba(212, 190, 152, 0.7); +} + +/* Popovers/Menus */ +.popup-menu-boxpointer, .candidate-popup-boxpointer { + -arrow-base: 0; + -arrow-rise: 0; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-border-radius: 20px; + -arrow-box-shadow: none; + -arrow-background-color: transparent; +} + +.popup-menu { + min-width: 15em; + border-color: transparent; + color: inherit; +} +.popup-menu.panel-menu { + -boxpointer-gap: 0; + margin-bottom: 1.75em; +} + +.popup-menu-content, .candidate-popup-content { + margin: 8px; + padding: 8px 0; + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #3C3836; + color: #d4be98; +} + +.popup-menu-item { + spacing: 8px; + padding: 0; + transition-duration: 100ms; +} +.popup-menu-item:ltr { + padding: 0.4em; + padding-right: 24px; + padding-left: 0; +} +.popup-menu-item:rtl { + padding: 0.4em; + padding-right: 0; + padding-left: 24px; +} +.popup-menu-item.selected { + background-color: rgba(212, 190, 152, 0.08); + transition-duration: 0ms; +} +.popup-menu-item.selected, .popup-menu-item.selected:active { + color: #d4be98; +} +.popup-menu-item:active { + background-color: rgba(212, 190, 152, 0.12); + color: #d4be98; + transition-duration: 200ms; +} +.popup-menu-item:checked { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.6); + font-weight: normal; +} +.popup-menu-item:checked.selected { + background-color: rgba(124, 111, 100, 0.632); +} +.popup-menu-item:checked:active { + background-color: rgba(124, 111, 100, 0.648); +} +.popup-menu-item:insensitive { + color: rgba(212, 190, 152, 0.5); +} +.popup-menu-item .toggle-switch { + width: 20px; + height: 20px; + background-image: url("assets/menu-item-toggle-off.svg"); +} +.popup-menu-item .toggle-switch:checked { + background-image: url("assets/menu-item-toggle-on.svg"); +} + +.popup-inactive-menu-item { + color: #d4be98; +} +.popup-inactive-menu-item:insensitive { + color: rgba(212, 190, 152, 0.5); +} + +.popup-menu-arrow { + icon-size: 16px; +} +.popup-menu-content .popup-menu-arrow, .candidate-popup-content .popup-menu-arrow { + color: rgba(212, 190, 152, 0.7); +} + +.popup-menu-icon { + icon-size: 16px; + color: rgba(212, 190, 152, 0.7); +} + +.popup-sub-menu { + border-top: 0; + border-bottom: 0; + padding-bottom: 0; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.04); +} + +.popup-menu-ornament { + text-align: right; + width: 16px; + height: 16px; +} +.popup-menu-ornament:ltr { + text-align: right; +} +.popup-menu-ornament:rtl { + text-align: left; +} + +.popup-separator-menu-item { + padding: 0; +} +.popup-separator-menu-item .popup-separator-menu-item-separator { + height: 1px; + margin: 8px 0; + background-color: rgba(212, 190, 152, 0.2); +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { + margin: 8px 0; + background-color: rgba(212, 190, 152, 0.2); +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator:ltr { + margin-right: 32px; +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator:rtl { + margin-left: 32px; +} + +.background-menu { + -boxpointer-gap: 4px; + -arrow-rise: 0; +} + +.aggregate-menu { + min-width: 21em; +} +.aggregate-menu .popup-menu-icon { + padding: 0; + margin: 0 4px; + -st-icon-style: symbolic; +} +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:ltr { + padding-left: 16px; + margin-left: 16px; +} +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:rtl { + padding-right: 16px; + margin-right: 16px; +} + +/* Date/Time Menu */ +#calendarArea { + padding: 8px 16px; +} + +.datemenu-calendar-column { + spacing: 8px; + padding: 0; + border: 0 solid rgba(212, 190, 152, 0.2); +} +.datemenu-calendar-column:ltr { + margin-right: 0; + border-left-width: 0; +} +.datemenu-calendar-column:rtl { + margin-left: 0; + border-right-width: 0; +} +.datemenu-calendar-column .datemenu-displays-section { + padding-bottom: 0; +} +.datemenu-calendar-column .datemenu-displays-box { + spacing: 8px; + margin: 0 8px; +} + +.events-section-title { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 12px; + padding: 8px; + color: rgba(212, 190, 152, 0.7) !important; + font-weight: bold; +} +.events-section-title, .events-section-title:focus, .events-section-title:hover, .events-section-title:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.events-section-title:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.events-section-title:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.events-section-title:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} + +/* today button (the date) */ +.datemenu-today-button { + margin: 0; + border: 0; + border-radius: 6px; + margin: 0 8px; + min-height: 40px; + padding: 8px; +} +.datemenu-today-button, .datemenu-today-button:focus, .datemenu-today-button:hover, .datemenu-today-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.datemenu-today-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.datemenu-today-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.datemenu-today-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.datemenu-today-button .day-label { + font-weight: normal; + font-size: 1em; +} +.datemenu-today-button .date-label { + font-size: 18pt; + font-weight: 400; +} + +/* Calendar */ +.calendar { + margin: 0; + border: 0; + border-radius: 6px; + margin: 0 8px; + margin-bottom: 0; + padding: 0; +} +.calendar, .calendar:focus, .calendar:hover, .calendar:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.calendar:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.calendar .calendar-month-label { + transition-duration: 100ms; + min-height: 16px; + margin: 2px; + padding: 6px 8px; + border-radius: 6px; + color: inherit; + font-weight: bold; + text-align: center; +} +.calendar .calendar-month-label:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .calendar-change-month-back StIcon, +.calendar .calendar-change-month-forward StIcon { + icon-size: 16px; +} +.calendar .pager-button { + transition-duration: 100ms; + width: 28px; + height: 28px; + margin: 2px; + border-radius: 14px; + background-color: transparent; + color: rgba(212, 190, 152, 0.7); +} +.calendar .pager-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .pager-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .pager-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.calendar .calendar-day-base { + transition-duration: 100ms; + width: 28px; + height: 28px; + margin: 2px; + padding: 0; + border: 0; + border-radius: 14px; + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; + text-align: center; +} +.calendar .calendar-day-base:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .calendar-day-base:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.calendar .calendar-day-base:active { + transition-duration: 200ms; + border-color: transparent; + background-color: rgba(212, 190, 152, 0.12); + color: inherit; +} +.calendar .calendar-day-base:selected { + border-color: transparent; + background-color: #7c6f64 !important; + color: rgba(255, 255, 255, 0.87) !important; + font-weight: 500 !important; +} +.calendar .calendar-day-base.calendar-day-heading { + width: 28px; + height: 21px; + margin-top: 2px; + padding: 7px 0 0; + border-radius: 14px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + font-size: 9pt; + font-weight: 400; + font-weight: bold; + text-align: center; +} +.calendar .calendar-day-base.calendar-day-heading:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.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: inherit; +} +.calendar .calendar-today { + border: 0; + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.7); + background-color: rgba(60, 56, 54, 0.01); + color: inherit; + font-weight: normal; +} +.calendar .calendar-today:focus { + background-color: rgba(212, 190, 152, 0.08); + color: inherit; +} +.calendar .calendar-today:hover { + background-color: rgba(212, 190, 152, 0.08); + color: inherit; +} +.calendar .calendar-today:active, .calendar .calendar-today:active:hover, .calendar .calendar-today:active:focus { + background-color: rgba(212, 190, 152, 0.12); + color: inherit; +} +.calendar .calendar-today:selected { + box-shadow: inset 0 0 0 1px transparent; +} +.calendar .calendar-today:selected, .calendar .calendar-today:selected:hover, .calendar .calendar-today:selected:focus { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +.calendar .calendar-day-with-events { + background-image: url("assets/calendar-event.svg"); +} +.calendar .calendar-day-with-events, .calendar .calendar-day-with-events.calendar-work-day { + color: inherit; + font-weight: normal; +} +.calendar .calendar-other-month-day { + color: rgba(212, 190, 152, 0.3) !important; +} +.calendar .calendar-week-number { + width: 28px; + height: 28px; + margin: 2px; + border-radius: 14px; + background-color: transparent; + color: rgba(212, 190, 152, 0.5); + font-weight: bold; + font-size: 1em; + text-align: center; +} + +/* Events */ +.events-button { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 40px; + padding: 8px; +} +.events-button, .events-button:focus, .events-button:hover, .events-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.events-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.events-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.events-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.events-button .events-box { + spacing: 8px; +} +.events-button .events-list { + spacing: 8px; +} +.events-button .events-title { + color: rgba(212, 190, 152, 0.7); + font-weight: bold; + margin-bottom: 0; +} +.events-button .event-time { + color: rgba(212, 190, 152, 0.7); + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; +} + +/* World clocks */ +.world-clocks-button { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 12px; + padding: 8px; +} +.world-clocks-button, .world-clocks-button:focus, .world-clocks-button:hover, .world-clocks-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.world-clocks-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.world-clocks-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.world-clocks-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.world-clocks-button .world-clocks-grid { + spacing-rows: 0.4em; + spacing-columns: 0.8em; +} +.world-clocks-button .world-clocks-header { + color: rgba(212, 190, 152, 0.7); + font-weight: bold; +} +.world-clocks-button .world-clocks-city { + color: inherit; + font-weight: normal; + font-size: 1em; +} +.world-clocks-button .world-clocks-time { + color: rgba(212, 190, 152, 0.7); + font-weight: normal; + font-size: 1em; + font-feature-settings: "tnum"; + text-align: right; +} +.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(212, 190, 152, 0.5); + font-size: 1em; + font-feature-settings: "tnum"; +} + +/* Weather */ +.weather-button { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 40px; + padding: 8px; +} +.weather-button, .weather-button:focus, .weather-button:hover, .weather-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.weather-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.weather-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.weather-button:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.weather-button .weather-box { + spacing: 0.4em; +} +.weather-button .weather-header-box { + spacing: 8px; +} +.weather-button .weather-header { + color: rgba(212, 190, 152, 0.7); + font-weight: bold; +} +.weather-button .weather-header.location { + font-weight: normal; + font-size: 1em; +} +.weather-button .weather-grid { + spacing-rows: 0.4em; + spacing-columns: 0.8em; +} +.weather-button .weather-forecast-time { + padding-top: 0; + padding-bottom: 0; + color: rgba(212, 190, 152, 0.7); + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; +} +.weather-button .weather-forecast-icon { + icon-size: 32px; +} +.weather-button .weather-forecast-temp { + font-weight: bold; +} + +/* Message List */ +.message-list { + width: 31.5em; + padding: 0; +} +.message-list .message-list-placeholder { + spacing: 12px; +} + +.message-list-sections { + spacing: 8px; + margin: 0 8px; +} + +.message-list-section, +.message-list-section-list { + spacing: 8px; +} + +.message-list-section-list:ltr { + padding-left: 0; +} +.message-list-section-list:rtl { + padding-right: 0; +} + +.message-list-controls { + margin: 8px 8px 0; + padding: 0; + spacing: 8px; +} + +.message { + margin: 0; + border: 0; + border-radius: 6px; + min-height: 56px; +} +.message, .message:focus, .message:hover, .message:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.message:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.message:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.message:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.message .message-icon-bin { + padding: 12px 0 12px 12px; +} +.message .message-icon-bin:rtl { + padding: 12px 12px 12px 0; +} +.message .message-icon-bin > StIcon { + -st-icon-style: requested; + icon-size: 16px; + color: inherit; +} +.message .message-icon-bin > StIcon, .message .message-icon-bin > StIcon:rtl { + margin: 0; +} +.message .message-icon-bin > .fallback-app-icon { + width: 16px; + height: 16px; +} +.message .message-content { + min-height: 40px; + padding: 8px; + spacing: 0; + color: inherit; + font-size: 1em; +} +.message .message-title { + min-height: 22px; + padding-top: 2px; + color: inherit; + font-weight: bold; + font-size: 1em; +} +.message .message-secondary-bin { + padding: 0 8px; +} +.message .message-secondary-bin > .event-time { + min-height: 22px; + padding-top: 2px; + color: rgba(212, 190, 152, 0.7); + font-size: 1em; + text-align: right; + padding-bottom: 0; +} +.message .message-secondary-bin > .event-time:ltr { + text-align: right; +} +.message .message-secondary-bin > .event-time:rtl { + text-align: left; +} +.message .message-secondary-bin > StIcon { + icon-size: 16px; +} +.message .message-close-button { + transition-duration: 100ms; + icon-size: 16px; + padding: 4px; + border-radius: 12px; +} +.message .message-close-button, .message .message-close-button:hover, .message .message-close-button:active { + color: rgba(212, 190, 152, 0.7); +} +.message .message-close-button:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.message .message-close-button:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.message .message-close-button:active { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); +} +.message .message-body { + color: rgba(212, 190, 152, 0.7); +} + +.url-highlighter { + link-color: #7c6f64; +} + +/* Media Controls */ +.message-media-control { + transition-duration: 100ms; + margin: 16px 0; + padding: 8px; + border-radius: 16px; +} +.message-media-control, .message-media-control:focus, .message-media-control:hover, .message-media-control:active { + color: rgba(212, 190, 152, 0.7); +} +.message-media-control:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.message-media-control:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.message-media-control:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.message-media-control:insensitive { + color: rgba(212, 190, 152, 0.3); +} +.message-media-control:last-child:ltr { + margin-right: 16px; + padding-right: 8px; + border-radius: 16px; +} +.message-media-control:last-child:rtl { + margin-left: 16px; + padding-left: 8px; + border-radius: 16px; +} + +.media-message-cover-icon { + icon-size: 32px !important; + margin: 4px 0 !important; + border-radius: 0; +} +.media-message-cover-icon.fallback { + icon-size: 16px !important; + padding: 8px; + border: 0; + border-radius: 6px; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5) !important; +} + +.candidate-popup-content { + padding: 8px; + spacing: 0; +} + +.candidate-index { + padding: 0 4px 0 0; + color: rgba(212, 190, 152, 0.7); +} + +.candidate-box { + transition-duration: 100ms; + min-height: 28px; + padding: 0 8px; + border-radius: 6px; +} +.candidate-box:hover { + background-color: rgba(212, 190, 152, 0.08); + color: inherit; + transition-duration: 0ms; +} +.candidate-box:active { + background-color: rgba(212, 190, 152, 0.12); + transition-duration: 200ms; +} +.candidate-box:selected { + background-color: rgba(124, 111, 100, 0.6); + color: inherit; + transition-duration: 0ms; +} + +.candidate-page-button-box { + height: 28px; +} +.vertical .candidate-page-button-box { + padding-top: 0; +} +.horizontal .candidate-page-button-box { + padding-left: 0; +} + +.candidate-page-button { + min-width: 28px; + min-height: 28px; + padding: 0; +} + +.candidate-page-button-previous { + border-right-width: 0; + border-radius: 6px; +} + +.candidate-page-button-next { + border-radius: 6px; +} + +.candidate-page-button-icon { + icon-size: 16px; +} + +/* Notifications & Message Tray */ +.notification-banner { + min-height: 56px; + width: 34em; + margin: 5px; + border: 0; + border-radius: 6px; + font-size: 1em; +} +.notification-banner, .notification-banner:focus, .notification-banner:hover, .notification-banner:active { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #3C3836; + color: #d4be98; +} +.notification-banner .notification-actions { + spacing: 0; + padding-top: 0; + border-top: 0; + background-color: transparent; + color: inherit; +} +.summary-source-counter { + -shell-counter-overlap-x: 3px; + -shell-counter-overlap-y: 3px; + height: 1.6em; + width: 1.6em; + border: 0; + border-radius: 0.8em; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); + font-weight: bold; + font-size: 1em; +} + +.chat-body { + spacing: 5px; +} + +.chat-response { + margin: 5px; +} + +.chat-log-message { + color: #d4be98; +} + +.chat-new-group { + padding-top: 1em; +} + +.chat-received { + padding-left: 4px; +} +.chat-received:rtl { + padding-left: 0; + padding-right: 4px; +} + +.chat-sent { + padding-left: 18pt; + color: rgba(212, 190, 152, 0.7); +} +.chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; +} + +.chat-meta-message { + padding-left: 4px; + color: rgba(212, 190, 152, 0.7); + font-size: 9pt; + font-weight: 400; +} +.chat-meta-message:rtl { + padding-left: 0; + padding-right: 4px; +} + +.hotplug-notification-item-icon { + icon-size: 24px; + padding: 0 4px; +} + +/* Modal Dialogs */ +.headline { + font-size: 15pt; + font-weight: 500; +} + +.modal-dialog { + border: 0; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} +.modal-dialog .modal-dialog-content-box { + max-width: 28em; + margin: 32px 40px; + spacing: 32px; +} +/* End Session Dialog */ +.end-session-dialog { + width: 30em; +} +.end-session-dialog .end-session-dialog-battery-warning, +.end-session-dialog .dialog-list-title { + color: #ea6962; +} + +/* Message Dialog */ +.message-dialog-content { + spacing: 18px; +} +.message-dialog-content .message-dialog-title { + font-size: 15pt; + font-weight: 500; + text-align: inherit; +} +.message-dialog-content .message-dialog-title.lightweight { + font-size: 15pt; + font-weight: 500; +} +.message-dialog-content .message-dialog-description { + color: rgba(212, 190, 152, 0.7); + text-align: inherit; +} + +/* Dialog List */ +.dialog-list { + spacing: 18px; +} +.dialog-list .dialog-list-title { + text-align: inherit; + 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(212, 190, 152, 0.7); + font-size: 1em; +} + +/* Run Dialog */ +.run-dialog .modal-dialog-content-box { + margin-top: 24px; + margin-bottom: 16px; +} +.run-dialog .run-dialog-entry { + width: 20em; +} +.run-dialog .run-dialog-description { + text-align: inherit; + color: rgba(212, 190, 152, 0.7); + font-size: 1em; +} + +/* Password or Authentication Dialog */ +.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: 18em; +} + +.prompt-dialog-error-label, +.prompt-dialog-info-label, +.prompt-dialog-null-label { + font-size: 1em; + text-align: inherit; +} + +.prompt-dialog-error-label { + color: #ea6962; +} + +/* Polkit Dialog */ +.polkit-dialog-user-layout { + text-align: center; + spacing: 8px; + margin-bottom: 6px; +} +.polkit-dialog-user-layout .polkit-dialog-user-icon { + border-radius: 9999px; + background-size: contain; +} +.polkit-dialog-user-layout .polkit-dialog-user-root-label { + color: #ea6962; +} + +/* Audio selection dialog */ +.audio-device-selection-dialog .modal-dialog-content-box { + margin-bottom: 28px; +} +.audio-device-selection-dialog .audio-selection-box { + spacing: 20px; +} + +.audio-selection-device { + transition-duration: 100ms; + border: 0; + border-radius: 6px; +} +.audio-selection-device:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.audio-selection-device:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.audio-selection-device:active { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); + color: inherit; +} + +.audio-selection-device-box { + padding: 20px; + spacing: 20px; +} + +.audio-selection-device-icon { + icon-size: 64px; +} + +/* Network Dialogs */ +.nm-dialog { + max-height: 34em; + min-height: 31em; + min-width: 32em; +} + +.nm-dialog-content { + spacing: 20px; + padding: 24px; +} + +.nm-dialog-airplane-box { + spacing: 12px; +} + +.nm-dialog-airplane-headline { + text-align: center; +} + +.nm-dialog-airplane-text { + color: rgba(212, 190, 152, 0.7); +} + +.nm-dialog-header { + font-size: 15pt; + font-weight: 500; +} + +.nm-dialog-subheader { + color: rgba(212, 190, 152, 0.7); +} + +.nm-dialog-header-icon { + icon-size: 32px; + color: rgba(212, 190, 152, 0.7); +} + +.nm-dialog-header-hbox { + spacing: 16px; +} + +.nm-dialog-scroll-view { + border: 0; + padding: 0; + background-color: transparent; +} + +.nm-dialog-item { + transition-duration: 100ms; + padding: 12px; + spacing: 20px; + border-bottom: 0; + border-radius: 6px; + font-size: 1em; +} +.nm-dialog-item:focus { + background-color: rgba(212, 190, 152, 0.08); +} +.nm-dialog-item:hover { + background-color: rgba(212, 190, 152, 0.08); +} +.nm-dialog-item:active { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); +} +.nm-dialog-item:selected { + background-color: rgba(124, 111, 100, 0.6); + color: #d4be98; +} + +.nm-dialog-icon { + icon-size: 16px; + color: rgba(212, 190, 152, 0.7); +} + +.nm-dialog-icons { + spacing: 0.5em; +} + +.no-networks-label { + color: rgba(212, 190, 152, 0.7); +} + +.no-networks-box { + spacing: 12px; +} + +/* OSD */ +.osd-window { + padding: 12px; + border: none; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; + text-align: center; + font-weight: bold; + spacing: 12px; + margin: 32px; + min-width: 64px; + min-height: 64px; +} +.osd-window StIcon { + icon-size: 96px; +} +.osd-window .osd-monitor-label { + font-size: 48px; + font-weight: 400; +} +.osd-window .level { + height: 8px; + -barlevel-height: 8px; + -barlevel-background-color: rgba(212, 190, 152, 0.2); + -barlevel-active-background-color: #7c6f64; + -barlevel-overdrive-color: #ea6962; + -barlevel-overdrive-separator-width: 2px; +} + +.resize-popup { + padding: 12px; + border: none; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} + +/* Pad OSD */ +.pad-osd-window { + padding: 32px; + background-color: black; +} +.pad-osd-window .pad-osd-title-box { + spacing: 12px; +} +.pad-osd-window .pad-osd-title-menu-box { + spacing: 6px; +} + +.combo-box-label { + width: 15em; +} + +/* App Switcher */ +.switcher-popup { + padding: 8px; + spacing: 16px; +} + +.switcher-list { + padding: 12px; + border: none; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} +.switcher-list .switcher-list-item-container { + spacing: 8px; +} +.switcher-list .item-box { + transition-duration: 100ms; + padding: 8px; + border: 0; + border-radius: 6px; +} +.switcher-list .item-box:outlined { + padding: 8px; + border: 0; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.12); + color: inherit; +} +.switcher-list .item-box:selected { + background-color: rgba(124, 111, 100, 0.6); + color: inherit; +} +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} +.switcher-list .thumbnail { + width: 256px; +} +.switcher-list .separator { + width: 1px; + background: rgba(212, 190, 152, 0.2); +} + +.switcher-arrow { + transition-duration: 100ms; + border-color: transparent; + color: rgba(212, 190, 152, 0.7); +} +.switcher-arrow:highlighted { + color: #d4be98; +} + +.input-source-switcher-symbol { + width: 96px; + height: 96px; + font-size: 48px; + font-weight: 400; +} + +.cycler-highlight { + border: 4px solid #7c6f64; +} + +/* Workspace Switcher */ +.workspace-switcher-group { + padding: 8px; +} + +.workspace-switcher-container { + padding: 12px; + border: none; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} + +.workspace-switcher { + background: transparent; + border: 0; + border-radius: 0; + padding: 0; + spacing: 8px; +} + +.ws-switcher-box { + height: 48px; + border: 0; + border-radius: 6px; + background-color: rgba(212, 190, 152, 0.2); + background-size: 0; +} + +.ws-switcher-active-up, +.ws-switcher-active-down, +.ws-switcher-active-left, +.ws-switcher-active-right { + height: 48px; + border: 0; + border-radius: 6px; + background-color: #7c6f64; + background-size: 0; + color: inherit; +} + +/* OVERVIEW */ +#overview { + spacing: 24px; + background-color: transparent; + color: #fff; +} +#overview StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.2); +} +#overview StScrollBar StButton#vhandle, +#overview StScrollBar StButton#hhandle { + background-color: rgba(255, 255, 255, 0.5); +} +#overview StScrollBar StButton#vhandle:hover, +#overview StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.6); +} +#overview StScrollBar StButton#vhandle:active, +#overview StScrollBar StButton#hhandle:active { + background-color: rgba(255, 255, 255, 0.7); +} + +.overview-controls { + padding-bottom: 32px; +} + +/* Top Bar */ +#panel { + transition-duration: 250ms; + height: 28px; + background-color: #1e1c1b; + font-weight: bold; + font-feature-settings: "tnum"; +} +#panel #panelLeft, +#panel #panelCenter { + spacing: 0; +} +#panel .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-width: 0; + -panel-corner-border-color: transparent; +} +#panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { + -panel-corner-border-color: transparent; +} +#panel .panel-button { + -natural-hpadding: 8px; + -minimum-hpadding: 4px; + transition-duration: 100ms; + border: 0; + border-radius: 0; + color: rgba(221, 199, 161, 0.7); + text-shadow: none; + font-weight: bold; +} +#panel .panel-button.clock-display .clock { + transition-duration: 100ms; + border: 0; + border-radius: 0; +} +#panel .panel-button .system-status-icon, +#panel .panel-button .app-menu-icon > StIcon, +#panel .panel-button .popup-menu-arrow { + icon-shadow: none; +} +#panel .panel-button:hover { + box-shadow: none; + color: #ddc7a1; + text-shadow: none; +} +#panel .panel-button:hover.clock-display { + box-shadow: none; +} +#panel .panel-button:hover.clock-display .clock { + box-shadow: none; +} +#panel .panel-button:hover .system-status-icon, +#panel .panel-button:hover .app-menu-icon > StIcon, +#panel .panel-button:hover .popup-menu-arrow { + icon-shadow: none; +} +#panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { + box-shadow: inset 0 -2px #ddc7a1; + background-color: rgba(30, 28, 27, 0.01); + color: #ddc7a1; +} +#panel .panel-button:active.clock-display, #panel .panel-button:overview.clock-display, #panel .panel-button:focus.clock-display, #panel .panel-button:checked.clock-display { + box-shadow: none; + background-color: transparent; +} +#panel .panel-button:active.clock-display .clock, #panel .panel-button:overview.clock-display .clock, #panel .panel-button:focus.clock-display .clock, #panel .panel-button:checked.clock-display .clock { + box-shadow: inset 0 -2px #ddc7a1; + background-color: rgba(30, 28, 27, 0.01); +} +#panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { + icon-shadow: none; +} +#panel .panel-button .system-status-icon { + icon-size: 16px; + padding: 0 4px; +} +#panel .panel-button .app-menu-icon { + -st-icon-style: symbolic; + margin-left: 4px; + margin-right: 4px; +} +#panel .panel-status-indicators-box, +#panel .panel-status-menu-box { + spacing: 2px; +} +#panel .power-status.panel-status-indicators-box { + spacing: 0; +} +#panel .screencast-indicator, +#panel .remote-access-indicator { + color: #d8a657; +} +#panel.unlock-screen, #panel.login-screen, #panel:overview { + background-color: transparent; +} +#panel.unlock-screen .panel-corner, #panel.login-screen .panel-corner, #panel:overview .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-color: transparent; +} +#panel.unlock-screen .panel-button, #panel.login-screen .panel-button, #panel:overview .panel-button { + color: rgba(255, 255, 255, 0.7); +} +#panel.unlock-screen .panel-button:hover, #panel.login-screen .panel-button:hover, #panel:overview .panel-button:hover, #panel.unlock-screen .panel-button:active, #panel.login-screen .panel-button:active, #panel:overview .panel-button:active, #panel.unlock-screen .panel-button:overview, #panel.login-screen .panel-button:overview, #panel:overview .panel-button:overview, #panel.unlock-screen .panel-button:focus, #panel.login-screen .panel-button:focus, #panel:overview .panel-button:focus, #panel.unlock-screen .panel-button:checked, #panel.login-screen .panel-button:checked, #panel:overview .panel-button:checked { + color: #fff; +} + +#appMenu { + spacing: 4px; +} +#appMenu .label-shadow { + color: transparent; +} + +.clock-display-box { + spacing: 0; +} +.clock-display-box .clock { + padding-left: 8px; + padding-right: 8px; +} + +/* Activities Ripple */ +.ripple-box { + width: 48px; + height: 48px; + border-radius: 0 0 48px 0; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.3); + background-image: none; + background-size: auto; +} +.ripple-box:rtl { + border-radius: 0 0 0 48px; + background-image: none; +} + +/* Window Picker */ +.window-picker { + spacing: 8px; + padding: 0 16px 32px; +} +.window-picker.external-monitor { + padding: 16px; +} + +.window-clone-border { + border: 4px solid rgba(255, 255, 255, 0.3); + border-radius: 6px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); +} + +.window-caption { + padding: 4px 8px; + border-radius: 6px; + background-color: black; + color: rgba(255, 255, 255, 0.87); + spacing: 0; + border: 0; + font-size: 1em; + font-weight: normal; +} + +.window-close { + transition-duration: 100ms; + height: 32px; + width: 32px; + padding: 0; + border: 0; + border-radius: 16px; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + background-color: #ea6962; + color: #000; + background-image: url("assets/window-close.svg"); + background-size: 24px; +} +.window-close:hover { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + border-color: transparent; + background-color: #ce5c56; + color: #000; +} +.window-close:active { + transition-duration: 200ms; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + border-color: transparent; + background-color: #c55852; + color: #000; +} +.window-close StIcon { + icon-size: 24px; + color: transparent; +} + +.search-entry { + width: 304px; + padding: 0 8px; + border-radius: 6px 6px 0 0; + color: rgba(255, 255, 255, 0.5); + selection-background-color: rgba(255, 255, 255, 0.3); + selected-color: #fff; + transition-duration: 100ms; + background-color: rgba(255, 255, 255, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.3); +} +.search-entry:hover { + box-shadow: inset 0 -1px rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.5); +} +.search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #fff; + padding: 0 8px; + border: 0; + color: #fff; +} +.search-entry StLabel.hint-text { + color: rgba(255, 255, 255, 0.7); +} +.search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 4px; + color: rgba(255, 255, 255, 0.7); +} +.search-entry:hover .search-entry-icon, +.search-entry:focus .search-entry-icon { + color: #fff; +} + +/* App Grid */ +.icon-grid { + row-spacing: 48px; + column-spacing: 48px; + max-row-spacing: 96px; + max-column-spacing: 96px; +} + +/* App Icons */ +.app-well-app .overview-icon, +.grid-search-result .overview-icon { + padding: 6px; + border: 0; + border-radius: 6px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.app-well-app:focus .overview-icon, +.grid-search-result:focus .overview-icon { + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.app-well-app:drop .overview-icon, .app-well-app:hover .overview-icon, .app-well-app:selected .overview-icon, +.grid-search-result:drop .overview-icon, +.grid-search-result:hover .overview-icon, +.grid-search-result:selected .overview-icon { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.app-well-app:active .overview-icon, .app-well-app:checked .overview-icon, +.grid-search-result:active .overview-icon, +.grid-search-result:checked .overview-icon { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: inherit; + transition-duration: 200ms; +} +.app-well-app .overview-icon.overview-icon-with-label, +.grid-search-result .overview-icon.overview-icon-with-label { + padding: 8px; + spacing: 0; +} +.app-well-app .overview-icon.overview-icon-with-label > StBoxLayout, +.grid-search-result .overview-icon.overview-icon-with-label > StBoxLayout { + spacing: 4px; +} + +/* App Folders */ +.app-well-app.app-folder { + border-radius: 6px; + background-color: transparent; +} + +.app-folder-dialog { + border: 0; + border-radius: 6px; + background-color: #3C3836; + color: #d4be98; + padding: 12px; +} +.app-folder-dialog .folder-name-container { + padding: 24px 36px 0; + spacing: 12px; +} +.app-folder-dialog .folder-name-container .folder-name-label, +.app-folder-dialog .folder-name-container .folder-name-entry { + font-size: 15pt; + font-weight: 500; +} +.app-folder-dialog .folder-name-container .folder-name-entry { + width: 300px; +} +.app-folder-dialog .folder-name-container .folder-name-label { + padding: 0 8px; + color: inherit; +} +.app-folder-dialog .folder-name-container .edit-folder-button { + width: 32px; + height: 32px; + min-width: 0; + min-height: 0; + padding: 0; + border-radius: 16px; +} +.app-folder-dialog .folder-name-container .edit-folder-button > StIcon { + icon-size: 16px; +} +.app-folder-dialog .icon-grid { + row-spacing: 16px; + column-spacing: 32px; +} +.app-folder-dialog .page-indicators { + margin-bottom: 16px; +} +.app-folder-dialog .page-indicators .page-indicator { + padding: 16px 12px; +} +.app-folder-dialog .app-well-app:focus .overview-icon { + background-color: rgba(212, 190, 152, 0.08); +} +.app-folder-dialog .app-well-app:drop .overview-icon, .app-folder-dialog .app-well-app:hover .overview-icon, .app-folder-dialog .app-well-app:selected .overview-icon { + background-color: rgba(212, 190, 152, 0.08); +} +.app-folder-dialog .app-well-app:active .overview-icon, .app-folder-dialog .app-well-app:checked .overview-icon { + background-color: rgba(212, 190, 152, 0.12); +} + +.app-folder-dialog-container { + padding: 12px; + width: 620px; + height: 620px; +} + +.app-folder-icon { + padding: 8px; + spacing-rows: 4px; + spacing-columns: 4px; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.08); +} +.app-folder-icon > StBin > StIcon { + padding: 2px; +} + +.app-well-app-running-dot { + height: 2px; + width: 32px; + margin-bottom: 0; + border-radius: 0; + background-color: #fff; +} + +.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; +} + +.app-menu, +.app-well-menu { + max-width: 27.25em; +} + +.page-indicator { + padding: 16px 20px; +} +.page-indicator .page-indicator-icon { + width: 12px; + height: 12px; + border-radius: 12px; + background-color: #fff; +} + +.all-apps { + padding: 0 88px 10px; +} + +.system-action-icon { + icon-size: 48px; + border-radius: 9999px; + box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); + background-color: #212121; + color: rgba(255, 255, 255, 0.87); +} + +/* Search */ +#searchResultsContent { + max-width: 1024px; +} + +#searchResultsContent { + padding-left: 16px; + padding-right: 16px; + spacing: 16px; +} + +.search-section { + spacing: 16px; +} +.search-section .search-section-separator { + height: 1px; + background-color: rgba(255, 255, 255, 0.2); +} +.search-section:last-child .search-section-separator { + height: 0; + background-color: transparent; +} + +.search-section-content { + spacing: 32px; + padding: 0; + border: 0; + border-radius: 0; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; +} + +.search-statustext { + font-size: 48px; + font-weight: 400; + color: rgba(255, 255, 255, 0.5); +} + +.grid-search-results { + spacing: 32px; +} + +.search-provider-icon { + padding: 6px; + border: 0; + border-radius: 6px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.search-provider-icon:focus { + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.search-provider-icon:hover, .search-provider-icon:selected { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.search-provider-icon:active, .search-provider-icon:checked { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: inherit; + transition-duration: 200ms; +} +.search-provider-icon .list-search-provider-content { + spacing: 20px; +} +.search-provider-icon .list-search-provider-content .list-search-provider-details { + width: 150px; + margin-top: 0; + color: rgba(255, 255, 255, 0.7); +} + +.list-search-results { + spacing: 4px; +} + +.list-search-result { + padding: 6px; + border: 0; + border-radius: 6px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.list-search-result:focus { + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.list-search-result:hover, .list-search-result:selected { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.list-search-result:active, .list-search-result:checked { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: inherit; + transition-duration: 200ms; +} +.list-search-result .list-search-result-content { + spacing: 30px; +} +.list-search-result .list-search-result-title { + spacing: 12px; + color: inherit; + font-size: 11.25pt; + font-weight: 400; +} +.list-search-result .list-search-result-description { + color: rgba(255, 255, 255, 0.7); +} + +/* Dash */ +#dash { + font-size: 1em; + transition-duration: 250ms; + border: 0; + background-color: rgba(255, 255, 255, 0.08); + color: #fff; + padding: 3px 0; + border-left-width: 0; + border-radius: 0 6px 6px 0; +} +#dash:rtl { + border-right-width: 0; + border-radius: 6px 0 0 6px; +} +#dash .placeholder { + height: 24px; + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; +} +#dash .empty-dash-drop-target { + width: 24px; + height: 24px; +} + +.dash-item-container > StWidget { + padding: 3px 6px; +} + +.dash-label { + padding: 7px 8px; + border: 0; + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #3C3836; + color: #d4be98; + text-align: center; + -x-offset: 8px; +} + +.show-apps { + color: rgba(255, 255, 255, 0.7); +} +.show-apps .overview-icon { + padding: 6px; + border: 0; + border-radius: 6px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.show-apps:focus .overview-icon { + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.show-apps:drop .overview-icon, .show-apps:hover .overview-icon, .show-apps:selected .overview-icon { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.08); + color: inherit; + transition-duration: 0ms; +} +.show-apps:active .overview-icon, .show-apps:checked .overview-icon { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: inherit; + transition-duration: 200ms; +} +.show-apps:checked { + color: #fff; +} + +/* Workspace pager */ +.workspace-thumbnails { + transition-duration: 250ms; + border: 0; + background-color: rgba(255, 255, 255, 0.08); + color: #fff; + visible-width: 32px; + padding: 12px; + spacing: 12px; + border-right-width: 0; + border-radius: 6px 0 0 6px; +} +.workspace-thumbnails:rtl { + border-left-width: 0; + border-radius: 0 6px 6px 0; +} +.workspace-thumbnails .placeholder { + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; + height: 24px; +} + +.workspace-thumbnail-indicator { + border: 0 solid #fff; + border-radius: 0; + padding: 6px 10px; + border-left-width: 2px; +} + +.select-area-rubberband { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.3); +} + +.user-icon { + border: 0; + border-radius: 9999px; + background-size: contain; + color: inherit; +} +.user-icon:hover { + border-color: transparent; + color: inherit; +} + +.user-icon StIcon { + background-color: rgba(212, 190, 152, 0.08); + border-radius: 9999px; +} + +.user-widget.vertical .user-icon { + icon-size: 128px; +} +.user-widget.vertical .user-icon StIcon { + width: 64px; + height: 64px; + padding: 32px; +} + +.user-widget.horizontal .user-icon { + icon-size: 64px; +} +.user-widget.horizontal .user-icon StIcon { + width: 32px; + height: 32px; + padding: 16px; +} + +.lightbox { + background-color: black; +} + +.flashspot { + background-color: white; +} + +.hidden { + color: transparent; +} + +.caps-lock-warning-label { + text-align: center; + padding-bottom: 8px; + font-size: 1em; + color: #d8a657; +} + +.ripple-pointer-location { + width: 50px; + height: 50px; + border-radius: 25px; + box-shadow: none; + background-color: rgba(124, 111, 100, 0.6); +} + +.pie-timer { + width: 60px; + height: 60px; + -pie-border-width: 0; + -pie-border-color: transparent; + -pie-background-color: rgba(124, 111, 100, 0.6); +} + +.magnifier-zoom-region { + border: 2px solid #7c6f64; +} +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +/* Tiled window previews */ +.tile-preview { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.3); +} + +.tile-preview-left.on-primary { + border-radius: 0; +} + +.tile-preview-right.on-primary { + border-radius: 0; +} + +.tile-preview-left.tile-preview-right.on-primary { + border-radius: 0; +} + +/* On-screen Keyboard */ +#keyboard { + background-color: rgba(0, 0, 0, 0.3); + box-shadow: none; +} +#keyboard .page-indicator { + padding: 4px; +} +#keyboard .page-indicator .page-indicator-icon { + width: 8px; + height: 8px; +} + +.key-container { + padding: 4px; + spacing: 4px; +} + +.keyboard-key { + min-height: 1.2em; + min-width: 1.2em; + font-size: 2em; + font-weight: 500; + border: 0; + border-width: 0; + border-style: none; + border-radius: 6px; +} +.keyboard-key, .keyboard-key.default-key { + color: #d4be98; + background-color: #3C3836; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-key:focus, .keyboard-key.default-key:focus { + color: #d4be98; + background-color: #48433e; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.keyboard-key:hover, .keyboard-key:checked, .keyboard-key.default-key:hover, .keyboard-key.default-key:checked { + color: #d4be98; + background-color: #48433e; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.keyboard-key:active, .keyboard-key.default-key:active { + color: #d4be98; + background-color: #4e4842; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.keyboard-key:grayed { + border-color: transparent; + background-color: rgba(0, 0, 0, 0.3); + color: #fff; +} +.keyboard-key.enter-key { + color: rgba(255, 255, 255, 0.87); + background-color: #7c6f64; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-key.enter-key:hover, .keyboard-key.enter-key:checked { + color: rgba(255, 255, 255, 0.87); + background-color: #867b70; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.keyboard-key.enter-key:active { + color: rgba(255, 255, 255, 0.87); + background-color: #8c8077; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.keyboard-key.shift-key-uppercase { + color: #7c6f64; +} +.keyboard-key StIcon { + icon-size: 32px; +} + +.keyboard-subkeys { + -boxpointer-gap: 5px; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-border-radius: 0; + -arrow-background-color: transparent; + padding: 5px; + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #3C3836; + color: #d4be98; +} +.keyboard-subkeys .keyboard-key { + border-radius: 6px; + color: #7c6f64; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-subkeys .keyboard-key:focus { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.keyboard-subkeys .keyboard-key:hover, .keyboard-subkeys .keyboard-key:checked { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.keyboard-subkeys .keyboard-key:active { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} + +.emoji-page .keyboard-key { + border: 0; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.emoji-page .keyboard-key:focus { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.emoji-page .keyboard-key:hover { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.emoji-page .keyboard-key:active { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} + +.emoji-panel .keyboard-key:latched { + border-color: transparent; + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} + +.word-suggestions { + font-size: 11.25pt; + font-weight: 400; + spacing: 12px; + min-height: 20pt; +} + +/* Looking Glass */ +#LookingGlassDialog { + spacing: 0; + padding: 0; + border: 0; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} +#LookingGlassDialog > #Toolbar { + padding: 0 8px; + border: 0; + border-radius: 0; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(60, 56, 54, 0.01); +} +#LookingGlassDialog .labels { + spacing: 0; +} +#LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + transition-duration: 100ms; + min-height: 32px; + padding-left: 32px; + padding-right: 32px; + border: 0; + color: rgba(212, 190, 152, 0.7); + font-weight: bold; +} +#LookingGlassDialog .notebook-tab:hover { + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.7); + text-shadow: none; +} +#LookingGlassDialog .notebook-tab:active { + transition-duration: 200ms; + background-color: rgba(212, 190, 152, 0.12); +} +#LookingGlassDialog .notebook-tab:selected { + border: 0; + box-shadow: inset 0 -2px #7c6f64; + background-color: rgba(60, 56, 54, 0.01); + color: #d4be98; + text-shadow: none; +} +#LookingGlassDialog StBoxLayout#EvalBox { + padding: 8px; + spacing: 4px; +} +#LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; +} + +.lg-dialog .shell-link, .lg-dialog .shell-link:hover, .lg-dialog .shell-link:active { + color: #7c6f64; +} +.lg-dialog .actor-link, .lg-dialog .actor-link:hover, .lg-dialog .actor-link:active { + color: inherit; +} + +.lg-completions-text { + font-size: 1em; + font-style: italic; +} + +.lg-obj-inspector-title { + spacing: 4px; +} + +.lg-obj-inspector-button, .lg-obj-inspector-button:hover { + border: 0; +} + +#Windows { + padding: 8px; +} + +#lookingGlassExtensions { + padding: 8px; +} + +.lg-extensions-list { + padding: 0; + spacing: 6px; +} + +.lg-extension { + padding: 4px; + border: 0; + border-radius: 0; + background-color: transparent; +} + +.lg-extension-name { + font-size: 15pt; + font-weight: 500; +} + +.lg-extension-meta { + spacing: 6px; +} + +#LookingGlassPropertyInspector { + padding: 6px; + border: 0; + border-radius: 6px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #3C3836; + color: #d4be98; +} + +/* Login Dialog */ +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; +} + +.login-dialog, +.unlock-dialog { + border: 0; + background-color: transparent; +} +.login-dialog StEntry, +.unlock-dialog StEntry { + transition-duration: 100ms; + background-color: rgba(255, 255, 255, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.3); + color: #ddc7a1; + selection-background-color: rgba(221, 199, 161, 0.3); + selected-color: #ddc7a1; +} +.login-dialog StEntry:focus, +.unlock-dialog StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #ddc7a1; +} +.login-dialog StEntry:insensitive, +.unlock-dialog StEntry:insensitive { + color: rgba(212, 190, 152, 0.5); + border-color: transparent; + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.2); + color: rgba(221, 199, 161, 0.5); +} +.login-dialog StEntry StLabel.hint-text, +.unlock-dialog StEntry StLabel.hint-text { + color: rgba(221, 199, 161, 0.7); +} +.login-dialog StEntry StIcon.peek-password, +.unlock-dialog StEntry StIcon.peek-password { + color: rgba(221, 199, 161, 0.7); +} +.login-dialog StEntry StIcon.peek-password:hover, +.unlock-dialog StEntry StIcon.peek-password:hover { + color: #ddc7a1; +} +.login-dialog .modal-dialog-button-box, +.unlock-dialog .modal-dialog-button-box { + spacing: 3px; +} +.login-dialog .modal-dialog-button, +.unlock-dialog .modal-dialog-button { + color: #7c6f64; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.login-dialog .modal-dialog-button:focus, +.unlock-dialog .modal-dialog-button:focus { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.login-dialog .modal-dialog-button:hover, +.unlock-dialog .modal-dialog-button:hover { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:active, +.unlock-dialog .modal-dialog-button:active { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.login-dialog .modal-dialog-button:insensitive, +.unlock-dialog .modal-dialog-button:insensitive { + color: rgba(212, 190, 152, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:default, +.unlock-dialog .modal-dialog-button:default { + min-width: 32px; + padding: 0 16px; + color: rgba(255, 255, 255, 0.87); + background-color: #7c6f64; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.login-dialog .modal-dialog-button:default:focus, +.unlock-dialog .modal-dialog-button:default:focus { + color: rgba(255, 255, 255, 0.87); + background-color: #867b70; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.login-dialog .modal-dialog-button:default:hover, +.unlock-dialog .modal-dialog-button:default:hover { + color: rgba(255, 255, 255, 0.87); + background-color: #867b70; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:default:active, +.unlock-dialog .modal-dialog-button:default:active { + color: rgba(255, 255, 255, 0.87); + background-color: #8c8077; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.login-dialog .modal-dialog-button:default:insensitive, +.unlock-dialog .modal-dialog-button:default:insensitive { + color: rgba(221, 199, 161, 0.5); + background-color: rgba(221, 199, 161, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog-logo-bin { + padding: 24px 0; +} + +.login-dialog-banner { + color: rgba(221, 199, 161, 0.7); +} + +.login-dialog-button-box { + spacing: 5px; + width: 23em; +} + +.login-dialog-message { + text-align: center; +} + +.caps-lock-warning-label, +.login-dialog-message-warning { + color: #ea6962; +} + +.login-dialog-message-hint { + color: rgba(221, 199, 161, 0.7); + padding-top: 0; + padding-bottom: 20px; +} + +.login-dialog-user-selection-box { + padding: 100px 0; +} + +.login-dialog-not-listed-button { + transition-duration: 100ms; + min-height: 32px; + padding: 0 8px; + margin-top: 1em; + border-radius: 6px; + color: rgba(221, 199, 161, 0.7); + font-size: 10.5pt; + font-weight: 500; +} +.login-dialog-not-listed-button:focus { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-not-listed-button:hover { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-not-listed-button:active { + transition-duration: 200ms; + background-color: rgba(221, 199, 161, 0.12); +} + +.login-dialog-user-list-view { + -st-vfade-offset: 1em; +} + +.login-dialog-user-list { + spacing: 12px; + width: 23em; +} +.login-dialog-user-list:expanded .login-dialog-user-list-item:selected { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid #ddc7a1; +} + +.login-dialog-user-list-item { + transition-duration: 100ms; + padding: 6px; + border-radius: 6px; + color: inherit; +} +.login-dialog-user-list-item:focus { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-user-list-item:hover { + background-color: rgba(221, 199, 161, 0.08); +} +.login-dialog-user-list-item:active { + transition-duration: 200ms; + background-color: rgba(221, 199, 161, 0.12); +} +.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 .login-dialog-timed-login-indicator { + height: 2px; + margin-top: 6px; + background-color: #ddc7a1; +} + +.login-dialog .user-icon StIcon { + background-color: rgba(221, 199, 161, 0.08); +} + +.user-widget-label { + color: inherit; +} + +.user-widget.horizontal .user-widget-label { + padding-left: 16px; + font-size: 15pt; + font-weight: 500; + text-align: left; +} +.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 { + padding-top: 16px; + font-size: 18pt; + font-weight: 400; + text-align: center; +} + +.login-dialog-prompt-layout { + width: 23em; + padding-top: 24px; + padding-bottom: 12px; + spacing: 8px; +} + +.login-dialog-prompt-label { + color: rgba(221, 199, 161, 0.7); + font-size: 1em; + padding-top: 1em; +} + +.cancel-button, +.switch-user-button, +.login-dialog-session-list-button { + transition-duration: 100ms; + width: 32px; + height: 32px; + min-width: 0; + min-height: 0; + padding: 0; + border-radius: 16px; + color: rgba(221, 199, 161, 0.7); +} +.cancel-button:focus, +.switch-user-button:focus, +.login-dialog-session-list-button:focus { + background-color: rgba(221, 199, 161, 0.08); +} +.cancel-button:hover, +.switch-user-button:hover, +.login-dialog-session-list-button:hover { + background-color: rgba(221, 199, 161, 0.08); +} +.cancel-button:active, +.switch-user-button:active, +.login-dialog-session-list-button:active { + transition-duration: 200ms; + background-color: rgba(221, 199, 161, 0.12); +} +.cancel-button StIcon, +.switch-user-button StIcon, +.login-dialog-session-list-button StIcon { + icon-size: 16px; +} + +/* Screen Shield */ +.unlock-dialog-clock { + padding-bottom: 2.5em; + spacing: 24px; + color: #fff; + font-weight: normal; + text-align: center; +} + +.unlock-dialog-clock-time { + padding-top: 42px; + font-size: 96px; + font-weight: 300; + font-feature-settings: "tnum"; +} + +.unlock-dialog-clock-date { + font-size: 34px; + font-weight: 400; +} + +.unlock-dialog-clock-hint { + padding-top: 48px; + color: rgba(255, 255, 255, 0.7); + font-weight: normal; +} + +.unlock-dialog-notifications-container { + width: 23em; + margin: 12px 0; + spacing: 6px; + 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: 8px; + border: 0; + border-radius: 6px; + background-color: rgba(255, 255, 255, 0.04); + color: #fff; +} +.unlock-dialog-notifications-container .notification.critical, +.unlock-dialog-notifications-container .unlock-dialog-notification-source.critical { + background-color: rgba(255, 255, 255, 0.04); + color: #ea6962; +} + +.unlock-dialog-notification-label { + padding: 0 0 0 12px; +} + +.unlock-dialog-notification-count-text { + margin-right: 12px; + padding: 2px 8px; + border-radius: 99px; + background-color: rgba(255, 255, 255, 0.08); + color: #fff; +} + +#lockDialogGroup { + background-color: #1e1c1b; + color: #ddc7a1; +} + +#unlockDialogNotifications StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.2); +} +#unlockDialogNotifications StScrollBar StButton#vhandle, +#unlockDialogNotifications StScrollBar StButton#hhandle { + background-color: rgba(255, 255, 255, 0.5); +} +#unlockDialogNotifications StScrollBar StButton#vhandle:hover, +#unlockDialogNotifications StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.6); +} +#unlockDialogNotifications StScrollBar StButton#vhandle:active, +#unlockDialogNotifications StScrollBar StButton#hhandle:active { + background-color: rgba(255, 255, 255, 0.7); +} + +.screen-shield-background { + background: black; + box-shadow: 0 8px 24px rgba(0, 0, 0, 0.68); +} + +/* Dash to Dock */ +#dashtodockContainer #dash { + background-color: black; +} + +#dashtodockContainer:overview #dash { + background-color: rgba(255, 255, 255, 0.08); +} + +#dashtodockContainer.extended:overview #dash { + background-color: transparent; +} + +#dashtodockContainer.left #dash, +#dashtodockContainer.right #dash { + padding: 3px 0; +} + +#dashtodockContainer.top #dash, +#dashtodockContainer.bottom #dash { + padding: 0 3px; +} + +#dashtodockContainer.extended #dash { + padding: 0; + border-radius: 0; +} + +#dashtodockContainer.left .dash-item-container > StWidget, +#dashtodockContainer.right .dash-item-container > StWidget, +#dashtodockContainer.extended.left .dash-item-container > StWidget, +#dashtodockContainer.extended.right .dash-item-container > StWidget { + padding: 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:first-child > StWidget { + padding: 6px 6px 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:last-child > StWidget { + padding: 3px 6px 6px 6px; +} + +#dashtodockContainer.top .dash-item-container > StWidget, +#dashtodockContainer.bottom .dash-item-container > StWidget, +#dashtodockContainer.extended.top .dash-item-container > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container > StWidget { + padding: 6px 3px; +} + +#dashtodockContainer.extended.top .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:first-child > StWidget { + padding: 6px 3px 6px 6px; +} + +#dashtodockContainer.extended.top .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:last-child > StWidget { + padding: 6px 6px 6px 3px; +} + +#dashtodockContainer .focused .overview-icon { + background-color: rgba(255, 255, 255, 0.12); +} + +#dashtodockContainer .default.focused .overview-icon { + background-color: transparent; +} + +#dashtodockContainer .app-well-app-running-dot { + background-color: transparent; +} + +#dashtodockContainer .default { + background-size: cover; +} + +#dashtodockContainer.left .default.running1 { + background-image: url("assets/dash/left-running1.svg"); +} + +#dashtodockContainer.left .default.running1.focused { + background-image: url("assets/dash/left-running1-focused.svg"); +} + +#dashtodockContainer.left .default.running2 { + background-image: url("assets/dash/left-running2.svg"); +} + +#dashtodockContainer.left .default.running2.focused { + background-image: url("assets/dash/left-running2-focused.svg"); +} + +#dashtodockContainer.left .default.running3 { + background-image: url("assets/dash/left-running3.svg"); +} + +#dashtodockContainer.left .default.running3.focused { + background-image: url("assets/dash/left-running3-focused.svg"); +} + +#dashtodockContainer.left .default.running4 { + background-image: url("assets/dash/left-running4.svg"); +} + +#dashtodockContainer.left .default.running4.focused { + background-image: url("assets/dash/left-running4-focused.svg"); +} + +#dashtodockContainer.right .default.running1 { + background-image: url("assets/dash/right-running1.svg"); +} + +#dashtodockContainer.right .default.running1.focused { + background-image: url("assets/dash/right-running1-focused.svg"); +} + +#dashtodockContainer.right .default.running2 { + background-image: url("assets/dash/right-running2.svg"); +} + +#dashtodockContainer.right .default.running2.focused { + background-image: url("assets/dash/right-running2-focused.svg"); +} + +#dashtodockContainer.right .default.running3 { + background-image: url("assets/dash/right-running3.svg"); +} + +#dashtodockContainer.right .default.running3.focused { + background-image: url("assets/dash/right-running3-focused.svg"); +} + +#dashtodockContainer.right .default.running4 { + background-image: url("assets/dash/right-running4.svg"); +} + +#dashtodockContainer.right .default.running4.focused { + background-image: url("assets/dash/right-running4-focused.svg"); +} + +#dashtodockContainer.top .default.running1 { + background-image: url("assets/dash/top-running1.svg"); +} + +#dashtodockContainer.top .default.running1.focused { + background-image: url("assets/dash/top-running1-focused.svg"); +} + +#dashtodockContainer.top .default.running2 { + background-image: url("assets/dash/top-running2.svg"); +} + +#dashtodockContainer.top .default.running2.focused { + background-image: url("assets/dash/top-running2-focused.svg"); +} + +#dashtodockContainer.top .default.running3 { + background-image: url("assets/dash/top-running3.svg"); +} + +#dashtodockContainer.top .default.running3.focused { + background-image: url("assets/dash/top-running3-focused.svg"); +} + +#dashtodockContainer.top .default.running4 { + background-image: url("assets/dash/top-running4.svg"); +} + +#dashtodockContainer.top .default.running4.focused { + background-image: url("assets/dash/top-running4-focused.svg"); +} + +#dashtodockContainer.bottom .default.running1 { + background-image: url("assets/dash/bottom-running1.svg"); +} + +#dashtodockContainer.bottom .default.running1.focused { + background-image: url("assets/dash/bottom-running1-focused.svg"); +} + +#dashtodockContainer.bottom .default.running2 { + background-image: url("assets/dash/bottom-running2.svg"); +} + +#dashtodockContainer.bottom .default.running2.focused { + background-image: url("assets/dash/bottom-running2-focused.svg"); +} + +#dashtodockContainer.bottom .default.running3 { + background-image: url("assets/dash/bottom-running3.svg"); +} + +#dashtodockContainer.bottom .default.running3.focused { + background-image: url("assets/dash/bottom-running3-focused.svg"); +} + +#dashtodockContainer.bottom .default.running4 { + background-image: url("assets/dash/bottom-running4.svg"); +} + +#dashtodockContainer.bottom .default.running4.focused { + background-image: url("assets/dash/bottom-running4-focused.svg"); +} + +/* Simple Dock */ +#dash:desktop { + background-color: black; +} + +/* GPaste */ +.popup-menu .search-entry { + color: #d4be98; + selection-background-color: rgba(124, 111, 100, 0.6); + selected-color: #d4be98; + transition-duration: 100ms; + background-color: rgba(212, 190, 152, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); +} +.popup-menu .search-entry:hover { + box-shadow: inset 0 -1px #d4be98; +} +.popup-menu .search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #7c6f64; + color: #d4be98; +} +.popup-menu .search-entry .search-entry-icon { + color: rgba(212, 190, 152, 0.7); +} +.popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon { + color: #d4be98; +} diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/color-pick.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/color-pick.svg new file mode 100644 index 000000000..224677625 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/color-pick.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg new file mode 100644 index 000000000..526783410 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg @@ -0,0 +1,28 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg new file mode 100644 index 000000000..be37e6fc4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg @@ -0,0 +1,20 @@ + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg new file mode 100644 index 000000000..f44799107 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg new file mode 100644 index 000000000..b72e17886 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg new file mode 100644 index 000000000..2e4e568a1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg new file mode 100644 index 000000000..bfdddeded --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg new file mode 100644 index 000000000..beee2880d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg new file mode 100644 index 000000000..20c4224ae --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg new file mode 100644 index 000000000..1f9207e94 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg new file mode 100644 index 000000000..fc6bd93cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg new file mode 100644 index 000000000..91fbb7fd7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg new file mode 100644 index 000000000..e8e11172e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg new file mode 100644 index 000000000..80b78e4d7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg new file mode 100644 index 000000000..691eed116 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg new file mode 100644 index 000000000..5edac8fb4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/noise-texture.png b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/noise-texture.png new file mode 100644 index 000000000..ca1563d14 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/noise-texture.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gnome-shell/pad-osd.css b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/pad-osd.css new file mode 100644 index 000000000..31c237722 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-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/local/share/themes/Gruvbox-Material-Dark/gnome-shell/process-working.svg b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/process-working.svg new file mode 100644 index 000000000..323c6f2a5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gnome-shell/process-working.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/apps.rc b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/apps.rc new file mode 100644 index 000000000..ef31766a4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-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.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/pan-up-disabled.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/pan-down-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/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/border.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/border.png new file mode 100644 index 000000000..5f15eacb4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/border.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-active.png new file mode 100644 index 000000000..7d36c9b00 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-disabled.png new file mode 100644 index 000000000..c3f27402e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-hover.png new file mode 100644 index 000000000..68cece794 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button.png new file mode 100644 index 000000000..dbf44c680 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/button.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-active.png new file mode 100644 index 000000000..03233ef7d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-disabled.png new file mode 100644 index 000000000..75aa15ed1 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-hover.png new file mode 100644 index 000000000..482763943 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 000000000..51f1679b2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-active.png new file mode 100644 index 000000000..2ba1f18d9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png new file mode 100644 index 000000000..93d203e8e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-hover.png new file mode 100644 index 000000000..34a60c5aa Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed.png new file mode 100644 index 000000000..f4e8db43b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-mixed.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-active.png new file mode 100644 index 000000000..a727eef72 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png new file mode 100644 index 000000000..b2ea1b2a5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png new file mode 100644 index 000000000..2fa024d4b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 000000000..0ddef8615 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-active.png new file mode 100644 index 000000000..d5c08214e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-disabled.png new file mode 100644 index 000000000..c8580adad Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-hover.png new file mode 100644 index 000000000..eee5f3aa7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry.png new file mode 100644 index 000000000..47648af74 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-left-entry.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-active.png new file mode 100644 index 000000000..fb78d6fa4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-disabled.png new file mode 100644 index 000000000..89d8ab6fd Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-hover.png new file mode 100644 index 000000000..956d5ac91 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry.png new file mode 100644 index 000000000..f2d0c7e53 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/combo-right-entry.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-active.png new file mode 100644 index 000000000..53ebf3a39 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-background-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-background-disabled.png new file mode 100644 index 000000000..3a85d4f0b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-background-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-background.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-background.png new file mode 100644 index 000000000..3a85d4f0b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-background.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-disabled.png new file mode 100644 index 000000000..743436d7d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-hover.png new file mode 100644 index 000000000..218ed2297 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry.png new file mode 100644 index 000000000..874b21a71 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/entry.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-active.png new file mode 100644 index 000000000..ce54cc9bc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-disabled.png new file mode 100644 index 000000000..d8a9dfe03 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-hover.png new file mode 100644 index 000000000..c3f27402e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button.png new file mode 100644 index 000000000..d8a9dfe03 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/flat-button.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/focus.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/focus.png new file mode 100644 index 000000000..e1e01b09f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/focus.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame-inline.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame-inline.png new file mode 100644 index 000000000..c8d5ac0bf Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame-inline.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame-notebook.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame-notebook.png new file mode 100644 index 000000000..1c4f2cc6f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame-notebook.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame.png new file mode 100644 index 000000000..fa9ecb068 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/frame.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz-active.png new file mode 100644 index 000000000..74d0c3076 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz-hover.png new file mode 100644 index 000000000..1d8e91902 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz.png new file mode 100644 index 000000000..5e4687b6f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-horz.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert-active.png new file mode 100644 index 000000000..361fa6a8b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert-hover.png new file mode 100644 index 000000000..ae5e32df4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert.png new file mode 100644 index 000000000..38f91f1ad Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/handle-vert.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png new file mode 100644 index 000000000..b666935af Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-checked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 000000000..add65c0b3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png new file mode 100644 index 000000000..71a40d50d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-mixed.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-mixed.png new file mode 100644 index 000000000..18b2f4eff Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-mixed.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png new file mode 100644 index 000000000..6ebf14215 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 000000000..e0fbf3075 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png new file mode 100644 index 000000000..af5a319cd Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-checked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-checked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 000000000..a0cbbb529 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png new file mode 100644 index 000000000..f41c43490 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-mixed-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-mixed.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-mixed.png new file mode 100644 index 000000000..ea1586e1f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-mixed.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png new file mode 100644 index 000000000..2f6722587 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-unchecked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 000000000..06ccd32c8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down-alt.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down-alt.png new file mode 100644 index 000000000..e95b0591e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down-alt.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down-disabled.png new file mode 100644 index 000000000..9bb1d59db Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down.png new file mode 100644 index 000000000..6bf4a74b1 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-down.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-alt.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-alt.png new file mode 100644 index 000000000..d52b258c0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-alt.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-disabled.png new file mode 100644 index 000000000..b86c68f51 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-semi.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-semi.png new file mode 100644 index 000000000..bad9ee5ca Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left-semi.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left.png new file mode 100644 index 000000000..70a4698d5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-left.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-alt.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-alt.png new file mode 100644 index 000000000..0fdb94deb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-alt.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-disabled.png new file mode 100644 index 000000000..4c73353a0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-semi.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-semi.png new file mode 100644 index 000000000..d35df512e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right-semi.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right.png new file mode 100644 index 000000000..564c9298e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-right.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up-alt.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up-alt.png new file mode 100644 index 000000000..7d9275d8a Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up-alt.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up-disabled.png new file mode 100644 index 000000000..d6abf3621 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up.png new file mode 100644 index 000000000..2a65a6c85 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/pan-up.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/progressbar-progress.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/progressbar-progress.png new file mode 100644 index 000000000..74bf77e88 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/progressbar-progress.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/progressbar-trough.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/progressbar-trough.png new file mode 100644 index 000000000..1fe117d43 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/progressbar-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-active.png new file mode 100644 index 000000000..02cad1be0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-disabled.png new file mode 100644 index 000000000..22f8c0b39 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-hover.png new file mode 100644 index 000000000..0f9b0f2dc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked.png new file mode 100644 index 000000000..d928d937a Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-active.png new file mode 100644 index 000000000..db8240654 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-disabled.png new file mode 100644 index 000000000..3e808c153 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-hover.png new file mode 100644 index 000000000..3d6c20ba3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed.png new file mode 100644 index 000000000..c7e925508 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-mixed.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-active.png new file mode 100644 index 000000000..5aa5a0a99 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-disabled.png new file mode 100644 index 000000000..92834927e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-hover.png new file mode 100644 index 000000000..9c07698a6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 000000000..8d365141b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/radio-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough-active.png new file mode 100644 index 000000000..b40cbda2e Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png new file mode 100644 index 000000000..5dcd74e10 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough.png new file mode 100644 index 000000000..8475814f6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-horz-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-active.png new file mode 100644 index 000000000..a9847fe48 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-disabled.png new file mode 100644 index 000000000..32dee996d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-hover.png new file mode 100644 index 000000000..594f9d011 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider.png new file mode 100644 index 000000000..187078dbc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough-active.png new file mode 100644 index 000000000..ac45f7ba3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png new file mode 100644 index 000000000..cb706069f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough.png new file mode 100644 index 000000000..6152ad9e4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scale-vert-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png new file mode 100644 index 000000000..75a2c34e5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png new file mode 100644 index 000000000..3cfd07178 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png new file mode 100644 index 000000000..52d8b4c96 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider.png new file mode 100644 index 000000000..33dc8c382 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-trough.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-trough.png new file mode 100644 index 000000000..dac7f470a Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-horz-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png new file mode 100644 index 000000000..eeb3d4849 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png new file mode 100644 index 000000000..50be657bb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png new file mode 100644 index 000000000..8aeb7b2e5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png new file mode 100644 index 000000000..ff9eed6e8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png new file mode 100644 index 000000000..db2c30230 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png new file mode 100644 index 000000000..d00626dc4 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png new file mode 100644 index 000000000..edd0b9d40 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png new file mode 100644 index 000000000..7fa2b050f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png new file mode 100644 index 000000000..e2544d2b8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png new file mode 100644 index 000000000..755f7d9c2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-active.png new file mode 100644 index 000000000..1aaaf2ed2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png new file mode 100644 index 000000000..9b84905ee Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-hover.png new file mode 100644 index 000000000..78a148842 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down.png new file mode 100644 index 000000000..9f12d2fb8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-down.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-active.png new file mode 100644 index 000000000..09c981915 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png new file mode 100644 index 000000000..178f46aeb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-hover.png new file mode 100644 index 000000000..d09a29105 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up.png new file mode 100644 index 000000000..178f46aeb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-ltr-up.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-active.png new file mode 100644 index 000000000..ea0b35ee3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png new file mode 100644 index 000000000..99589183c Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-hover.png new file mode 100644 index 000000000..e3d860100 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down.png new file mode 100644 index 000000000..73ba3333b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-down.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-active.png new file mode 100644 index 000000000..dfb069112 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png new file mode 100644 index 000000000..e46ac9918 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-hover.png new file mode 100644 index 000000000..b100bcc58 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up.png new file mode 100644 index 000000000..e46ac9918 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/spin-rtl-up.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/tab.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/tab.png new file mode 100644 index 000000000..b6defec01 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/tab.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button-active.png new file mode 100644 index 000000000..066434f50 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png new file mode 100644 index 000000000..81bfd81b2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button.png new file mode 100644 index 000000000..13709e6a8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-ltr-button.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button-active.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button-active.png new file mode 100644 index 000000000..fa4783913 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button-active.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png new file mode 100644 index 000000000..6975d94a9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button-hover.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button.png b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button.png new file mode 100644 index 000000000..db74932e7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/assets/treeview-rtl-button.png differ diff --git a/local/share/themes/Gruvbox-Dark/gtk-2.0/gtkrc b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/gtkrc similarity index 56% rename from local/share/themes/Gruvbox-Dark/gtk-2.0/gtkrc rename to local/share/themes/Gruvbox-Material-Dark/gtk-2.0/gtkrc index e5d5f0d47..d551977ca 100644 --- a/local/share/themes/Gruvbox-Dark/gtk-2.0/gtkrc +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/gtkrc @@ -1,7 +1,7 @@ # 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 +# This is the GTK 2 version of oomox-Gruvbox-Material-Dark. 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 @@ -12,19 +12,25 @@ # order to not mess up the dark theme. # Text/base -gtk-color-scheme = "text_color:#F9F5D7\nbase_color:#1D2021" +gtk-color-scheme = "base_color:#282828" +gtk-color-scheme = "text_color:#d4be98" # Foreground/background -gtk-color-scheme = "fg_color:#F9F5D7\nbg_color:#1D2021" +gtk-color-scheme = "bg_color:#282828" +gtk-color-scheme = "fg_color:#d4be98" # Selected foreground/background -gtk-color-scheme = "selected_fg_color:#F9F5D7\nselected_bg_color:#7DAEA3" +gtk-color-scheme = "selected_bg_color:#7c6f64" +gtk-color-scheme = "selected_fg_color:#000000" # Titlebar foreground/background -gtk-color-scheme = "titlebar_fg_color:#F9F5D7\ntitlebar_bg_color:#282828" +gtk-color-scheme = "titlebar_bg_color:#32302f" +gtk-color-scheme = "titlebar_fg_color:#d4be98" # Menus gtk-color-scheme = "menu_color:#3C3836" # Tooltips foreground/background -gtk-color-scheme = "tooltip_fg_color:#F9F5D7\ntooltip_bg_color:#504945" +gtk-color-scheme = "tooltip_bg_color:#616161" +gtk-color-scheme = "tooltip_fg_color:#d4be98" # Links -gtk-color-scheme = "link_color:#80AA9E\nvisited_link_color:#D386CD" +gtk-color-scheme = "link_color:#7c6f64" +gtk-color-scheme = "visited_link_color:#c58af9" # Set GTK settings gtk-auto-mnemonics = 1 diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/hacks.rc b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/hacks.rc new file mode 100644 index 000000000..c288da359 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-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/local/share/themes/Gruvbox-Dark/gtk-2.0/main.rc b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/main.rc similarity index 94% rename from local/share/themes/Gruvbox-Dark/gtk-2.0/main.rc rename to local/share/themes/Gruvbox-Material-Dark/gtk-2.0/main.rc index 8349b0e88..878c86ba2 100644 --- a/local/share/themes/Gruvbox-Dark/gtk-2.0/main.rc +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-2.0/main.rc @@ -41,10 +41,10 @@ style "default" { GtkButton::default-border = {0, 0, 0, 0} GtkButton::default-outside-border = {0, 0, 0, 0} - GtkButton::inner-border = {0, 0, 0, 0} + GtkButton::inner-border = {4, 4, 4, 4} GtkEntry::state-hint = 1 - GtkEntry::inner-border = {0, 0, 0, 0} + GtkEntry::inner-border = {4, 4, 4, 4} GtkPaned::handle-size = 8 GtkHPaned::handle-size = 8 @@ -501,7 +501,7 @@ style "default" { image { function = ARROW state = NORMAL - overlay_file = "assets/pan-up-alt.png" + overlay_file = "assets/pan-up.png" overlay_stretch = FALSE arrow_direction = UP } @@ -525,7 +525,7 @@ style "default" { image { function = ARROW state = INSENSITIVE - overlay_file = "assets/pan-up-alt-disabled.png" + overlay_file = "assets/pan-up-disabled.png" overlay_stretch = FALSE arrow_direction = UP } @@ -533,7 +533,7 @@ style "default" { image { function = ARROW state = NORMAL - overlay_file = "assets/pan-down-alt.png" + overlay_file = "assets/pan-down.png" overlay_stretch = FALSE arrow_direction = DOWN } @@ -557,7 +557,7 @@ style "default" { image { function = ARROW state = INSENSITIVE - overlay_file = "assets/pan-down-alt-disabled.png" + overlay_file = "assets/pan-down-disabled.png" overlay_stretch = FALSE arrow_direction = DOWN } @@ -565,7 +565,7 @@ style "default" { image { function = ARROW state = NORMAL - overlay_file = "assets/pan-left-alt.png" + overlay_file = "assets/pan-left.png" overlay_stretch = FALSE arrow_direction = LEFT } @@ -589,7 +589,7 @@ style "default" { image { function = ARROW state = INSENSITIVE - overlay_file = "assets/pan-left-alt-disabled.png" + overlay_file = "assets/pan-left-disabled.png" overlay_stretch = FALSE arrow_direction = LEFT } @@ -597,7 +597,7 @@ style "default" { image { function = ARROW state = NORMAL - overlay_file = "assets/pan-right-alt.png" + overlay_file = "assets/pan-right.png" overlay_stretch = FALSE arrow_direction = RIGHT } @@ -621,7 +621,7 @@ style "default" { image { function = ARROW state = INSENSITIVE - overlay_file = "assets/pan-right-alt-disabled.png" + overlay_file = "assets/pan-right-disabled.png" overlay_stretch = FALSE arrow_direction = RIGHT } @@ -633,7 +633,7 @@ style "default" { image { function = TAB state = NORMAL - overlay_file = "assets/pan-down-alt.png" + overlay_file = "assets/pan-down.png" overlay_stretch = FALSE } @@ -654,7 +654,7 @@ style "default" { image { function = TAB state = INSENSITIVE - overlay_file = "assets/pan-down-alt-disabled.png" + overlay_file = "assets/pan-down-disabled.png" overlay_stretch = FALSE } @@ -698,7 +698,6 @@ style "default" { image { function = HANDLE - state = NORMAL overlay_file = "assets/handle-horz.png" overlay_stretch = FALSE orientation = HORIZONTAL @@ -706,44 +705,11 @@ style "default" { 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 } @@ -756,28 +722,28 @@ style "default" { function = EXPANDER expander_style = EXPANDED state = NORMAL - file = "assets/pan-down-alt.png" + file = "assets/pan-down.png" } image { function = EXPANDER expander_style = EXPANDED state = PRELIGHT - file = "assets/pan-down.png" + file = "assets/pan-down-alt.png" } image { function = EXPANDER expander_style = EXPANDED state = ACTIVE - file = "assets/pan-down.png" + file = "assets/pan-down-alt.png" } image { function = EXPANDER expander_style = EXPANDED state = INSENSITIVE - file = "assets/pan-down-alt-disabled.png" + file = "assets/pan-down-disabled.png" } # LTR @@ -786,7 +752,7 @@ style "default" { function = EXPANDER expander_style = COLLAPSED state = NORMAL - file = "assets/pan-right-alt.png" + file = "assets/pan-right.png" direction = LTR } @@ -794,7 +760,7 @@ style "default" { function = EXPANDER expander_style = COLLAPSED state = PRELIGHT - file = "assets/pan-right.png" + file = "assets/pan-right-alt.png" direction = LTR } @@ -802,7 +768,7 @@ style "default" { function = EXPANDER expander_style = COLLAPSED state = ACTIVE - file = "assets/pan-right.png" + file = "assets/pan-right-alt.png" direction = LTR } @@ -810,7 +776,7 @@ style "default" { function = EXPANDER expander_style = COLLAPSED state = INSENSITIVE - file = "assets/pan-right-alt-disabled.png" + file = "assets/pan-right-disabled.png" direction = LTR } @@ -834,7 +800,7 @@ style "default" { function = EXPANDER expander_style = COLLAPSED state = NORMAL - file = "assets/pan-left-alt.png" + file = "assets/pan-left.png" direction = RTL } @@ -842,7 +808,7 @@ style "default" { function = EXPANDER expander_style = COLLAPSED state = PRELIGHT - file = "assets/pan-left.png" + file = "assets/pan-left-alt.png" direction = RTL } @@ -850,7 +816,7 @@ style "default" { function = EXPANDER expander_style = COLLAPSED state = ACTIVE - file = "assets/pan-left.png" + file = "assets/pan-left-alt.png" direction = RTL } @@ -858,7 +824,7 @@ style "default" { function = EXPANDER expander_style = COLLAPSED state = INSENSITIVE - file = "assets/pan-left-alt-disabled.png" + file = "assets/pan-left-disabled.png" direction = RTL } @@ -1308,12 +1274,12 @@ style "default" { # Menubar # ########### - image { - function = BOX - detail = "menubar" - file = "assets/border.png" - border = {0, 0, 0, 1} - } + # image { + # function = BOX + # detail = "menubar" + # file = "assets/border.png" + # border = {0, 0, 0, 1} + # } ######### # Menus # @@ -1356,7 +1322,7 @@ style "default" { state = ACTIVE detail = "entry" file = "assets/entry-active.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -1365,7 +1331,7 @@ style "default" { state = INSENSITIVE detail = "entry" file = "assets/entry-disabled.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -1373,7 +1339,7 @@ style "default" { function = SHADOW detail = "entry" file = "assets/entry.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -1410,7 +1376,7 @@ style "default" { file = "assets/spin-ltr-up.png" border = {0, 8, 8, 0} stretch = TRUE - overlay_file = "assets/pan-up-alt.png" + overlay_file = "assets/pan-up.png" overlay_stretch = FALSE direction = LTR } @@ -1446,7 +1412,7 @@ style "default" { file = "assets/spin-ltr-up-disabled.png" border = {0, 8, 8, 0} stretch = TRUE - overlay_file = "assets/pan-up-alt-disabled.png" + overlay_file = "assets/pan-up-disabled.png" overlay_stretch = FALSE direction = LTR } @@ -1460,7 +1426,7 @@ style "default" { file = "assets/spin-rtl-up.png" border = {8, 0, 8, 0} stretch = TRUE - overlay_file = "assets/pan-up-alt.png" + overlay_file = "assets/pan-up.png" overlay_stretch = FALSE direction = RTL } @@ -1496,7 +1462,7 @@ style "default" { file = "assets/spin-rtl-up-disabled.png" border = {8, 0, 8, 0} stretch = TRUE - overlay_file = "assets/pan-up-alt-disabled.png" + overlay_file = "assets/pan-up-disabled.png" overlay_stretch = FALSE direction = RTL } @@ -1510,7 +1476,7 @@ style "default" { file = "assets/spin-ltr-down.png" border = {0, 8, 0, 8} stretch = TRUE - overlay_file = "assets/pan-down-alt.png" + overlay_file = "assets/pan-down.png" overlay_stretch = FALSE direction = LTR } @@ -1546,7 +1512,7 @@ style "default" { file = "assets/spin-ltr-down-disabled.png" border = {0, 8, 0, 8} stretch = TRUE - overlay_file = "assets/pan-down-alt-disabled.png" + overlay_file = "assets/pan-down-disabled.png" overlay_stretch = FALSE direction = LTR } @@ -1560,7 +1526,7 @@ style "default" { file = "assets/spin-rtl-down.png" border = {8, 0, 0, 8} stretch = TRUE - overlay_file = "assets/pan-down-alt.png" + overlay_file = "assets/pan-down.png" overlay_stretch = FALSE direction = RTL } @@ -1596,7 +1562,7 @@ style "default" { file = "assets/spin-rtl-down-disabled.png" border = {8, 0, 0, 8} stretch = TRUE - overlay_file = "assets/pan-down-alt-disabled.png" + overlay_file = "assets/pan-down-disabled.png" overlay_stretch = FALSE direction = RTL } @@ -1656,7 +1622,6 @@ style "menubar" { 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 @@ -1929,8 +1894,8 @@ style "normal_button_label" { } style "button" { - xthickness = 6 - ythickness = 6 + xthickness = 4 + ythickness = 4 # For the sake of sanity style buttons this way engine "pixmap" { @@ -1943,7 +1908,7 @@ style "button" { function = BOX state = NORMAL file = "assets/button.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -1952,7 +1917,7 @@ style "button" { state = PRELIGHT shadow = OUT file = "assets/button-hover.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -1962,7 +1927,7 @@ style "button" { state = PRELIGHT shadow = IN file = "assets/button-active.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -1970,7 +1935,7 @@ style "button" { function = BOX state = ACTIVE file = "assets/button-active.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -1978,7 +1943,7 @@ style "button" { function = BOX state = INSENSITIVE file = "assets/button-disabled.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } } @@ -2023,7 +1988,7 @@ style "combobox" { function = BOX state = NORMAL file = "assets/entry.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -2031,7 +1996,7 @@ style "combobox" { function = BOX state = PRELIGHT file = "assets/entry-hover.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -2039,7 +2004,7 @@ style "combobox" { function = BOX state = ACTIVE file = "assets/entry-active.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -2047,7 +2012,7 @@ style "combobox" { function = BOX state = INSENSITIVE file = "assets/entry-disabled.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } } @@ -2062,9 +2027,6 @@ 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" { ############# @@ -2076,7 +2038,7 @@ style "combobox_entry" { state = NORMAL detail = "entry" file = "assets/combo-left-entry.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE direction = LTR } @@ -2086,7 +2048,7 @@ style "combobox_entry" { state = ACTIVE detail = "entry" file = "assets/combo-left-entry-active.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE direction = LTR } @@ -2096,7 +2058,7 @@ style "combobox_entry" { state = INSENSITIVE detail = "entry" file = "assets/combo-left-entry-disabled.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE direction = LTR } @@ -2110,7 +2072,7 @@ style "combobox_entry" { state = NORMAL detail = "entry" file = "assets/combo-right-entry.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE direction = RTL } @@ -2120,7 +2082,7 @@ style "combobox_entry" { state = ACTIVE detail = "entry" file = "assets/combo-right-entry-active.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE direction = RTL } @@ -2130,7 +2092,7 @@ style "combobox_entry" { state = INSENSITIVE detail = "entry" file = "assets/combo-right-entry-disabled.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE direction = RTL } @@ -2144,7 +2106,7 @@ style "combobox_entry" { state = NORMAL detail = "button" file = "assets/combo-right-entry.png" - border = {0, 6, 6, 6} + border = {0, 8, 8, 8} stretch = TRUE direction = LTR } @@ -2154,7 +2116,7 @@ style "combobox_entry" { state = PRELIGHT detail = "button" file = "assets/combo-right-entry-hover.png" - border = {0, 6, 6, 6} + border = {0, 8, 8, 8} stretch = TRUE direction = LTR } @@ -2164,7 +2126,7 @@ style "combobox_entry" { state = ACTIVE detail = "button" file = "assets/combo-right-entry-active.png" - border = {0, 6, 6, 6} + border = {0, 8, 8, 8} stretch = TRUE direction = LTR } @@ -2174,7 +2136,7 @@ style "combobox_entry" { state = INSENSITIVE detail = "button" file = "assets/combo-right-entry-disabled.png" - border = {0, 6, 6, 6} + border = {0, 8, 8, 8} stretch = TRUE direction = LTR } @@ -2188,7 +2150,7 @@ style "combobox_entry" { state = NORMAL detail = "button" file = "assets/combo-left-entry.png" - border = {6, 0, 6, 6} + border = {8, 0, 8, 8} stretch = TRUE direction = RTL } @@ -2198,7 +2160,7 @@ style "combobox_entry" { state = PRELIGHT detail = "button" file = "assets/combo-left-entry-hover.png" - border = {6, 0, 6, 6} + border = {8, 0, 8, 8} stretch = TRUE direction = RTL } @@ -2208,7 +2170,7 @@ style "combobox_entry" { state = ACTIVE detail = "button" file = "assets/combo-left-entry-active.png" - border = {6, 0, 6, 6} + border = {8, 0, 8, 8} stretch = TRUE direction = RTL } @@ -2218,7 +2180,7 @@ style "combobox_entry" { state = INSENSITIVE detail = "button" file = "assets/combo-left-entry-disabled.png" - border = {6, 0, 6, 6} + border = {8, 0, 8, 8} stretch = TRUE direction = RTL } @@ -2236,7 +2198,6 @@ style "combo_button_padding" { style "notebook" { xthickness = 3 ythickness = 3 - bg[NORMAL] = @base_color } style "notebook_tab_label" { @@ -2351,7 +2312,8 @@ style "treeview_header" { ythickness = 2 fg[NORMAL] = mix(0.7, @fg_color, @base_color) - fg[PRELIGHT] = @fg_color + fg[PRELIGHT] = mix(0.7, @fg_color, @base_color) + fg[ACTIVE] = mix(0.7, @fg_color, @base_color) font_name = "Medium" @@ -2415,7 +2377,7 @@ style "treeview_header" { image { function = ARROW state = NORMAL - overlay_file = "assets/pan-up-alt.png" + overlay_file = "assets/pan-up.png" overlay_stretch = FALSE arrow_direction = UP } @@ -2439,7 +2401,7 @@ style "treeview_header" { image { function = ARROW state = NORMAL - overlay_file = "assets/pan-down-alt.png" + overlay_file = "assets/pan-down.png" overlay_stretch = FALSE arrow_direction = DOWN } @@ -2507,7 +2469,7 @@ style "tool_button" { function = BOX state = NORMAL file = "assets/flat-button.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -2516,7 +2478,7 @@ style "tool_button" { state = PRELIGHT shadow = OUT file = "assets/flat-button-hover.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -2526,7 +2488,7 @@ style "tool_button" { state = PRELIGHT shadow = IN file = "assets/flat-button-active.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -2534,7 +2496,7 @@ style "tool_button" { function = BOX state = ACTIVE file = "assets/flat-button-active.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -2543,7 +2505,7 @@ style "tool_button" { state = INSENSITIVE shadow = OUT file = "assets/flat-button-disabled.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } @@ -2552,7 +2514,7 @@ style "tool_button" { state = INSENSITIVE shadow = IN file = "assets/button-disabled.png" - border = {6, 6, 6, 6} + border = {8, 8, 8, 8} stretch = TRUE } } @@ -2573,7 +2535,6 @@ style "toolbar_separator" { style "inline_toolbar" { # GtkToolbar::button-relief = GTK_RELIEF_NORMAL - bg[NORMAL] = @base_color engine "pixmap" { image { diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png new file mode 100644 index 000000000..6980cd327 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png new file mode 100644 index 000000000..65fdef591 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png new file mode 100644 index 000000000..a1c4353a3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png new file mode 100644 index 000000000..22f4916fb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png new file mode 100644 index 000000000..451fe491d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png new file mode 100644 index 000000000..414de45a9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png new file mode 100644 index 000000000..61f0d7d20 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png new file mode 100644 index 000000000..b7f823ae6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-after-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png new file mode 100644 index 000000000..0b0efc10b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png new file mode 100644 index 000000000..0fc274bf6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png new file mode 100644 index 000000000..2c9a8c29f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png new file mode 100644 index 000000000..07a1a02a8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png new file mode 100644 index 000000000..fa74da71f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png new file mode 100644 index 000000000..29a6ee3f0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png new file mode 100644 index 000000000..d719ed338 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png new file mode 100644 index 000000000..fd2273d45 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-horz-marks-before-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-dark.png new file mode 100644 index 000000000..187078dbc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-dark@2.png new file mode 100644 index 000000000..1e423ebc2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled-dark.png new file mode 100644 index 000000000..32dee996d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled-dark@2.png new file mode 100644 index 000000000..e3a2f29c6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled.png new file mode 100644 index 000000000..c89fd30b6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled@2.png new file mode 100644 index 000000000..e53e06fa9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider.png new file mode 100644 index 000000000..2d2095825 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider@2.png new file mode 100644 index 000000000..530e07d9d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png new file mode 100644 index 000000000..a16bad236 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png new file mode 100644 index 000000000..27b96fb15 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png new file mode 100644 index 000000000..132c1e870 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png new file mode 100644 index 000000000..354c6dbb6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png new file mode 100644 index 000000000..c3b072482 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png new file mode 100644 index 000000000..2dd27091b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png new file mode 100644 index 000000000..250f616a5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png new file mode 100644 index 000000000..48de87544 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-after-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png new file mode 100644 index 000000000..16702d790 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png new file mode 100644 index 000000000..1e4217334 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png new file mode 100644 index 000000000..7e2bcd483 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png new file mode 100644 index 000000000..4faaa4663 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png new file mode 100644 index 000000000..f98b19483 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png new file mode 100644 index 000000000..27d5a3962 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png new file mode 100644 index 000000000..971228be1 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png new file mode 100644 index 000000000..ef45044a7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/scale-vert-marks-before-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png new file mode 100644 index 000000000..db1019600 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png new file mode 100644 index 000000000..7229282ce Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png new file mode 100644 index 000000000..05a03cdd3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png new file mode 100644 index 000000000..e3b84e885 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-checked@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png new file mode 100644 index 000000000..8175aeb09 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png new file mode 100644 index 000000000..5effa4b38 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png new file mode 100644 index 000000000..bd1a726a6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png new file mode 100644 index 000000000..9fbc798dc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/gtk.css b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/gtk.css new file mode 100644 index 000000000..b31b3a0c5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/gtk.css @@ -0,0 +1,6249 @@ +@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, #7c6f64 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #7c6f64 100%, transparent 0%); + } +} +button, modelbutton.flat, +.menuitem.button.flat, notebook > header > tabs > arrow, check, +radio, row.activatable { + transition-property: all, border-image, background-size, background-image; + transition-duration: 75ms, 225ms, 300ms, 1200ms; + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} +button:active, modelbutton.flat:active, +.menuitem.button.flat:active, notebook > header > tabs > arrow:active, check:active, +radio:active, row.activatable:active { + transition-duration: 75ms, 225ms, 0ms, 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: 0% 0%; +} + +* { + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #ea6962; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 4; + -gtk-secondary-caret-color: #7c6f64; + outline: 2px solid transparent; + outline-offset: -4px; + -gtk-outline-radius: 6px; +} +*:focus { + outline-color: rgba(212, 190, 152, 0.08); +} + +/** + * Base States + */ +.background { + background-color: #282828; + color: #d4be98; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #282828; + color: #d4be98; +} +.gtkstyle-fallback:hover { + background-color: #363431; +} +.gtkstyle-fallback:active { + background-color: #3d3a35; +} +.gtkstyle-fallback:disabled { + color: rgba(212, 190, 152, 0.5); +} +.gtkstyle-fallback:selected { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} + +.view:hover { + background-color: rgba(212, 190, 152, 0.04); +} +.view:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +.view:disabled { + color: rgba(212, 190, 152, 0.5); +} +.view:hover, .view:selected { + border-radius: 6px; +} +.view selection, .view:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +textview text { + background-color: #282828; + caret-color: #7c6f64; +} +frame:not(.flat) textview text, .frame textview text { + background-color: #282828; +} +popover.background textview text { + background-color: #3C3836; +} +messagedialog.background textview text { + background-color: #3C3836; +} +textview border { + color: rgba(212, 190, 152, 0.7); +} + +.nemo-desktop.nemo-canvas-item, .caja-desktop.caja-canvas-item, .nautilus-desktop.nautilus-canvas-item { + color: #fff; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} +.nemo-desktop.nemo-canvas-item .rubberband, .caja-desktop.caja-canvas-item .rubberband, .nautilus-desktop.nautilus-canvas-item .rubberband, +.nemo-desktop.nemo-canvas-item rubberband, +.caja-desktop.caja-canvas-item rubberband, +.nautilus-desktop.nautilus-canvas-item rubberband { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.3); +} + +XfdesktopIconView.view .rubberband, .content-view rubberband, +.content-view .rubberband, treeview.view rubberband, flowbox rubberband, +.rubberband, +rubberband { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.24); +} + +flowbox flowboxchild { + padding: 4px; + border-radius: 6px; +} +flowbox flowboxchild:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +.content-view .tile:selected { + background-color: transparent; +} + +label { + caret-color: #7c6f64; +} +label.separator { + color: rgba(212, 190, 152, 0.7); +} +label.error { + color: #ea6962; +} +label selection { + background-color: rgba(124, 111, 100, 0.6); +} +label:disabled { + color: rgba(212, 190, 152, 0.5); +} +headerbar label:disabled, menuitem label:disabled, tab label:disabled, button label:disabled { + color: inherit; +} +label.osd { + border-radius: 6px; + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} + +.dim-label { + color: rgba(212, 190, 152, 0.7); +} + +assistant .sidebar { + padding: 4px 0; +} +assistant .sidebar label { + min-height: 32px; + margin: 0 4px; + padding: 0 8px; + border-radius: 6px; + color: rgba(212, 190, 152, 0.5); + font-weight: 500; +} +assistant .sidebar label.highlight { + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; +} + +/** + * Spinner Animation + */ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); + } +} +spinner { + background: none; + opacity: 0; + color: #7c6f64; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + transition: opacity 300ms cubic-bezier(0, 0, 0.2, 1); + animation: spin 1s linear infinite; +} +spinner:checked { + opacity: 1; +} +spinner:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * General Typography + */ +.large-title { + font-weight: 400; + font-size: 36pt; +} + +.title-1, .nautilus-empty-state-icon + .large-title { + font-weight: 400; + font-size: 25.5pt; + letter-spacing: 0.1875pt; +} + +.title-2 { + font-weight: 400; + font-size: 18pt; +} + +.title-3 { + font-weight: 500; + font-size: 15pt; + letter-spacing: 0.1125pt; +} + +.title-4 { + font-weight: 400; + font-size: 12pt; + letter-spacing: 0.375pt; +} + +.heading { + font-weight: 500; + font-size: 1em; +} + +.body { + font-weight: 400; + font-size: 1em; +} + +.caption-heading { + font-weight: 500; + font-size: 9pt; + letter-spacing: 1.125pt; +} + +.caption { + font-weight: 400; + font-size: 9pt; + letter-spacing: 0.3pt; +} + +/** + * Text Entries + */ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding: 0 8px; + border-radius: 6px 6px 0 0; + 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), #7c6f64 0%, transparent 0%) 2/0 0 0; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #7c6f64; +} +spinbutton:focus:not(.vertical), +entry:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 0%) 2/0 0 2px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton:drop(active):not(.vertical), +entry:drop(active) { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.0784); +} +spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton.flat:not(.vertical), +entry.flat { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: transparent; +} +spinbutton:not(.vertical) image, +entry image { + color: rgba(212, 190, 152, 0.7); +} +spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active, +entry image:hover, +entry image:active { + color: #d4be98; +} +spinbutton:not(.vertical) image:disabled, +entry image:disabled { + color: rgba(212, 190, 152, 0.5); +} +spinbutton:not(.vertical) image.left, +entry image.left { + margin-left: 0px; + margin-right: 6px; +} +spinbutton:not(.vertical) image.right, +entry image.right { + margin-left: 6px; + margin-right: 0px; +} +spinbutton:not(.vertical) selection, +entry selection { + background-color: rgba(124, 111, 100, 0.6); +} +spinbutton.error:not(.vertical), +entry.error { + 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), #ea6962 0%, transparent 0%) 2/0 0 0; + box-shadow: inset 0 -1px #ea6962; + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #ea6962; +} +spinbutton.error:focus:not(.vertical), +entry.error:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ea6962 100%, transparent 0%) 2/0 0 2px; + box-shadow: inset 0 -1px #ea6962; + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton.warning:not(.vertical), +entry.warning { + 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), #d8a657 0%, transparent 0%) 2/0 0 0; + box-shadow: inset 0 -1px #d8a657; + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #d8a657; +} +spinbutton.warning:focus:not(.vertical), +entry.warning:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #d8a657 100%, transparent 0%) 2/0 0 2px; + box-shadow: inset 0 -1px #d8a657; + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton:not(.vertical) progress, +entry progress { + margin: 0 -8px -4px; + border-bottom: 2px solid #7c6f64; + background-color: transparent; +} +.gedit-search-slider .linked:not(.vertical) > entry, spinbutton.vertical entry { + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #3C3836; + color: #d4be98; + caret-color: #7c6f64; +} +.gedit-search-slider .linked:not(.vertical) > entry:focus, spinbutton.vertical entry:focus { + border-image: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +.gedit-search-slider .linked:not(.vertical) > entry:drop(active), spinbutton.vertical entry:drop(active) { + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +.gedit-search-slider .linked:not(.vertical) > entry:disabled, spinbutton.vertical entry:disabled { + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +.gedit-search-slider .linked:not(.vertical) > entry.error, spinbutton.vertical entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #ea6962; + color: #000; + caret-color: #000; +} +.gedit-search-slider .linked:not(.vertical) > entry.error:focus, spinbutton.vertical entry.error:focus { + border-image: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +.gedit-search-slider .linked:not(.vertical) > entry.error:disabled, spinbutton.vertical entry.error:disabled { + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +.gedit-search-slider .linked:not(.vertical) > entry.error image, spinbutton.vertical entry.error image { + color: rgba(0, 0, 0, 0.7); +} +.gedit-search-slider .linked:not(.vertical) > entry.error image:hover, spinbutton.vertical entry.error image:hover, .gedit-search-slider .linked:not(.vertical) > entry.error image:active, spinbutton.vertical entry.error image:active { + color: #000; +} +.gedit-search-slider .linked:not(.vertical) > entry.error image:disabled, spinbutton.vertical entry.error image:disabled { + color: rgba(0, 0, 0, 0.5); +} +.gedit-search-slider .linked:not(.vertical) > entry.warning, spinbutton.vertical entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #d8a657; + color: #000; + caret-color: #000; +} +.gedit-search-slider .linked:not(.vertical) > entry.warning:focus, spinbutton.vertical entry.warning:focus { + border-image: none; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +.gedit-search-slider .linked:not(.vertical) > entry.warning:disabled, spinbutton.vertical entry.warning:disabled { + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +.gedit-search-slider .linked:not(.vertical) > entry.warning image, spinbutton.vertical entry.warning image { + color: rgba(0, 0, 0, 0.7); +} +.gedit-search-slider .linked:not(.vertical) > entry.warning image:hover, spinbutton.vertical entry.warning image:hover, .gedit-search-slider .linked:not(.vertical) > entry.warning image:active, spinbutton.vertical entry.warning image:active { + color: #000; +} +.gedit-search-slider .linked:not(.vertical) > entry.warning image:disabled, spinbutton.vertical entry.warning image:disabled { + color: rgba(0, 0, 0, 0.5); +} + +treeview entry, treeview entry.flat { + background-color: #282828; +} +treeview entry, treeview entry:focus, treeview entry.flat, treeview entry.flat:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .documents-entry-tag, .photos-entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: #d4be98; +} +.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover { + background-image: image(rgba(212, 190, 152, 0.08)); +} +:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} +:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} +.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.7); +} + +/** + * Buttons + */ +@keyframes needs-attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#7c6f64), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#7c6f64), to(transparent)); + } +} +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 6px; + color: #d4be98; + font-weight: 500; + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; +} +button:drop(active), +button:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #423d3a; +} +button:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #48433e; +} +button:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +button:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button:checked { + color: #7c6f64; + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #443f3c; +} +button:checked:drop(active), +button:checked:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #46413e; +} +button:checked:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #48433f; +} +button:checked:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +button:checked:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.1904); + color: rgba(212, 190, 152, 0.5); +} +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} +button.image-button { + min-width: 24px; + padding: 4px; + border-radius: 9999px; +} +button.text-button.image-button { + min-width: 24px; + padding: 4px; + border-radius: 6px; +} +button.text-button.image-button label:first-child { + margin-left: 12px; +} +button.text-button.image-button label:last-child { + margin-right: 12px; +} +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} +.budgie-settings-window buttonbox.inline-toolbar button, #MatePanelPopupWindow button, #mate-menu button, .gedit-search-slider .linked:not(.vertical) > button, popover.messagepopover .popover-action-area button, button.sidebar-button, scrollbar button, combobox > .linked:not(.vertical) > button:not(:only-child), spinbutton.vertical button, spinbutton:not(.vertical) button, .nemo-window .toolbar button, .raven .raven-header.top stackswitcher.linked > button, .caja-navigation-window box.horizontal > button.toggle.image-button, #CanvasTable button, layouttabbar button, .message-input-area button, filechooser #pathbarbox > stack > box > button, #buttonbox_frame button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, #caja-extra-view-widget button, .lock-dialog button, infobar.info > revealer > box button, infobar.question > revealer > box button, messagedialog .dialog-action-box button, .app-notification button, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action), popover.background.menu button, +popover.background button.model, .titlebar button:not(.suggested-action):not(.destructive-action), toolbar button, +button.flat { + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +.budgie-settings-window buttonbox.inline-toolbar button:drop(active), #MatePanelPopupWindow button:drop(active), #mate-menu button:drop(active), .gedit-search-slider .linked:not(.vertical) > button:drop(active), popover.messagepopover .popover-action-area button:drop(active), button.sidebar-button:drop(active), scrollbar button:drop(active), combobox > .linked:not(.vertical) > button:drop(active):not(:only-child), spinbutton.vertical button:drop(active), spinbutton:not(.vertical) button:drop(active), .nemo-window .toolbar button:drop(active), .raven .raven-header.top stackswitcher.linked > button:drop(active), .caja-navigation-window box.horizontal > button.toggle.image-button:drop(active), #CanvasTable button:drop(active), layouttabbar button:drop(active), .message-input-area button:drop(active), filechooser #pathbarbox > stack > box > button:drop(active), #buttonbox_frame button:drop(active), .drop-shadow button:drop(active), .budgie-session-dialog .linked.horizontal > button:drop(active), #caja-extra-view-widget button:drop(active), .lock-dialog button:drop(active), infobar.info > revealer > box button:drop(active), infobar.question > revealer > box button:drop(active), messagedialog .dialog-action-box button:drop(active), .app-notification button:drop(active), actionbar > revealer > box button:drop(active):not(.suggested-action):not(.destructive-action), popover.background.menu button:drop(active), +popover.background button.model:drop(active), .titlebar button:drop(active):not(.suggested-action):not(.destructive-action), toolbar button:drop(active), +button.flat:drop(active), .budgie-settings-window buttonbox.inline-toolbar button:hover, #MatePanelPopupWindow button:hover, #mate-menu button:hover, .gedit-search-slider .linked:not(.vertical) > button:hover, popover.messagepopover .popover-action-area button:hover, button.sidebar-button:hover, scrollbar button:hover, combobox > .linked:not(.vertical) > button:hover:not(:only-child), spinbutton.vertical button:hover, spinbutton:not(.vertical) button:hover, .nemo-window .toolbar button:hover, .raven .raven-header.top stackswitcher.linked > button:hover, .caja-navigation-window box.horizontal > button.toggle.image-button:hover, #CanvasTable button:hover, layouttabbar button:hover, .message-input-area button:hover, filechooser #pathbarbox > stack > box > button:hover, #buttonbox_frame button:hover, .drop-shadow button:hover, .budgie-session-dialog .linked.horizontal > button:hover, #caja-extra-view-widget button:hover, .lock-dialog button:hover, infobar.info > revealer > box button:hover, infobar.question > revealer > box button:hover, messagedialog .dialog-action-box 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, .titlebar button:hover:not(.suggested-action):not(.destructive-action), toolbar button:hover, +button.flat:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.budgie-settings-window buttonbox.inline-toolbar button:focus, #MatePanelPopupWindow button:focus, #mate-menu button:focus, .gedit-search-slider .linked:not(.vertical) > button:focus, popover.messagepopover .popover-action-area button:focus, button.sidebar-button:focus, scrollbar button:focus, combobox > .linked:not(.vertical) > button:focus:not(:only-child), spinbutton.vertical button:focus, spinbutton:not(.vertical) button:focus, .nemo-window .toolbar button:focus, .raven .raven-header.top stackswitcher.linked > button:focus, .caja-navigation-window box.horizontal > button.toggle.image-button:focus, #CanvasTable button:focus, layouttabbar button:focus, .message-input-area button:focus, filechooser #pathbarbox > stack > box > button:focus, #buttonbox_frame button:focus, .drop-shadow button:focus, .budgie-session-dialog .linked.horizontal > button:focus, #caja-extra-view-widget button:focus, .lock-dialog button:focus, infobar.info > revealer > box button:focus, infobar.question > revealer > box button:focus, messagedialog .dialog-action-box 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, .titlebar button:focus:not(.suggested-action):not(.destructive-action), toolbar button:focus, +button.flat:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.budgie-settings-window buttonbox.inline-toolbar button:active, #MatePanelPopupWindow button:active, #mate-menu button:active, .gedit-search-slider .linked:not(.vertical) > button:active, popover.messagepopover .popover-action-area button:active, button.sidebar-button:active, scrollbar button:active, combobox > .linked:not(.vertical) > button:active:not(:only-child), spinbutton.vertical button:active, spinbutton:not(.vertical) button:active, .nemo-window .toolbar button:active, .raven .raven-header.top stackswitcher.linked > button:active, .caja-navigation-window box.horizontal > button.toggle.image-button:active, #CanvasTable button:active, layouttabbar button:active, .message-input-area button:active, filechooser #pathbarbox > stack > box > button:active, #buttonbox_frame button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, #caja-extra-view-widget button:active, .lock-dialog button:active, infobar.info > revealer > box button:active, infobar.question > revealer > box button:active, messagedialog .dialog-action-box 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, .titlebar button:active:not(.suggested-action):not(.destructive-action), toolbar button:active, +button.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +.budgie-settings-window buttonbox.inline-toolbar button:disabled, #MatePanelPopupWindow button:disabled, #mate-menu button:disabled, .gedit-search-slider .linked:not(.vertical) > button:disabled, popover.messagepopover .popover-action-area button:disabled, button.sidebar-button:disabled, scrollbar button:disabled, combobox > .linked:not(.vertical) > button:disabled:not(:only-child), spinbutton.vertical button:disabled, spinbutton:not(.vertical) button:disabled, .nemo-window .toolbar button:disabled, .raven .raven-header.top stackswitcher.linked > button:disabled, .caja-navigation-window box.horizontal > button.toggle.image-button:disabled, #CanvasTable button:disabled, layouttabbar button:disabled, .message-input-area button:disabled, filechooser #pathbarbox > stack > box > button:disabled, #buttonbox_frame button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, #caja-extra-view-widget button:disabled, .lock-dialog button:disabled, infobar.info > revealer > box button:disabled, infobar.question > revealer > box button:disabled, messagedialog .dialog-action-box 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, .titlebar button:disabled:not(.suggested-action):not(.destructive-action), toolbar button:disabled, +button.flat:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} + +.nemo-window .toolbar button:checked, .raven .raven-header.top stackswitcher.linked > button:checked, .caja-navigation-window box.horizontal > button.toggle.image-button:checked, #CanvasTable button:checked, layouttabbar button:checked, .message-input-area button:checked, filechooser #pathbarbox > stack > box > button:checked, #buttonbox_frame button:checked, .drop-shadow button:checked, .budgie-session-dialog .linked.horizontal > button:checked, #caja-extra-view-widget button:checked, .lock-dialog button:checked, infobar.info > revealer > box button:checked, infobar.question > revealer > box button:checked, messagedialog .dialog-action-box 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, .titlebar button:checked:not(.suggested-action):not(.destructive-action), toolbar button:checked, +button.flat:checked { + color: #7c6f64; + box-shadow: none; + background-color: rgba(124, 111, 100, 0.12); +} +.nemo-window .toolbar button:checked:drop(active), .raven .raven-header.top stackswitcher.linked > button:checked:drop(active), .caja-navigation-window box.horizontal > button.toggle.image-button:checked:drop(active), #CanvasTable button:checked:drop(active), layouttabbar button:checked:drop(active), .message-input-area button:checked:drop(active), filechooser #pathbarbox > stack > box > button:checked:drop(active), #buttonbox_frame button:checked:drop(active), .drop-shadow button:checked:drop(active), .budgie-session-dialog .linked.horizontal > button:checked:drop(active), #caja-extra-view-widget button:checked:drop(active), .lock-dialog button:checked:drop(active), infobar.info > revealer > box button:checked:drop(active), infobar.question > revealer > box button:checked:drop(active), messagedialog .dialog-action-box button:checked:drop(active), .app-notification button:checked:drop(active), actionbar > revealer > box button:checked:drop(active):not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:drop(active), +popover.background button.model:checked:drop(active), .titlebar button:checked:drop(active):not(.suggested-action):not(.destructive-action), toolbar button:checked:drop(active), +button.flat:checked:drop(active), .nemo-window .toolbar button:checked:hover, .raven .raven-header.top stackswitcher.linked > button:checked:hover, .caja-navigation-window box.horizontal > button.toggle.image-button:checked:hover, #CanvasTable button:checked:hover, layouttabbar button:checked:hover, .message-input-area button:checked:hover, filechooser #pathbarbox > stack > box > button:checked:hover, #buttonbox_frame button:checked:hover, .drop-shadow button:checked:hover, .budgie-session-dialog .linked.horizontal > button:checked:hover, #caja-extra-view-widget button:checked:hover, .lock-dialog button:checked:hover, infobar.info > revealer > box button:checked:hover, infobar.question > revealer > box button:checked:hover, messagedialog .dialog-action-box button:checked:hover, .app-notification button:checked:hover, actionbar > revealer > box button:checked:hover:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:hover, +popover.background button.model:checked:hover, .titlebar button:checked:hover:not(.suggested-action):not(.destructive-action), toolbar button:checked:hover, +button.flat:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +.nemo-window .toolbar button:checked:focus, .raven .raven-header.top stackswitcher.linked > button:checked:focus, .caja-navigation-window box.horizontal > button.toggle.image-button:checked:focus, #CanvasTable button:checked:focus, layouttabbar button:checked:focus, .message-input-area button:checked:focus, filechooser #pathbarbox > stack > box > button:checked:focus, #buttonbox_frame button:checked:focus, .drop-shadow button:checked:focus, .budgie-session-dialog .linked.horizontal > button:checked:focus, #caja-extra-view-widget button:checked:focus, .lock-dialog button:checked:focus, infobar.info > revealer > box button:checked:focus, infobar.question > revealer > box button:checked:focus, messagedialog .dialog-action-box button:checked:focus, .app-notification button:checked:focus, actionbar > revealer > box button:checked:focus:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:focus, +popover.background button.model:checked:focus, .titlebar button:checked:focus:not(.suggested-action):not(.destructive-action), toolbar button:checked:focus, +button.flat:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +.nemo-window .toolbar button:checked:active, .raven .raven-header.top stackswitcher.linked > button:checked:active, .caja-navigation-window box.horizontal > button.toggle.image-button:checked:active, #CanvasTable button:checked:active, layouttabbar button:checked:active, .message-input-area button:checked:active, filechooser #pathbarbox > stack > box > button:checked:active, #buttonbox_frame button:checked:active, .drop-shadow button:checked:active, .budgie-session-dialog .linked.horizontal > button:checked:active, #caja-extra-view-widget button:checked:active, .lock-dialog button:checked:active, infobar.info > revealer > box button:checked:active, infobar.question > revealer > box button:checked:active, messagedialog .dialog-action-box button:checked:active, .app-notification button:checked:active, actionbar > revealer > box button:checked:active:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:active, +popover.background button.model:checked:active, .titlebar button:checked:active:not(.suggested-action):not(.destructive-action), toolbar button:checked:active, +button.flat:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.nemo-window .toolbar button:checked:disabled, .raven .raven-header.top stackswitcher.linked > button:checked:disabled, .caja-navigation-window box.horizontal > button.toggle.image-button:checked:disabled, #CanvasTable button:checked:disabled, layouttabbar button:checked:disabled, .message-input-area button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, #buttonbox_frame button:checked:disabled, .drop-shadow button:checked:disabled, .budgie-session-dialog .linked.horizontal > button:checked:disabled, #caja-extra-view-widget button:checked:disabled, .lock-dialog button:checked:disabled, infobar.info > revealer > box button:checked:disabled, infobar.question > revealer > 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, .titlebar button:checked:disabled:not(.suggested-action):not(.destructive-action), toolbar button:checked:disabled, +button.flat:checked:disabled { + color: rgba(212, 190, 152, 0.5); +} + +#buttonbox_frame button.text-button, .drop-shadow button.text-button, .budgie-session-dialog .linked.horizontal > button.text-button, #caja-extra-view-widget button.text-button, .lock-dialog button.text-button, infobar.info > revealer > box button.text-button, infobar.question > revealer > box button.text-button, messagedialog .dialog-action-box button.text-button, .app-notification button.text-button, actionbar > revealer > box button.text-button:not(.suggested-action):not(.destructive-action), popover.background.menu button.text-button, +popover.background button.text-button.model, .titlebar button.text-button:not(.suggested-action):not(.destructive-action), toolbar button.text-button, +button.flat.text-button { + min-width: 48px; + padding-left: 8px; + padding-right: 8px; +} +#buttonbox_frame button.text-button.image-button, .drop-shadow button.text-button.image-button, .budgie-session-dialog .linked.horizontal > button.text-button.image-button, #caja-extra-view-widget button.text-button.image-button, .lock-dialog button.text-button.image-button, infobar.info > revealer > box button.text-button.image-button, infobar.question > revealer > box button.text-button.image-button, messagedialog .dialog-action-box button.text-button.image-button, .app-notification button.text-button.image-button, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action), popover.background.menu button.text-button.image-button, +popover.background button.text-button.image-button.model, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action), toolbar button.text-button.image-button, +button.flat.text-button.image-button { + min-width: 24px; + padding: 4px; +} +#buttonbox_frame button.text-button.image-button label:first-child, .drop-shadow button.text-button.image-button label:first-child, .budgie-session-dialog .linked.horizontal > button.text-button.image-button label:first-child, #caja-extra-view-widget button.text-button.image-button label:first-child, .lock-dialog button.text-button.image-button label:first-child, infobar.info > revealer > box button.text-button.image-button label:first-child, infobar.question > revealer > box button.text-button.image-button label:first-child, messagedialog .dialog-action-box button.text-button.image-button label:first-child, .app-notification button.text-button.image-button label:first-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, popover.background.menu button.text-button.image-button label:first-child, +popover.background button.text-button.image-button.model label:first-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, toolbar button.text-button.image-button label:first-child, +button.flat.text-button.image-button label:first-child { + margin-left: 8px; +} +#buttonbox_frame button.text-button.image-button label:last-child, .drop-shadow button.text-button.image-button label:last-child, .budgie-session-dialog .linked.horizontal > button.text-button.image-button label:last-child, #caja-extra-view-widget button.text-button.image-button label:last-child, .lock-dialog button.text-button.image-button label:last-child, infobar.info > revealer > box button.text-button.image-button label:last-child, infobar.question > revealer > box button.text-button.image-button label:last-child, messagedialog .dialog-action-box button.text-button.image-button label:last-child, .app-notification button.text-button.image-button label:last-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, popover.background.menu button.text-button.image-button label:last-child, +popover.background button.text-button.image-button.model label:last-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, toolbar button.text-button.image-button label:last-child, +button.flat.text-button.image-button label:last-child { + margin-right: 8px; +} +#buttonbox_frame .linked:not(.vertical) > button:not(:only-child), .drop-shadow .linked:not(.vertical) > button:not(:only-child), .budgie-session-dialog .linked.horizontal:not(.vertical) > button:not(:only-child), #caja-extra-view-widget .linked:not(.vertical) > button:not(:only-child), .lock-dialog .linked:not(.vertical) > button:not(:only-child), infobar.info > revealer > box .linked:not(.vertical) > button:not(:only-child), infobar.question > revealer > box .linked:not(.vertical) > button:not(:only-child), messagedialog .dialog-action-box .linked:not(.vertical) > button:not(:only-child), .app-notification .linked:not(.vertical) > button:not(:only-child), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:not(:only-child), +popover.background .linked:not(.vertical) > button.model:not(:only-child), .titlebar .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), toolbar .linked:not(.vertical) > button:not(:only-child), #buttonbox_frame .linked.vertical > button:not(:only-child), .drop-shadow .linked.vertical > button:not(:only-child), .budgie-session-dialog .linked.horizontal.vertical > button:not(:only-child), #caja-extra-view-widget .linked.vertical > button:not(:only-child), .lock-dialog .linked.vertical > button:not(:only-child), infobar.info > revealer > box .linked.vertical > button:not(:only-child), infobar.question > revealer > box .linked.vertical > button:not(:only-child), messagedialog .dialog-action-box .linked.vertical > button:not(:only-child), .app-notification .linked.vertical > button:not(:only-child), actionbar > revealer > box .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.background.menu .linked.vertical > button:not(:only-child), +popover.background .linked.vertical > button.model:not(:only-child), .titlebar .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), toolbar .linked.vertical > button:not(:only-child), +.linked:not(.vertical) > button.flat:not(:only-child), +.linked.vertical > button.flat:not(:only-child) { + border-radius: 6px; +} +#buttonbox_frame .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .drop-shadow .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .budgie-session-dialog .linked.horizontal:not(.vertical) > button:not(:only-child).image-button:not(.text-button), #caja-extra-view-widget .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .lock-dialog .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.info > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.question > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), messagedialog .dialog-action-box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .app-notification .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), +popover.background .linked:not(.vertical) > button.model:not(:only-child).image-button:not(.text-button), .titlebar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), toolbar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), #buttonbox_frame .linked.vertical > button:not(:only-child).image-button:not(.text-button), .drop-shadow .linked.vertical > button:not(:only-child).image-button:not(.text-button), .budgie-session-dialog .linked.horizontal.vertical > button:not(:only-child).image-button:not(.text-button), #caja-extra-view-widget .linked.vertical > button:not(:only-child).image-button:not(.text-button), .lock-dialog .linked.vertical > button:not(:only-child).image-button:not(.text-button), infobar.info > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button), infobar.question > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button), messagedialog .dialog-action-box .linked.vertical > button:not(:only-child).image-button:not(.text-button), .app-notification .linked.vertical > button:not(:only-child).image-button:not(.text-button), actionbar > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.background.menu .linked.vertical > button:not(:only-child).image-button:not(.text-button), +popover.background .linked.vertical > button.model:not(:only-child).image-button:not(.text-button), .titlebar .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), toolbar .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.linked:not(.vertical) > button.flat:not(:only-child).image-button:not(.text-button), +.linked.vertical > button.flat:not(:only-child).image-button:not(.text-button) { + border-radius: 9999px; +} + +button.osd { + padding: 8px 12px; +} +button.osd.image-button { + padding: 8px; +} +button.osd:disabled { + opacity: 0; +} +button.suggested-action { + color: rgba(255, 255, 255, 0.87); + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #7c6f64; +} +button.suggested-action:drop(active), button.suggested-action:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #81756a; +} +button.suggested-action:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #867b70; +} +button.suggested-action:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 0%); +} +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button.suggested-action:checked { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #8c8077; +} +button.suggested-action:checked:drop(active), button.suggested-action:checked:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #91857c; +} +button.suggested-action:checked:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #958a82; +} +button.suggested-action:checked:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 0%); +} +button.suggested-action.flat { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +button.suggested-action.flat:drop(active), button.suggested-action.flat:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +button.suggested-action.flat:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +button.suggested-action.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +button.suggested-action.flat:checked { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.12); +} +button.suggested-action.flat:checked:drop(active), button.suggested-action.flat:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +button.suggested-action.flat:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +button.suggested-action.flat:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +button.destructive-action { + color: #000; + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #ea6962; +} +button.destructive-action:drop(active), button.destructive-action:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #d7615a; +} +button.destructive-action:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #ce5c56; +} +button.destructive-action:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button.destructive-action:checked { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #c55852; +} +button.destructive-action:checked:drop(active), button.destructive-action:checked:hover { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #bd544f; +} +button.destructive-action:checked:focus { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #b5514b; +} +button.destructive-action:checked:active { + box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2), 0 8px 6px 1px rgba(0, 0, 0, 0.14), 0 3px 8.4px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +button.destructive-action.flat { + color: #ea6962; + box-shadow: none; + background-color: transparent; +} +button.destructive-action.flat:drop(active), button.destructive-action.flat:hover { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.12); +} +button.destructive-action.flat:focus { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.12); +} +button.destructive-action.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 0%); +} +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +button.destructive-action.flat:checked { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.16); +} +button.destructive-action.flat:checked:drop(active), button.destructive-action.flat:checked:hover { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.2608); +} +button.destructive-action.flat:checked:focus { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.2608); +} +button.destructive-action.flat:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 0%); +} +.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; +} +.inline-toolbar button:not(.text-button) { + border-radius: 9999px; +} +.primary-toolbar button { + -gtk-icon-shadow: none; +} +button.close, button.circular { + border-radius: 9999px; +} +.pluma-window paned.horizontal box.vertical box.horizontal button.flat, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider .linked:not(.vertical) > button, button.sidebar-button, notebook > header > tabs > tab button.flat, spinbutton:not(.vertical) button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +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; +} + +.linked:not(.vertical) > combobox:not(:first-child) > box > button.combo, .linked:not(.vertical) > spinbutton:not(:first-child):not(.vertical), +.linked:not(.vertical) > entry:not(:first-child), +.linked:not(.vertical) > button:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.linked:not(.vertical) > combobox:not(:last-child) > box > button.combo, .linked:not(.vertical) > spinbutton:not(:last-child):not(.vertical), +.linked:not(.vertical) > entry:not(:last-child), +.linked:not(.vertical) > button:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.linked.vertical > combobox:not(:first-child) > box > button.combo, .linked.vertical > spinbutton:not(:first-child):not(.vertical), +.linked.vertical > entry:not(:first-child), +.linked.vertical > button:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.linked.vertical > combobox:not(:last-child) > box > button.combo, .linked.vertical > spinbutton:not(:last-child):not(.vertical), +.linked.vertical > entry:not(:last-child), +.linked.vertical > button:not(:last-child) { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.linked:not(.vertical) > button.image-button:first-child:not(.text-button) { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.linked:not(.vertical) > button.image-button:last-child:not(.text-button) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +.linked:not(.vertical) > button.image-button:only-child:not(.text-button) { + border-radius: 9999px; +} + +.linked.vertical > button.image-button:first-child:not(.text-button) { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} +.linked.vertical > button.image-button:last-child:not(.text-button) { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} +.linked.vertical > button.image-button:only-child:not(.text-button) { + border-radius: 9999px; +} + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 6px; +} +modelbutton.flat:drop(active), modelbutton.flat:hover, +.menuitem.button.flat:drop(active), +.menuitem.button.flat:hover { + background-color: rgba(212, 190, 152, 0.08); +} +modelbutton.flat:focus, +.menuitem.button.flat:focus { + background-color: rgba(212, 190, 152, 0.08); +} +modelbutton.flat:active, +.menuitem.button.flat:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +modelbutton.flat:selected, +.menuitem.button.flat:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +modelbutton.flat arrow { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +modelbutton.flat arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +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: 4px; +} +/** + * Links + */ +*:link { + color: #7c6f64; +} +*:link:disabled { + color: rgba(212, 190, 152, 0.5); +} + +*:visited { + color: #d3869b; +} +*:visited:disabled { + color: rgba(212, 190, 152, 0.5); +} + +button.link:link { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +button.link:link:drop(active), button.link:link:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +button.link:link:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +button.link:link:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +button.link:visited { + color: #d3869b; + box-shadow: none; + background-color: transparent; +} +button.link:visited:drop(active), button.link:visited:hover { + box-shadow: none; + background-color: rgba(211, 134, 155, 0.08); +} +button.link:visited:focus { + box-shadow: none; + background-color: rgba(211, 134, 155, 0.08); +} +button.link:visited:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(211, 134, 155, 0.12) 10%, transparent 0%); +} +button.link:disabled { + color: rgba(212, 190, 152, 0.5); +} +button.link > label { + text-decoration-line: underline; +} + +/** + * GtkSpinButton + */ +spinbutton:not(.vertical) { + padding: 0; +} +spinbutton:not(.vertical) entry { + min-width: 24px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} +spinbutton:not(.vertical) button { + border: solid 4px transparent; + background-clip: padding-box; +} +spinbutton:not(.vertical) button:focus:not(:hover):not(:active) { + background-color: transparent; +} +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -2px; +} +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -2px; +} +spinbutton.vertical { + caret-color: #7c6f64; +} +spinbutton.vertical:disabled { + color: rgba(212, 190, 152, 0.5); +} +spinbutton.vertical entry { + min-height: 32px; + min-width: 40px; + padding: 0; +} +spinbutton.vertical button { + min-height: 32px; + min-width: 40px; + padding: 0; +} +spinbutton.vertical button:focus:not(:hover):not(:active) { + background-color: transparent; +} +spinbutton.vertical button.up { + border-radius: 6px 6px 0 0; +} +spinbutton.vertical button.down { + border-radius: 0 0 6px 6px; +} +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 { + transition: -gtk-icon-transform 75ms cubic-bezier(0, 0, 0.2, 1); + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} +combobox button.combo:checked arrow { + -gtk-icon-transform: rotate(-0.5turn); +} +combobox decoration { + transition: none; +} +combobox cellview { + margin: -2px; +} +combobox button.combo cellview:dir(ltr) { + margin-left: -2px; +} +combobox button.combo cellview:dir(rtl) { + margin-right: -2px; +} +combobox menu { + padding: 2px 0; +} +combobox menu menuitem { + min-height: 28px; + padding: 0 8px; +} +combobox menu > arrow.top { + margin-top: -2px; +} +combobox menu > arrow.bottom { + margin-top: 4px; + margin-bottom: -6px; +} +combobox > .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -32px; + padding-right: 32px; +} +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -32px; + padding-left: 32px; +} +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 4px; + padding: 4px; + border-radius: 9999px; +} + +button.combo:only-child { + border-radius: 6px 6px 0 0; + font-weight: normal; + 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), #7c6f64 0%, transparent 0%) 2/0 0 0; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #7c6f64; +} +button.combo:only-child:focus { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +button.combo:only-child:drop(active), button.combo:only-child:hover { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.0784); +} +button.combo:only-child:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 0%) 2/0 0 2px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +button.combo:only-child:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +button.combo:only-child arrow { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +button.combo:only-child arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Toolbars + */ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; +} +toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { + border-radius: 0; +} +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:not(.inline-toolbar):not(.osd) scale, +toolbar:not(.inline-toolbar):not(.osd) entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton, +toolbar:not(.inline-toolbar):not(.osd) button { + margin: 2px; +} +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { + margin-left: 0; +} +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { + margin-right: 0; +} +toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton button { + margin: 0; +} +toolbar:not(.inline-toolbar):not(.osd) switch { + margin: 6px 2px; +} + +frame.documents-dropdown, .app-notification, toolbar.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px; + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +frame.documents-dropdown:backdrop, .app-notification:backdrop, toolbar.osd:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); +} + +.inline-toolbar { + padding: 4px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(212, 190, 152, 0.2); + background-color: #282828; + background-clip: padding-box; +} + +searchbar > revealer > box, +.location-bar { + padding: 4px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(212, 190, 152, 0.2); +} + +searchbar > revealer > box { + margin: -6px; + padding: 4px; +} + +/** + * Header bars + */ +.titlebar { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px 6px 0 0; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; + color: #ddc7a1; +} +.titlebar:disabled { + color: rgba(221, 199, 161, 0.5); +} +.titlebar:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +.titlebar:backdrop:disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar .title { + padding-left: 12px; + padding-right: 12px; + font-weight: bold; +} +.titlebar .subtitle { + padding-left: 12px; + padding-right: 12px; + font-size: smaller; +} +.titlebar .subtitle, +.titlebar .dim-label { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(221, 199, 161, 0.7); +} +.titlebar .subtitle:backdrop, +.titlebar .dim-label:backdrop { + color: rgba(221, 199, 161, 0.5); +} +.titlebar .titlebar { + background-color: transparent; + box-shadow: none; +} +.titlebar headerbar + separator { + background-color: rgba(221, 199, 161, 0.2); +} +.titlebar entry { + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.3); + background-color: rgba(221, 199, 161, 0.04); + color: #ddc7a1; +} +.titlebar entry:disabled { + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.2); + background-color: rgba(221, 199, 161, 0.04); + color: rgba(221, 199, 161, 0.5); +} +.titlebar entry image { + color: rgba(221, 199, 161, 0.7); +} +.titlebar entry image:hover, .titlebar entry image:active { + color: #ddc7a1; +} +.titlebar entry image:disabled { + color: rgba(221, 199, 161, 0.5); +} +.titlebar .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} +.titlebar button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 0%, transparent 0%) 0 0 0/0 0 0; + background-color: transparent; + color: rgba(221, 199, 161, 0.7); + box-shadow: none; + background-color: transparent; +} +.titlebar button:not(.suggested-action):not(.destructive-action):drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.titlebar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(221, 199, 161, 0.3); +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; + color: #ddc7a1; + box-shadow: none; + background-color: transparent; +} +.path-bar-box .nautilus-path-bar button:drop(active):not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:drop(active):not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .path-bar-box .nautilus-path-bar button:hover:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:hover:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):checked:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.path-bar-box .nautilus-path-bar button:focus:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:focus:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.path-bar-box .nautilus-path-bar button:active:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:active:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.path-bar-box .nautilus-path-bar button:disabled:not(.suggested-action):not(.destructive-action):last-child:dir(ltr), .path-bar-box .nautilus-path-bar button:disabled:not(.suggested-action):not(.destructive-action):first-child:dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.5); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(221, 199, 161, 0.5); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(221, 199, 161, 0.7); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(221, 199, 161, 0.3); +} + +.titlebar button.suggested-action:disabled, .titlebar button.destructive-action:disabled { + background-color: rgba(221, 199, 161, 0.08); + color: rgba(221, 199, 161, 0.5); +} +.titlebar stackswitcher button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 104px; +} +.titlebar .path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; + padding-left: 4px; + padding-right: 4px; +} +.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); + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode .subtitle:link { + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 0%, transparent 0%) 0 0 0/0 0 0; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.38); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 100%, transparent 0%) 0 0 2/0 0 2px; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(255, 255, 255, 0.38); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.26); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.26); +} +.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"); +} +.titlebar .selection-mode { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #7c6f64; +} +.tiled .titlebar, .tiled-top .titlebar, .tiled-right .titlebar, .tiled-bottom .titlebar, .tiled-left .titlebar, .maximized .titlebar, .fullscreen .titlebar { + border-radius: 0; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +.titlebar.default-decoration { + min-height: 24px; + padding: 4px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} +.tiled .titlebar.default-decoration, .maximized .titlebar.default-decoration, .fullscreen .titlebar.default-decoration { + box-shadow: none; +} +.titlebar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} +.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: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +headerbar { + min-height: 40px; + padding: 0 4px; +} +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 4px; + margin-bottom: 4px; +} +headerbar separator.titlebutton { + margin-top: 10px; + margin-bottom: 10px; + background-color: rgba(221, 199, 161, 0.2); +} +headerbar switch { + margin-top: 8px; + margin-bottom: 8px; +} +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} +headerbar .entry-tag, headerbar .documents-entry-tag, headerbar .photos-entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +/** + * Pathbars + */ +.caja-pathbar button, +.path-bar.linked:not(.vertical) > button { + padding-left: 4px; + padding-right: 4px; + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 0%, transparent 0%) 0 0 0/0 0 0; + border-radius: 6px; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +.caja-pathbar button:drop(active), .caja-pathbar button:hover, +.path-bar.linked:not(.vertical) > button:drop(active), +.path-bar.linked:not(.vertical) > button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.caja-pathbar button:focus, +.path-bar.linked:not(.vertical) > button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.caja-pathbar button:active, +.path-bar.linked:not(.vertical) > button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +.caja-pathbar button:disabled, +.path-bar.linked:not(.vertical) > button:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +.caja-pathbar button:checked, +.path-bar.linked:not(.vertical) > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 0%) 0 0 2/0 0 2px; + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.caja-pathbar button:checked:drop(active), .caja-pathbar button:checked:hover, +.path-bar.linked:not(.vertical) > button:checked:drop(active), +.path-bar.linked:not(.vertical) > button:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.caja-pathbar button:checked:focus, +.path-bar.linked:not(.vertical) > button:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.caja-pathbar button:checked:active, +.path-bar.linked:not(.vertical) > button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.caja-pathbar button:checked:disabled, +.path-bar.linked:not(.vertical) > button:checked:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.5); +} +.caja-pathbar button label:not(:only-child):first-child, +.path-bar.linked:not(.vertical) > button label:not(:only-child):first-child { + margin-left: 0; +} +.caja-pathbar button label:not(:only-child):last-child, +.path-bar.linked:not(.vertical) > button label:not(:only-child):last-child { + margin-right: 0; +} +.caja-pathbar button.text-button, +.path-bar.linked:not(.vertical) > button.text-button { + min-width: 0; +} +.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(212, 190, 152, 0.3); + border-top-color: rgba(212, 190, 152, 0.2); +} +* { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ""; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ""; + -GtkTreeView-expander-size: 16; +} + +treeview.view:hover, treeview.view:selected { + border-radius: 0; +} +treeview.view.separator { + min-height: 5px; + color: rgba(212, 190, 152, 0.2); +} +treeview.view:drop(active) { + border-style: solid none; + border-width: 9999px; + border-color: rgba(212, 190, 152, 0.08); +} +treeview.view:drop(active).after { + border-top-style: none; +} +treeview.view:drop(active).before { + border-bottom-style: none; +} +treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(212, 190, 152, 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: #d4be98; +} +treeview.view.expander:disabled { + color: rgba(212, 190, 152, 0.3); +} +treeview.view.progressbar { + border-bottom: 4px solid #7c6f64; + background-color: transparent; +} +treeview.view.progressbar:selected:hover { + background-color: transparent; +} +treeview.view.trough { + border-bottom: 4px solid rgba(212, 190, 152, 0.2); + background-color: transparent; +} +treeview.view.trough:selected:hover { + background-color: transparent; +} +treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); + border-radius: 0; + background-clip: padding-box; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +treeview.view header button:drop(active), treeview.view header button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.04); +} +treeview.view header button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +treeview.view header button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +treeview.view header button:drop(active):not(:active), treeview.view header button:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +treeview.view header button:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +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(212, 190, 152, 0.2); + border-radius: 0; + box-shadow: none; + background-clip: padding-box; + background-color: #3C3836; + color: #7c6f64; +} +treeview.view acceleditor > label { + background-color: #7c6f64; +} + +/** + * Menus + */ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #32302f; + color: #ddc7a1; +} +menubar:backdrop, +.menubar:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +.csd menubar, +.csd .menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} +menubar > menuitem, +.menubar > menuitem { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(221, 199, 161, 0.7); +} +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(221, 199, 161, 0.3); +} + +.background.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 4px 0; + padding: 4px 0; + border: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; + color: #d4be98; + font: initial; + text-shadow: none; +} +.csd menu, +.csd .menu, +.csd .context-menu { + border: none; + border-radius: 6px; +} +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + min-width: 40px; + padding: 4px 8px; +} +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + transition: none; + background-color: rgba(212, 190, 152, 0.08); +} +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(212, 190, 152, 0.5); +} +menu menuitem arrow, +.menu menuitem arrow, +.context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; + color: rgba(212, 190, 152, 0.7); +} +menu menuitem arrow:disabled, +.menu menuitem arrow:disabled, +.context-menu menuitem arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +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: 8px; +} +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: 8px; +} +menu > arrow, +.menu > arrow, +.context-menu > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #3C3836; + color: rgba(212, 190, 152, 0.7); +} +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 6px 6px 0 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin-top: 8px; + margin-bottom: -12px; + border-top: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 0 0 6px 6px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(rgba(212, 190, 152, 0.08)); +} +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: 4px 0; +} + +menuitem accelerator { + color: rgba(212, 190, 152, 0.7); +} +menuitem:disabled accelerator { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Popovers + */ +popover.background { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; +} +popover.background:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +popover.background, .csd popover.background { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 7px; + background-clip: padding-box; +} +popover.background > stack { + margin: -4px; +} +popover.background > toolbar { + margin: -2px; +} +popover.background > list, +popover.background > .view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 6px; +} +popover.background separator { + margin: 4px 0; +} +popover.background list separator { + margin: 0; +} + +/** + * Notebooks + */ +notebook:focus > header > tabs > tab:checked { + background-color: rgba(124, 111, 100, 0.08); +} +notebook > header.top { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); +} +notebook > header.top > tabs > tab { + box-shadow: inset 0 -2px transparent; +} +notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -2px #7c6f64; +} +notebook > header.bottom { + box-shadow: inset 0 1px rgba(212, 190, 152, 0.2); +} +notebook > header.bottom > tabs > tab { + box-shadow: inset 0 2px transparent; +} +notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 2px #7c6f64; +} +notebook > header.left { + box-shadow: inset -1px 0 rgba(212, 190, 152, 0.2); +} +notebook > header.left > tabs > tab { + box-shadow: inset -2px 0 transparent; +} +notebook > header.left > tabs > tab:checked { + box-shadow: inset -2px 0 #7c6f64; +} +notebook > header.right { + box-shadow: inset 1px 0 rgba(212, 190, 152, 0.2); +} +notebook > header.right > tabs > tab { + box-shadow: inset 2px 0 transparent; +} +notebook > header.right > tabs > tab:checked { + box-shadow: inset 2px 0 #7c6f64; +} +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + border-radius: 0; + color: rgba(212, 190, 152, 0.7); +} +notebook > header > tabs > arrow:drop(active), notebook > header > tabs > arrow:hover { + background-color: rgba(212, 190, 152, 0.04); +} +notebook > header > tabs > arrow:focus { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > arrow:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +notebook > header > tabs > arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +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: 4px 16px; + outline: none; + background-image: radial-gradient(circle, #7c6f64 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +notebook > header > tabs > tab:hover { + background-color: rgba(212, 190, 152, 0.04); +} +notebook > header > tabs > tab:disabled { + color: rgba(212, 190, 152, 0.3); +} +notebook > header > tabs > tab: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); + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #7c6f64; +} +notebook > header > tabs > tab:checked:disabled { + color: rgba(212, 190, 152, 0.5); +} +notebook > header > tabs > tab:checked.dnd { + background-color: rgba(124, 111, 100, 0.08); +} +notebook > header > tabs > tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -4px -16px; + padding: 4px 16px; +} +notebook > header > tabs > tab > box:drop(active) { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > tab button.flat:last-child { + margin-left: 4px; + margin-right: -12px; +} +notebook > header > tabs > tab button.flat:first-child { + margin-left: -12px; + margin-right: 4px; +} + +/** + * Scrollbars + */ +scrollbar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-clip: padding-box; +} +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar.top { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.bottom { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.left { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.right { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 8px; + min-height: 8px; + border: 4px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(212, 190, 152, 0.5); +} +scrollbar slider:hover { + background-color: rgba(212, 190, 152, 0.6); +} +scrollbar slider:active { + background-color: rgba(212, 190, 152, 0.7); +} +scrollbar slider:disabled { + background-color: rgba(212, 190, 152, 0.3); +} +scrollbar.fine-tune slider { + min-width: 4px; + min-height: 4px; +} +scrollbar.fine-tune.horizontal slider { + margin: 2px 0; +} +scrollbar.fine-tune.vertical slider { + margin: 0 2px; +} +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: 3px; + border: 1px solid rgba(40, 40, 40, 0.3); +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(40, 40, 40, 0.3); + border-radius: 9999px; + background-color: rgba(212, 190, 152, 0.5); + background-clip: padding-box; + -gtk-icon-source: none; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(212, 190, 152, 0.3); +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + min-width: 24px; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + min-width: 8px; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + min-height: 24px; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + min-height: 8px; +} +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: #3C3836; +} +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: 4px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(212, 190, 152, 0.3); + background-clip: padding-box; + font-size: 0; +} +switch:checked { + background-color: rgba(124, 111, 100, 0.5); +} +switch:disabled { + opacity: 0.5; +} +switch image { + margin: -8px; + -gtk-icon-transform: scale(0); +} +switch slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + outline: none; + box-shadow: 0 0 0 10px transparent, 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #3C3836; +} +switch:hover slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +switch:focus slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +switch:checked slider { + background-color: #7c6f64; +} +switch:checked:hover slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +switch:checked:focus slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +/** + * Check and Radio items + */ +.view.content-view.check:not(list), +.content-view:not(list) check { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view:not(list) check:hover, +.content-view:not(list) check:active { + -gtk-icon-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 4px 3px rgba(0, 0, 0, 0.14), 0 1px 6px rgba(0, 0, 0, 0.12); +} +.view.content-view.check:not(list), +.content-view:not(list) check { + -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:not(list) check: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: 24px; + min-width: 24px; + margin: -8px; + padding: 8px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); +} +check:drop(active), check:hover, +radio:drop(active), +radio:hover { + background-color: rgba(212, 190, 152, 0.08); +} +check:focus, +radio:focus { + background-color: rgba(212, 190, 152, 0.08); +} +check:active, +radio:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #7c6f64; +} +check:checked:drop(active), check:checked:hover, check:indeterminate:drop(active), check:indeterminate:hover, +radio:checked:drop(active), +radio:checked:hover, +radio:indeterminate:drop(active), +radio:indeterminate:hover { + background-color: rgba(124, 111, 100, 0.08); +} +check:checked:focus, check:indeterminate:focus, +radio:checked:focus, +radio:indeterminate:focus { + background-color: rgba(124, 111, 100, 0.08); +} +check:checked:active, check:indeterminate:active, +radio:checked:active, +radio:indeterminate:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +check:disabled, +radio:disabled { + color: rgba(212, 190, 152, 0.3); +} +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; + background-color: transparent; + background-image: none; +} +popover modelbutton.flat check.left:dir(rtl), +popover modelbutton.flat radio.left:dir(rtl) { + margin-left: -12px; + margin-right: -4px; +} +popover modelbutton.flat check.right:dir(ltr), +popover modelbutton.flat radio.right:dir(ltr) { + margin-left: -4px; + margin-right: -12px; +} +menu menuitem check, +menu menuitem radio { + transition: none; + margin: 0; + padding: 0; +} +menu menuitem check:dir(ltr), +menu menuitem radio:dir(ltr) { + margin-right: 8px; +} +menu menuitem check:dir(rtl), +menu menuitem radio:dir(rtl) { + margin-left: 8px; +} +menu menuitem check:hover, menu menuitem check:focus, menu menuitem check:checked:hover, menu menuitem check:checked:focus, menu menuitem check:indeterminate:hover, menu menuitem check:indeterminate:focus, +menu menuitem radio:hover, +menu menuitem radio:focus, +menu menuitem radio:checked:hover, +menu menuitem radio:checked:focus, +menu menuitem radio:indeterminate:hover, +menu menuitem radio:indeterminate:focus { + background-color: transparent; +} + +check { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-unchecked-symbolic.svg")); +} +check:checked { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-checked-symbolic.svg")); +} +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-mixed-symbolic.svg")); +} + +radio { + -gtk-icon-source: -gtk-recolor(url("icons/radio-unchecked-symbolic.svg")); + border-image-slice: 20; + border-image-width: 20px; + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#7c6f64), to(transparent)); +} +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/radio-mixed-symbolic.svg")); +} +radio:checked:not(:indeterminate) { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(#7c6f64), to(transparent)); +} +radio:checked:not(:indeterminate):disabled { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(rgba(212, 190, 152, 0.3)), to(transparent)); +} + +#MozillaGtkWidget > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; + border-radius: 6px; + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-unchecked-symbolic.svg")); +} +#MozillaGtkWidget > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-checked-symbolic.svg")); +} +#MozillaGtkWidget > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-unchecked-symbolic.svg")); +} +#MozillaGtkWidget > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-checked-symbolic.svg")); +} +#MozillaGtkWidget > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-mixed-symbolic.svg")); +} + +treeview.view check, +treeview.view radio { + padding: 0; + color: rgba(212, 190, 152, 0.7); +} +treeview.view check:checked, treeview.view check:indeterminate, +treeview.view radio:checked, +treeview.view radio:indeterminate { + color: #7c6f64; +} +treeview.view check:disabled, +treeview.view radio:disabled { + color: rgba(212, 190, 152, 0.3); +} +treeview.view check, treeview.view check:hover, treeview.view check:selected, treeview.view check:selected:hover, +treeview.view radio, +treeview.view radio:hover, +treeview.view radio:selected, +treeview.view radio:selected:hover { + box-shadow: none; + background-color: transparent; +} + +treeview.view radio:checked { + -gtk-icon-source: -gtk-recolor(url("icons/radio-checked-symbolic.svg")); + border-image: none; +} + +/** + * GtkScale + */ +scale { + min-height: 2px; + min-width: 2px; +} +scale.horizontal { + padding: 15px 12px; +} +scale.vertical { + padding: 12px 15px; +} +scale slider { + min-height: 32px; + min-width: 32px; + margin: -15px; +} +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 14px; + padding-bottom: 14px; +} +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 14px; + padding-right: 14px; +} +scale.fine-tune slider { + margin: -14px; +} +scale trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(212, 190, 152, 0.3); +} +scale trough:disabled { + background-color: rgba(212, 190, 152, 0.2); +} +scale highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); + background-image: image(#7c6f64); +} +scale highlight:disabled { + background-color: #282828; + background-image: image(rgba(212, 190, 152, 0.3)); +} +scale fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(212, 190, 152, 0.3); +} +scale fill:disabled { + background-color: transparent; +} +scale 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); + background-repeat: no-repeat; + background-position: center; + background-size: auto, 1000% 1000%; + border-radius: 50%; + color: #7c6f64; +} +scale slider { + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} +scale slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} +scale slider:hover { + background-color: rgba(124, 111, 100, 0.08); +} +scale slider:focus { + background-color: rgba(124, 111, 100, 0.08); +} +scale 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-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); + background-size: auto, 0% 0%; +} +scale marks, +scale value { + color: rgba(212, 190, 152, 0.7); +} +scale indicator { + background-color: rgba(212, 190, 152, 0.3); + 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 { + 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, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +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, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +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, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +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, rgba(124, 111, 100, 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: -24px; + margin-top: 8px; +} +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} +scale.color.vertical:dir(ltr) slider { + margin-left: -24px; + margin-right: 8px; +} +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} +scale.color.vertical:dir(rtl) slider { + margin-right: -24px; + margin-left: 8px; +} + +/** + * Progress bars + */ +progressbar { + color: rgba(212, 190, 152, 0.7); + font-size: smaller; +} +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 4px; +} +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 4px; +} +progressbar trough { + background-color: rgba(212, 190, 152, 0.2); +} +progressbar progress { + background-color: #7c6f64; +} +progressbar trough.empty progress { + all: unset; +} + +/** + * Level Bar + */ +levelbar.horizontal block { + min-height: 4px; +} +levelbar.horizontal.discrete block { + min-width: 32px; +} +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} +levelbar.vertical block { + min-width: 4px; +} +levelbar.vertical.discrete block { + min-height: 32px; +} +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} +levelbar block.low { + background-color: #d8a657; +} +levelbar block.high, levelbar block:not(.empty) { + background-color: #7c6f64; +} +levelbar block.full { + background-color: #a9b665; +} +levelbar block.empty { + background-color: rgba(212, 190, 152, 0.2); +} + +/** + * Print dialog + */ +printdialog paper { + padding: 0; + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-color: #282828; + color: #d4be98; +} +printdialog .dialog-action-box { + margin: 12px; +} + +/** + * Frames + */ +frame > border, +.frame { + margin: 0; + padding: 0; + border: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 0; + box-shadow: none; + background-clip: padding-box; + background-color: #282828; +} +frame > border.flat, +.frame.flat { + border-style: none; + background-color: transparent; +} + +frame.flat > border { + border-style: none; + background-color: transparent; +} + +actionbar > revealer > box { + padding: 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +actionbar > revealer > box .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} + +scrolledwindow viewport.frame { + border-style: none; + background-color: transparent; +} +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(124, 111, 100, 0.24)), to(transparent)); + 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.75, to(rgba(124, 111, 100, 0.24)), to(transparent)); + 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.75, to(rgba(124, 111, 100, 0.24)), to(transparent)); + 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.75, to(rgba(124, 111, 100, 0.24)), to(transparent)); + 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(212, 190, 152, 0.2); +} +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(212, 190, 152, 0.2); +} + +.tweak-categories separator, preferences stacksidebar.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 + */ +list { + border-color: rgba(212, 190, 152, 0.2); +} +list row { + padding: 2px; +} + +row { + background-clip: padding-box; +} +row.activatable:drop(active), row.activatable:hover { + background-color: rgba(212, 190, 152, 0.04); +} +row.activatable:focus { + background-color: rgba(212, 190, 152, 0.08); +} +row.activatable:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +row.activatable:drop(active):not(:active), row.activatable:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +row.activatable.has-open-popup { + background-color: rgba(212, 190, 152, 0.12); +} +row:selected { + background-color: rgba(124, 111, 100, 0.6); +} +row:selected:drop(active), row:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +row:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +row:selected.has-open-popup { + background-color: rgba(124, 111, 100, 0.648); +} + +/** + * App Notifications + */ +.app-notification { + margin: 8px; +} +.app-notification button.text-button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.app-notification button.text-button:not(:disabled):drop(active), .app-notification button.text-button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.app-notification button.text-button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.app-notification button.text-button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.app-notification.frame { + border-style: none; +} +.app-notification border { + border-style: none; + background-color: transparent; +} + +/** + * 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"); + color: rgba(212, 190, 152, 0.7); +} +expander title > arrow:checked:dir(ltr) { + -gtk-icon-transform: rotate(-180deg); +} +expander title > arrow:checked:dir(rtl) { + -gtk-icon-transform: rotate(180deg); +} +expander title > arrow:hover, expander title > arrow:active { + color: #d4be98; +} +expander title > arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Calendar + */ +calendar { + padding: 1px; + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-color: #282828; + color: #d4be98; +} +calendar:disabled { + color: rgba(212, 190, 152, 0.5); +} +calendar:selected { + border-radius: 7px; + background-color: rgba(124, 111, 100, 0.6); +} +calendar.header { + border-style: none none solid; + border-color: rgba(212, 190, 152, 0.2); + border-radius: 0; +} +calendar.button { + border-radius: 7px; + color: rgba(212, 190, 152, 0.7); +} +calendar.button:hover { + background-image: image(rgba(212, 190, 152, 0.08)); +} +calendar.button:disabled { + color: rgba(212, 190, 152, 0.3); +} +calendar.highlight { + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +calendar:indeterminate { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Dialogs + */ +messagedialog.background { + background-color: #3C3836; +} +messagedialog .titlebar { + min-height: 24px; + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; + color: #d4be98; +} +messagedialog .titlebar:backdrop { + background-color: #3C3836; + color: rgba(212, 190, 152, 0.7); +} +messagedialog.csd.background { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} +messagedialog box.vertical > label + label { + color: rgba(212, 190, 152, 0.7); +} +messagedialog .dialog-action-box { + margin-top: -4px; +} +messagedialog .dialog-action-box button:not(:last-child) { + margin-right: 4px; +} +messagedialog .dialog-action-box button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +messagedialog .dialog-action-box button:not(:disabled):drop(active), messagedialog .dialog-action-box button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +messagedialog .dialog-action-box button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +messagedialog .dialog-action-box button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +messagedialog .dialog-action-box button.destructive-action:not(:disabled) { + color: #ea6962; + box-shadow: none; + background-color: transparent; +} +messagedialog .dialog-action-box button.destructive-action:not(:disabled):drop(active), messagedialog .dialog-action-box button.destructive-action:not(:disabled):hover { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.12); +} +messagedialog .dialog-action-box button.destructive-action:not(:disabled):focus { + box-shadow: none; + background-color: rgba(234, 105, 98, 0.12); +} +messagedialog .dialog-action-box button.destructive-action:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 0%); +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +filechooser #pathbarbox { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +filechooser #pathbarbox > stack > box > button { + border-radius: 9999px; +} + +/** + * Sidebar + */ +.sidebar { + border-style: none; + background-color: transparent; +} +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) { + border-right: 1px solid rgba(212, 190, 152, 0.2); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { + border-left: 1px solid rgba(212, 190, 152, 0.2); + border-right-style: none; +} + +paned .sidebar, paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr) { + border-style: none; +} + +stacksidebar.sidebar list { + padding: 4px; +} +stacksidebar.sidebar row { + min-height: 32px; + padding: 0 2px; + border-radius: 6px; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +stacksidebar.sidebar row:selected { + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); +} +stacksidebar.sidebar row:selected:drop(active), stacksidebar.sidebar row:selected:hover { + background-color: rgba(124, 111, 100, 0.1552); +} +stacksidebar.sidebar row:selected:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +stacksidebar.sidebar row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +stacksidebar.sidebar row + row { + margin-top: 4px; +} +stacksidebar.sidebar row > label { + padding-left: 6px; + padding-right: 6px; +} +separator.sidebar { + background-color: rgba(212, 190, 152, 0.2); +} +/** + * File chooser + */ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +row image.sidebar-icon:disabled { + color: rgba(212, 190, 152, 0.3); +} + +placessidebar.sidebar > viewport.frame { + border-style: none; + background-color: transparent; +} +placessidebar.sidebar list { + padding: 1px 0 4px; +} +placessidebar.sidebar row { + min-height: 32px; + margin: -1px 4px; + padding: 0; + border-radius: 6px; +} +placessidebar.sidebar row > revealer { + padding: 0 8px; +} +placessidebar.sidebar row:selected { + color: #7c6f64; + font-weight: 500; + background-color: rgba(124, 111, 100, 0.12); +} +placessidebar.sidebar row:selected:drop(active), placessidebar.sidebar row:selected:hover { + background-color: rgba(124, 111, 100, 0.1552); +} +placessidebar.sidebar row:selected:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +placessidebar.sidebar row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +placessidebar.sidebar row:selected image.sidebar-icon { + color: #7c6f64; +} +placessidebar.sidebar row:disabled { + color: rgba(212, 190, 152, 0.5); +} +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:dir(ltr) { + padding-right: 2px; +} +placessidebar.sidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} +placessidebar.sidebar row.sidebar-placeholder-row { + background-color: rgba(212, 190, 152, 0.08); +} +placessidebar.sidebar row.sidebar-new-bookmark-row { + color: #7c6f64; +} +placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #7c6f64; +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(-0.5turn); +} +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(0turn); +} +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(212, 190, 152, 0.2)); + background-size: 1px 1px; + background-clip: content-box; +} +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-image: image(rgba(212, 190, 152, 0.2)), image(rgba(212, 190, 152, 0.2)); + 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-style: none; +} +infobar.action:hover > revealer > box { + background-image: image(rgba(212, 190, 152, 0.08)); +} +infobar.info > revealer > box, infobar.question > revealer > box { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +infobar.info > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button.text-button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +infobar.info > revealer > box button.text-button:not(:disabled):drop(active), infobar.info > revealer > box button.text-button:not(:disabled):hover, infobar.question > revealer > box button.text-button:not(:disabled):drop(active), infobar.question > revealer > box button.text-button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +infobar.info > revealer > box button.text-button:not(:disabled):focus, infobar.question > revealer > box button.text-button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +infobar.info > revealer > box button.text-button:not(:disabled):active, infobar.question > revealer > box button.text-button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +infobar.warning > revealer > box { + background-color: #d8a657; + color: #000; +} +infobar.warning > revealer > box button.flat { + color: #000; + box-shadow: none; + background-color: transparent; +} +infobar.warning > revealer > box button.flat:drop(active), infobar.warning > revealer > box button.flat:hover { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +infobar.warning > revealer > box button.flat:focus { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +infobar.warning > revealer > box button.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +infobar.warning > revealer > box *:link { + color: #000; +} +infobar.error > revealer > box { + background-color: #ea6962; + color: #000; +} +infobar.error > revealer > box button.flat { + color: #000; + box-shadow: none; + background-color: transparent; +} +infobar.error > revealer > box button.flat:drop(active), infobar.error > revealer > box button.flat:hover { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +infobar.error > revealer > box button.flat:focus { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +infobar.error > revealer > box button.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +infobar.error > revealer > box *:link { + color: #000; +} +infobar button label { + margin: 0 -4px; +} + +/** + * Tooltips + */ +tooltip { + border-radius: 6px; + box-shadow: none; +} +tooltip.background { + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} +tooltip decoration { + background-color: transparent; +} +tooltip > box { + margin: -6px; + min-height: 24px; + padding: 4px 8px; +} +tooltip .dim-label { + color: rgba(221, 199, 161, 0.7); +} +/** + * Color Chooser + */ +colorswatch.top { + border-top-left-radius: 6.5px; + border-top-right-radius: 6.5px; +} +colorswatch.top overlay { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} +colorswatch.bottom { + border-bottom-left-radius: 6.5px; + border-bottom-right-radius: 6.5px; +} +colorswatch.bottom overlay { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 6.5px; + border-bottom-left-radius: 6.5px; +} +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: 6.5px; + border-bottom-right-radius: 6.5px; +} +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +colorswatch.dark { + color: #fff; +} +colorswatch.light { + color: #000; +} +colorswatch overlay { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +colorswatch overlay:drop(active), colorswatch overlay:hover { + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12); +} +colorswatch#add-color-button { + border-radius: 6px 6px 0 0; + color: #d4be98; +} +colorswatch#add-color-button:only-child { + border-radius: 6px; +} +colorswatch#add-color-button overlay { + background-color: #3C3836; +} +colorswatch:disabled { + opacity: 0.5; +} +colorswatch:disabled overlay { + box-shadow: none; +} +colorswatch#editor-color-sample { + border-radius: 6.5px; +} +colorswatch#editor-color-sample overlay { + border-radius: 6px; +} +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); +} + +/** + * Misc + */ +/** + * Window Decorations + */ +decoration { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px 6px 0 0; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent; + margin: 8px; +} +decoration:backdrop { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px 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; +} +.ssd decoration { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} +.csd.popup decoration { + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); +} +tooltip.csd decoration { + border-radius: 6px; + box-shadow: none; +} +messagedialog.csd decoration { + border-radius: 6px; +} +.solid-csd decoration { + margin: 0; + padding: 2px; + border-radius: 0; + box-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; +} +.solid-csd decoration:backdrop { + background-color: #282625; +} + +button.titlebutton { + border-radius: 9999px; +} +.monospace { + font-family: monospace; +} + +/** + * Touch Copy & Paste + */ +cursor-handle { + color: #7c6f64; + -gtk-icon-source: -gtk-recolor(url("icons/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: 28px; + padding-left: 8px; + padding-right: 8px; + border-radius: 6px; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #3C3836; + color: #d4be98; + font-size: smaller; +} + +shortcut:last-child { + margin-bottom: 4px; +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/** + * App Icons + */ +/** + * Emoji + */ +popover.emoji-picker { + padding: 0; +} +popover.emoji-picker entry { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +button.emoji-section { + margin: 4px; +} +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: rgba(212, 190, 152, 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: rgba(212, 190, 152, 0.08); +} + +/** + * libhandy + */ +popover.combo { + padding: 8px 0; +} +popover.combo list { + border-style: none; + background-color: transparent; +} +popover.combo list > row { + min-height: 32px; + padding: 0 12px; +} +keypad .digit { + font-size: 200%; + font-weight: bold; +} +keypad .letters { + font-size: 70%; +} +keypad .symbol { + font-size: 160%; +} + +viewswitcher button { + margin: 0; + padding: 0; + border-radius: 0; +} +viewswitcher button > stack > box.narrow image, +viewswitcher button > stack > box.narrow label { + padding-left: 8px; + padding-right: 8px; +} +viewswitcher button > stack > box.wide { + padding: 8px 12px; +} +viewswitcher button > stack > box.wide label:dir(ltr) { + padding-right: 8px; +} +viewswitcher button > stack > box.wide label:dir(rtl) { + padding-left: 8px; +} +list.content { + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-color: #282828; +} +list.content > row:not(:first-child) { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right) headerbar { + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right) > decoration-overlay { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right), +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right) > decoration, +window.csd.unified:not(.solid-csd):not(.maximized):not(.fullscreen):not(.tiled):not(.tiled-top):not(.tiled-bottom):not(.tiled-left):not(.tiled-right) > decoration-overlay { + border-radius: 6px; +} + +/** + * Nautilus + */ +.nautilus-canvas-item.dim-label, +.nautilus-list-dim-label { + color: rgba(212, 190, 152, 0.7); +} + +@keyframes nautilus-operations-button-needs-attention { + to { + background-color: rgba(221, 199, 161, 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; +} + +.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):not(:only-child).disclosure-button { + border-radius: 9999px; +} + +.path-bar-box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + border-radius: 6px; +} +.path-bar-box button { + margin: 0; +} +.path-bar-box.width-maximized { + background-color: rgba(221, 199, 161, 0.04); +} +.path-bar-box.background.frame { + border-style: none; + background-color: rgba(221, 199, 161, 0.04); +} +.path-bar-box .path-bar button label:not(:only-child):first-child { + margin-left: 0; +} +.path-bar-box .path-bar button label:not(:only-child):last-child { + margin-right: 0; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action) { + padding-left: 4px; + padding-right: 4px; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):first-child { + margin-left: 0; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):last-child { + margin-right: 0; +} +.path-bar-box .nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button.image-button image:not(:only-child) { + margin: 0; +} +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + border-style: solid solid none; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); + border-radius: 7px 7px 0 0; + background-clip: padding-box; + background-color: #3C3836; +} +.nautilus-window .floating-bar.bottom.left { + margin-right: 7px; + border-left-style: none; + border-top-left-radius: 0; +} +.nautilus-window .floating-bar.bottom.right { + margin-left: 7px; + border-right-style: none; + border-top-right-radius: 0; +} +.nautilus-window .floating-bar button { + margin: 4px; +} + +.disk-space-display.unknown { + background-color: rgba(212, 190, 152, 0.3); + color: rgba(212, 190, 152, 0.3); +} +.disk-space-display.used { + background-color: #7c6f64; + color: #7c6f64; +} +.disk-space-display.free { + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.08); +} + +.nautilus-empty-state-icon + .large-title { + color: rgba(212, 190, 152, 0.7); +} + +.search-information { + padding: 2px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +.conflict-row:not(:selected) { + background-color: #5d4e36; +} + +.nautilus-window flowboxchild .icon-item-background { + padding: 4px; + border-radius: 6px; +} +.nautilus-window flowboxchild:selected { + background-color: transparent; +} +.nautilus-window flowboxchild:selected .icon-item-background { + background-color: rgba(124, 111, 100, 0.6); +} + +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(212, 190, 152, 0.2); +} +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(212, 190, 152, 0.7); +} + +.nautilus-window headerbar revealer > button { + border-radius: 9999px; +} + +.nautilus-window paned > separator { + background-color: #282828; +} + +/** + * gedit + */ +.open-document-selector-path-label { + color: rgba(212, 190, 152, 0.7); + font-size: smaller; +} + +.open-document-selector-match { + background-color: #d8a657; + color: #000; +} + +.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(212, 190, 152, 0.2); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} + +.gedit-search-slider { + margin: 4px 4px 8px; +} +.gedit-search-slider .linked:not(.vertical) > entry { + border-radius: 6px; +} +.gedit-search-slider .linked:not(.vertical) > entry .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(212, 190, 152, 0.7); +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) { + margin-right: -60px; + padding-right: 60px; +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 4px; +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) image.right { + margin-right: 0; +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) { + margin-left: -60px; + padding-left: 60px; +} +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 4px; +} +.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: #3C3836; +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button { + color: rgba(0, 0, 0, 0.7); + box-shadow: none; + background-color: transparent; +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:drop(active), .gedit-search-slider .linked:not(.vertical) > entry.error ~ button:hover { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:focus { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.08); +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 0%); +} +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:disabled { + color: rgba(0, 0, 0, 0.3); +} +.gedit-search-slider .linked:not(.vertical) > button { + border: solid 4px transparent; + border-radius: 9999px; + background-clip: padding-box; +} +.gedit-search-slider .linked:not(.vertical) > button:last-child:dir(ltr), .gedit-search-slider .linked:not(.vertical) > button:not(:first-child):dir(rtl) { + margin-left: -2px; +} +.gedit-search-slider .linked:not(.vertical) > button:first-child:dir(rtl), .gedit-search-slider .linked:not(.vertical) > button:not(:last-child):dir(ltr) { + margin-right: -2px; +} + +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 + */ +.tweak-categories { + background-image: image(#282828); +} +.tweak { + padding: 3px; +} +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#282828); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#282828); +} + +.tweak-group-startup { + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-image: image(#282828); +} + +row#Focus, +row#ClickMethod, +row#StaticWorkspaceTweak, +row#dynamic-workspaces, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + padding: 0; + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-image: image(#282828); +} +row#Focus row:not(:last-child), +row#ClickMethod row:not(:last-child), +row#StaticWorkspaceTweak row:not(:last-child), +row#dynamic-workspaces row:not(:last-child), +row#PrimaryWorkspaceTweak row:not(:last-child), +row#workspaces-only-on-primary row:not(:last-child) { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +row#Focus.tweak > list, +row#ClickMethod.tweak > list, +row#StaticWorkspaceTweak.tweak > list, +row#dynamic-workspaces.tweak > list, +row#PrimaryWorkspaceTweak.tweak > list, +row#workspaces-only-on-primary.tweak > list { + margin-top: -3px; +} + +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); +} +leaflet.titlebar > .titlebar.tweak-titlebar-left + separator, +leaflet.titlebar > .titlebar.tweak-titlebar-right + separator, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-left + separator, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-right + separator { + background-color: inherit; + background-image: image(rgba(221, 199, 161, 0.2)); +} + +/** + * Builder + */ +layouttabbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + background-color: #282828; +} +layouttabbar > box > button { + margin: 4px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); + box-shadow: inset 0 -2px #7c6f64; + background-color: #282828; +} +layouttab separator.vertical { + margin: 8px 4px; +} +layouttab button, layouttab button.text-button, layouttab button.image-button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} +layout { + border: 1px solid rgba(212, 190, 152, 0.2); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #ea6962; + color: #000; +} + +window.workbench treeview.image { + color: rgba(212, 190, 152, 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 entry { + color: rgba(212, 190, 152, 0.7); +} + +popover.omnibar list row:not(:last-child) { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +entry.preferences-search { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: none; + background-color: transparent; +} +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(212, 190, 152, 0.2); +} +preferences > box > box:dir(rtl) { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} + +popover.messagepopover.background { + padding: 0; +} +popover.messagepopover .popover-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(212, 190, 152, 0.2); + 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(212, 190, 152, 0.2); +} +popover.transfers list row > box { + padding: 10px; +} + +dockbin { + border: 1px solid rgba(212, 190, 152, 0.2); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(212, 190, 152, 0.2); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + background-color: #282828; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + background-color: #282828; +} + +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: 4px 6px; + border-width: 1px; + border-color: transparent; + box-shadow: inset 0 -2px transparent; + background-image: radial-gradient(circle, #7c6f64 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +docktab:hover { + background-color: rgba(212, 190, 152, 0.08); +} +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 #7c6f64; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #d4be98; +} + +dockoverlayedge { + background-color: #282828; +} +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #7c6f64; +} +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #7c6f64; +} + +pillbox { + background-color: #282828; + border-radius: 6px; +} + +layoutpane entry.search { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: none; + background-color: #282828; +} + +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: 8px; + padding-right: 8px; +} + +button.dzlmenubutton image { + min-width: 26px; +} +button.dzlmenubutton image.arrow { + min-width: 23px; +} + +button.dzlmenubuttonitem { + color: #d4be98; + font-weight: normal; +} +button.dzlmenubuttonitem:disabled { + color: rgba(212, 190, 152, 0.5); +} + +idelayoutstackheader { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +idelayoutstackheader button:checked { + color: #d4be98; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher { + padding: 8px 0; + background-color: #282828; +} +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +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(124, 111, 100, 0.7) 10%, transparent 0%); +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { + background-color: transparent; + color: #d4be98; +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { + margin-right: -1px; +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { + box-shadow: inset -2px 0 #7c6f64; +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { + margin-left: -1px; +} +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { + box-shadow: inset 2px 0 #7c6f64; +} + +ideeditorsidebar notebook header { + background: transparent; +} + +popover.messagepopover list { + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; +} +popover.messagepopover list row:not(:last-child) { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +dzlsuggestionpopover > revealer > box > elastic > scrolledwindow > viewport > list > row:selected { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +#titlebar_container .suggestionbutton button { + padding: 0; + border-radius: 0; + box-shadow: inset 0 0 0 9999px #32302f; +} +#titlebar_container .suggestionbutton button:backdrop { + box-shadow: inset 0 0 0 9999px #282625; +} +#titlebar_container .suggestionbutton button image { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1), background-color 225ms cubic-bezier(0, 0, 0.2, 1); + min-width: 32px; + min-height: 32px; + border-radius: 9999px; + box-shadow: inset 0 0 0 9999px transparent; +} +#titlebar_container .suggestionbutton button:hover image { + box-shadow: inset 0 0 0 9999px rgba(221, 199, 161, 0.08); +} +#titlebar_container .suggestionbutton button:focus image { + box-shadow: inset 0 0 0 9999px rgba(221, 199, 161, 0.08); +} +#titlebar_container .suggestionbutton button:active image { + background-color: rgba(221, 199, 161, 0.12); +} + +/** + * Photos + */ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; + background-color: transparent; +} +.documents-scrolledwin.frame frame.content-view > border { + border-style: none; + background-color: transparent; +} + +.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: #d4be98; + font-weight: normal; +} +button.photos-filter-preview:checked { + background-color: rgba(124, 111, 100, 0.6); + color: #d4be98; +} +button.photos-filter-preview:checked image { + color: #fff; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +overlay grid.horizontal > revealer > scrolledwindow.frame { + border-style: none; + background-color: transparent; +} +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-left-style: solid; +} +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-right-style: solid; +} + +/** + * Music + */ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(212, 190, 152, 0.2); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(212, 190, 152, 0.2); +} + +.side-panel .view { + background-image: image(#282828); +} +.side-panel .view:hover { + background-image: image(#363431); +} + +.side-panel .view:selected { + background-image: image(#7c6f64); +} +.side-panel .view:selected:hover { + background-image: image(#867b70); +} + +.songs-list:hover { + background-image: image(rgba(212, 190, 152, 0.08)); +} + +frame.documents-dropdown { + margin: 8px; +} +frame.documents-dropdown > border { + border: none; +} + +box.vertical > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +box.vertical > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/** + * Terminal + */ +terminal-window notebook > header > box { + margin: -2px; +} +terminal-window notebook > header > box button { + border-radius: 0; +} + +/** + * 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: -4px; +} +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: -4px; +} +tasklistview > box > revealer > box > button .dim-label { + color: inherit; +} + +/** + * eog + */ +#eog-thumb-nav scrolledwindow.frame { + border-top: none; +} + +/** + * Evolution + */ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/** + * gitg + */ +frame.commit-frame > border { + border-style: solid none none; +} + +/** + * Characters + */ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(212, 190, 152, 0.2); + background-clip: padding-box; + background-color: #282828; +} + +list.categories { + background-image: image(#282828); +} + +/** + * Boxes + */ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 6px; + background-color: black; + color: rgba(255, 255, 255, 0.87); +} + +/** + * Evince + */ +evview.content-view.view:selected { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} + +/** + * Polari + */ +.polari-room-list row:selected { + background-color: rgba(124, 111, 100, 0.5); +} + +/** + * Fractal + */ +button.osd.scroll_button { + margin: 4px; +} + +/** + * Mines + */ +grid.minefield > button.tile { + border-style: solid; +} + +/** + * 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 14.4px 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(#3C3836); +} + +.terminal-titlebar button { + border-radius: 0; +} + +button.image-button.session-new-button { + min-width: 28px; +} + +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: #282828; +} +.terminator-terminal-window notebook.frame { + border-style: none; + background-color: transparent; +} + +/** + * Ubitquity + */ +#live_installer .menubar progressbar trough { + border-radius: 4px; + background-color: rgba(221, 199, 161, 0.2); +} + +/** + * 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; +} + +/** + * FileZilla + */ +window.background > box.vertical > widget > widget > widget > widget > widget > widget > widget > scrolledwindow > widget > entry { + all: unset; + padding: 5px; + box-shadow: inset 0 0 0 1px rgba(124, 111, 100, 0.6); + background-color: #282828; +} +window.background > box.vertical > widget > widget > widget > widget > widget > widget > widget > scrolledwindow > widget > widget > entry { + all: unset; + padding: 0 3px 1px; + box-shadow: inset 0 0 0 1px rgba(124, 111, 100, 0.6); + background-color: #282828; +} + +/** + * Chromium + */ +window.background.chromium { + background-color: #3C3836; +} +window.background.chromium entry, +window.background.chromium > button { + border: 1px solid rgba(212, 190, 152, 0.3); +} +window.background.chromium > button { + color: #7c6f64; + border-color: #6a6053; +} +window.background.chromium > button:disabled { + color: rgba(212, 190, 152, 0.3); +} +window.background.chromium menubar, +window.background.chromium headerbar { + color: rgba(221, 199, 161, 0.7); +} +window.background.chromium headerbar button:active { + background-color: rgba(221, 199, 161, 0.12); +} +window.background.chromium textview.view { + background-color: transparent; +} +window.background.chromium treeview.view.cell:selected:focus { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +window.background.chromium treeview.view button { + border: 1px solid rgba(212, 190, 152, 0.3); + background-color: #282828; +} + +tooltip.background.chromium { + background-color: #32302f; +} + +/** + * Firefox + */ +#MozillaGtkWidget > widget text { + background-color: #3C3836; +} +#MozillaGtkWidget > widget text:selected { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +#MozillaGtkWidget > widget > separator { + color: rgba(212, 190, 152, 0.2); +} +#MozillaGtkWidget > widget > frame > border { + border-color: #5c554a; +} +#MozillaGtkWidget > widget > entry, +#MozillaGtkWidget > widget > button > button { + border: 1px solid rgba(212, 190, 152, 0.3); + border-radius: 6px; + box-shadow: none; +} +#MozillaGtkWidget > widget > entry:disabled, +#MozillaGtkWidget > widget > button > button:disabled { + border-color: rgba(212, 190, 152, 0.2); +} +#MozillaGtkWidget > widget > entry { + min-height: 30px; + background-color: #282828; +} +#MozillaGtkWidget > widget > entry:focus { + border-color: #7c6f64; + box-shadow: inset 0 0 0 1px #7c6f64; +} +#MozillaGtkWidget > widget > entry:disabled { + background-color: #282828; +} +#MozillaGtkWidget > widget > button > button { + padding: 4px 8px; +} +#MozillaGtkWidget > widget > button > button:active { + background-size: 1000% 1000%; +} +#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: #757575; +} +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):disabled, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):disabled { + color: rgba(117, 117, 117, 0.5); +} +#MozillaGtkWidget menuitem label:disabled { + color: rgba(212, 190, 152, 0.5); +} + +#MozillaGtkWidget > widget > menubar { + color: rgba(221, 199, 161, 0.7); +} +#MozillaGtkWidget > widget > menubar:hover { + color: #ddc7a1; +} +#MozillaGtkWidget > widget > menubar:disabled { + color: rgba(221, 199, 161, 0.3); +} +#MozillaGtkWidget > widget > frame { + color: rgba(212, 190, 152, 0.3); +} +#MozillaGtkWidget menu > separator { + color: rgba(212, 190, 152, 0.2); +} + +/** + * 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; + border-radius: 6px; +} +#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; + border-radius: 6px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} + +#Canvas_and_Dock frame > border { + border: none; + background-color: transparent; +} +#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; +} + +/** + * Synapse + */ +box.vertical > widget > widget:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +/** + * 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: #7c6f64; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0; +} +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 6px 6px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; + color: #ddc7a1; +} +UnityDecoration .top:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +UnityDecoration .menuitem { + border-radius: 6px 6px 0 0; + box-shadow: none; + color: rgba(221, 199, 161, 0.7); +} +UnityDecoration .menuitem:hover { + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} +.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #1e1c1b; + color: #ddc7a1; +} +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(221, 199, 161, 0.7); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(221, 199, 161, 0.7); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #7c6f64; +} + +/** + * Mate-Panel + */ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: #1e1c1b; + color: rgba(221, 199, 161, 0.7); + font-weight: 500; +} +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: rgba(221, 199, 161, 0.7); + box-shadow: none; + background-color: transparent; +} +.mate-panel-menu-bar button:drop(active), .mate-panel-menu-bar button:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.mate-panel-menu-bar button:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.mate-panel-menu-bar button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.mate-panel-menu-bar button:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.3); +} +.mate-panel-menu-bar button:checked { + color: #ddc7a1; + box-shadow: none; + background-color: rgba(221, 199, 161, 0.12); +} +.mate-panel-menu-bar button:checked:drop(active), .mate-panel-menu-bar button:checked:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.mate-panel-menu-bar button:checked:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.mate-panel-menu-bar button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.mate-panel-menu-bar button:checked:disabled { + background-color: rgba(221, 199, 161, 0.12); + color: rgba(221, 199, 161, 0.5); +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(221, 199, 161, 0.2); +} + +MatePanelAppletFrameDBus > MatePanelAppletFrameDBus { + background-image: repeating-linear-gradient(currentcolor, currentcolor 4px, transparent 4px, transparent 6px); + background-repeat: no-repeat; + background-size: 4px 10px; + color: rgba(221, 199, 161, 0.3); +} +MatePanelAppletFrameDBus > MatePanelAppletFrameDBus:dir(ltr) { + background-position: 3px; +} +MatePanelAppletFrameDBus > MatePanelAppletFrameDBus:dir(rtl) { + background-position: calc(100% - 3px); +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(221, 199, 161, 0.7); +} +.mate-panel-menu-bar menubar > menuitem:hover { + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(221, 199, 161, 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 0; +} +.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: #7c6f64; +} +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: rgba(221, 199, 161, 0.08); +} +PanelApplet.wnck-applet .wnck-pager:active { + background-color: rgba(221, 199, 161, 0.12); +} +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #7c6f64; +} + +.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(212, 190, 152, 0.2); + border-radius: 7px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + background-color: #3C3836; +} +#MatePanelPopupWindow frame > border { + border-style: none; + background-color: transparent; +} +#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(212, 190, 152, 0.2); +} +#MatePanelPopupWindow expander > title { + min-height: 32px; +} +#MatePanelPopupWindow button { + padding: 4px 16px; +} +#MatePanelPopupWindow > frame > box > box > box > widget { + color: rgba(212, 190, 152, 0.2); +} + +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(212, 190, 152, 0.2); + border-radius: 7px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + background-color: #3C3836; +} +.mate-panel-applet-slider frame > border { + border-style: none; + background-color: transparent; +} + +#PanelApplet:not(:selected) > box { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} +#PanelApplet:selected > box { + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} + +#mate-menu { + border: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + background-color: #3C3836; +} +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: #d4be98; + font-weight: normal; +} +#mate-menu button:not(.flat) { + background-color: rgba(212, 190, 152, 0.12); +} +#mate-menu button image, +#mate-menu button label + label { + color: rgba(212, 190, 152, 0.7); +} +#mate-menu entry { + margin: 0 0 4px; +} +#mate-menu entry image { + margin: 0; +} +#mate-menu entry + button { + margin: 0 4px 4px; + padding: 4px; +} + +.brisk-menu { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +.brisk-menu entry { + margin-bottom: -2px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); + border-image: none; + box-shadow: none; + background-color: transparent; +} +.brisk-menu entry + box > box:dir(ltr) { + margin-right: -2px; + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +.brisk-menu entry + box > box:dir(rtl) { + margin-left: -2px; + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +.brisk-menu .categories-list { + padding-top: 4px; +} +.brisk-menu .categories-list button { + margin: 0 4px; +} +.brisk-menu .session-button { + padding: 8px; +} +.brisk-menu .frame { + border-style: none; + background-color: transparent; +} +.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: #d4be98; + font-weight: normal; +} + +/** + * CAJA File manager + */ +.caja-navigation-window box.horizontal > 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, +.caja-notebook { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; + background-color: transparent; +} + +.caja-canvas-item { + border-radius: 6px; +} + +.caja-desktop.view .entry, +.caja-navigation-window .view .entry { + border: none; + border-radius: 6px; + background-color: rgba(212, 190, 152, 0.04); + background-image: none; + color: #d4be98; +} +.caja-desktop.view .entry:selected, +.caja-navigation-window .view .entry:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +.caja-desktop.view .entry { + background-color: rgba(0, 0, 0, 0.3); + color: #fff; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); + caret-color: currentcolor; +} +.caja-desktop.view .entry:selected { + background-color: rgba(124, 111, 100, 0.6); +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} + +.caja-notebook frame > border { + border-style: none; + background-color: transparent; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} +#caja-extra-view-widget button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +#caja-extra-view-widget button:not(:disabled):drop(active), #caja-extra-view-widget button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#caja-extra-view-widget button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#caja-extra-view-widget button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} + +/** + * Pluma + */ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.pluma-window statusbar frame > border { + border-style: none; + background-color: transparent; +} +.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(212, 190, 152, 0.2); +} +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; + background-color: transparent; +} +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +/** + * Atril + */ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; + background-color: transparent; +} +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border: 1px solid rgba(212, 190, 152, 0.2); + border-radius: 7px; + box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + background-color: #3C3836; +} +.lock-dialog frame > border { + border-style: none; + background-color: transparent; +} +.lock-dialog button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.lock-dialog button:not(:disabled):drop(active), .lock-dialog button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.lock-dialog button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.lock-dialog button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} + +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 6px; + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} +MsdOsdWindow.background.osd .trough { + border-radius: 0; + background-color: rgba(221, 199, 161, 0.2); +} +MsdOsdWindow.background.osd .progressbar { + border-radius: 0; + background-color: #ddc7a1; +} +/** + * Budgie Desktop + */ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 6px; +} + +.budgie-popover { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 7px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-clip: padding-box; + background-color: #3C3836; +} +.budgie-popover .container { + padding: 2px; +} +.budgie-popover border { + border: none; + background-color: transparent; +} +.budgie-popover row { + padding: 0; +} +.budgie-popover row:hover { + box-shadow: none; +} +.budgie-popover button.flat:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: #d4be98; + font-weight: normal; +} +.budgie-popover button.flat:not(.image-button):disabled { + color: rgba(212, 190, 152, 0.5); +} +.budgie-popover.budgie-menu .container { + padding: 0; +} +.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(212, 190, 152, 0.2); + border-image: none; + border-radius: 0; + box-shadow: none; + font-size: 120%; +} +.budgie-popover.budgie-menu button.flat:not(.image-button) { + min-height: 32px; + padding: 0 8px; + border-radius: 0; +} +.budgie-popover.budgie-menu button.flat:not(.image-button):drop(active):not(:active), .budgie-popover.budgie-menu button.flat:not(.image-button):hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +.budgie-popover.budgie-menu button.flat:not(.image-button):checked { + background-color: rgba(124, 111, 100, 0.6); +} +.budgie-popover.budgie-menu button.flat:not(.image-button):checked:disabled { + background-color: transparent; +} +.budgie-popover.user-menu .container { + padding: 8px; +} +.budgie-popover.user-menu separator { + margin: 4px 0; +} +.budgie-popover.sound-popover separator { + margin: 3px 0; +} +.budgie-popover.night-light-indicator .container { + padding: 8px; +} +.budgie-popover.places-menu .container { + padding: 8px; +} +.budgie-popover.places-menu .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: 4px; + padding-top: 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} +.budgie-popover.workspace-popover .container { + padding: 8px; +} +.budgie-popover.workspace-popover separator { + margin: 4px 0; +} +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(221, 199, 161, 0.2); +} +.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(221, 199, 161, 0.2); +} +.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: rgba(221, 199, 161, 0.12); +} +.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: #1e1c1b; + color: rgba(221, 199, 161, 0.7); + font-weight: 500; +} +.budgie-panel.transparent { + background-color: black; + color: rgba(255, 255, 255, 0.6); +} +.budgie-panel button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: rgba(221, 199, 161, 0.7); + box-shadow: none; + background-color: transparent; +} +.budgie-panel button:drop(active), .budgie-panel button:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.budgie-panel button:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.budgie-panel button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.budgie-panel button:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.3); +} +.budgie-panel button:checked { + color: #ddc7a1; + box-shadow: none; + background-color: rgba(221, 199, 161, 0.12); +} +.budgie-panel button:checked:drop(active), .budgie-panel button:checked:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.budgie-panel button:checked:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.budgie-panel button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.budgie-panel button:checked:disabled { + background-color: rgba(221, 199, 161, 0.12); + color: rgba(221, 199, 161, 0.5); +} +.budgie-panel.horizontal button { + padding: 0 4px; +} +.budgie-panel.vertical button { + padding: 4px 0; +} +.budgie-panel separator { + background-color: rgba(221, 199, 161, 0.3); +} +.budgie-panel .alert { + color: #ea6962; +} +.budgie-panel .titlebar:not(headerbar) { + min-height: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + color: #ddc7a1; +} +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action) { + color: rgba(221, 199, 161, 0.7); +} +.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(221, 199, 161, 0.5); +} +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(221, 199, 161, 0.3); +} +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel button.flat.launcher, .budgie-panel .top button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentcolor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} +.budgie-panel .unpinned button.flat.launcher, +.budgie-panel .pinned button.flat.launcher.running, .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel button.flat.launcher:checked, .budgie-panel .top button.flat.launcher: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, .bottom .budgie-panel button.flat.launcher, .budgie-panel .bottom button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} +.budgie-panel .unpinned button.flat.launcher, +.budgie-panel .pinned button.flat.launcher.running, .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel button.flat.launcher:checked, .budgie-panel .bottom button.flat.launcher: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, .left .budgie-panel button.flat.launcher, .budgie-panel .left button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentcolor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} +.budgie-panel .unpinned button.flat.launcher, +.budgie-panel .pinned button.flat.launcher.running, .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel button.flat.launcher:checked, .budgie-panel .left button.flat.launcher: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, .right .budgie-panel button.flat.launcher, .budgie-panel .right button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentcolor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} +.budgie-panel .unpinned button.flat.launcher, +.budgie-panel .pinned button.flat.launcher.running, .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel button.flat.launcher:checked, .budgie-panel .right button.flat.launcher: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; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +.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: #3C3836; +} +.raven > box:not(:only-child) { + margin-bottom: -10px; +} +.raven .raven-header { + min-height: 32px; + padding: 3px; +} +.raven .raven-header.top { + padding: 0; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.raven .raven-header.top stackswitcher.linked > button { + margin: -4px 0 -5px; + padding: 0 16px; + min-height: 40px; + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 0%, transparent 0%) 0 0 0/0 0 0; + border-radius: 0; +} +.raven .raven-header.top stackswitcher.linked > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; +} +.raven .raven-header.bottom { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.raven stack .raven-header { + margin-top: -6px; +} +.raven stack scrolledwindow .raven-header { + margin-top: -8px; +} +.raven .expander-button { + border-radius: 9999px; +} +.raven .raven-background stackswitcher.linked > button { + margin: -2px 8px 9px; + padding: 0 12px; + min-height: 32px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); + font-weight: normal; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +.raven .raven-background stackswitcher.linked > button:drop(active), .raven .raven-background stackswitcher.linked > button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.1536); +} +.raven .raven-background stackswitcher.linked > button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.1536); +} +.raven .raven-background stackswitcher.linked > button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 0%); +} +.raven .raven-background stackswitcher.linked > button:checked { + color: #7c6f64; + box-shadow: none; + background-color: rgba(124, 111, 100, 0.12); +} +.raven .raven-background stackswitcher.linked > button:checked:drop(active), .raven .raven-background stackswitcher.linked > button:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +.raven .raven-background stackswitcher.linked > button:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +.raven .raven-background stackswitcher.linked > button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.raven .raven-background stackswitcher.linked > button:not(:first-child) { + margin-left: 0; +} +.raven .raven-background > overlay > widget > image { + color: rgba(212, 190, 152, 0.08); +} +.raven revealer > .raven-background { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.raven .raven-header + .raven-background { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.raven viewport.frame > list > row { + padding: 0; + box-shadow: none; + background: none; +} +.raven viewport.frame > list > row:not(:first-child) { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.raven viewport.frame > list > row > box { + margin-top: -5px; + margin-left: -5px; + margin-bottom: -5px; +} +.raven viewport.frame > list > row > box > box { + padding: 6px; + margin-bottom: -10px; +} +.raven viewport.frame > list > row > box > list > row { + padding: 8px; +} +.raven viewport.frame > list > row > box > list > row > box { + margin-bottom: -5px; +} +.raven viewport.frame > list > row > box > list > row > box > box > label { + font-weight: bold; +} +.raven viewport.frame > list > row > box > list > row > box > box > button.image-button { + padding: 0; +} +.raven viewport.frame > list > row > box > list > row > box > label { + margin-top: -6px; + font-size: smaller; +} +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 8px; +} +.raven .option-subtitle { + font-size: smaller; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} +calendar.raven-calendar:selected { + border-radius: 6px; + background-color: rgba(124, 111, 100, 0.6); +} + +.raven-mpris { + background-color: black; + color: rgba(255, 255, 255, 0.87); +} +.raven-mpris label { + min-height: 24px; +} +.raven-mpris button.image-button { + padding: 8px; + color: rgba(255, 255, 255, 0.6); + box-shadow: none; + background-color: transparent; +} +.raven-mpris button.image-button:drop(active), .raven-mpris button.image-button:hover { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.08); +} +.raven-mpris button.image-button:focus { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.08); +} +.raven-mpris button.image-button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 0%); +} + +.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(212, 190, 152, 0.7); +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +.drop-shadow button.text-button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.drop-shadow button.text-button:not(:disabled):drop(active), .drop-shadow button.text-button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.drop-shadow button.text-button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.drop-shadow button.text-button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +.drop-shadow .linked > button { + margin-right: 4px; +} + +.budgie-run-dialog, .budgie-polkit-dialog, .budgie-session-dialog { + border-radius: 6px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +.budgie-run-dialog decoration, .budgie-polkit-dialog decoration, .budgie-session-dialog decoration { + border-radius: 6px; +} + +.budgie-session-dialog > box { + padding: 8px; +} +.budgie-session-dialog image { + margin: -8px; + -gtk-icon-transform: scale(0); +} +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + margin-bottom: 8px; + font-size: 20px; + font-weight: 500; +} +.budgie-session-dialog .dialog-title + label { + color: rgba(212, 190, 152, 0.7); +} +.budgie-session-dialog .linked.horizontal > button:not(:last-child) { + margin-right: 8px; +} +.budgie-session-dialog .linked.horizontal > button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +.budgie-session-dialog .linked.horizontal > button:not(:disabled):drop(active), .budgie-session-dialog .linked.horizontal > button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.budgie-session-dialog .linked.horizontal > button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +.budgie-session-dialog .linked.horizontal > button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} + +.budgie-polkit-dialog .message { + color: rgba(212, 190, 152, 0.7); +} +.budgie-polkit-dialog .failure { + color: #ea6962; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 4px 12px; + border-image: none; + box-shadow: none; + background-color: transparent; +} +.budgie-run-dialog list { + padding: 4px 0; +} +.budgie-run-dialog list .dim-label { + color: inherit; +} +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.budgie-run-dialog scrollbar.right, .budgie-run-dialog scrollbar.bottom { + border-bottom-right-radius: 6px; +} +.budgie-run-dialog scrollbar.left, .budgie-run-dialog scrollbar.bottom { + border-bottom-left-radius: 6px; +} + +/** + * Xfce4 Apps + */ +/** + * xfce4-panel + */ +.xfce4-panel.background { + border: none; + background-color: #1e1c1b; + color: rgba(221, 199, 161, 0.7); + font-weight: 500; +} +.xfce4-panel.background button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; + color: rgba(221, 199, 161, 0.7); + box-shadow: none; + background-color: transparent; +} +.xfce4-panel.background button:drop(active), .xfce4-panel.background button:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.xfce4-panel.background button:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.08); +} +.xfce4-panel.background button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.xfce4-panel.background button:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.3); +} +.xfce4-panel.background button:checked { + color: #ddc7a1; + box-shadow: none; + background-color: rgba(221, 199, 161, 0.12); +} +.xfce4-panel.background button:checked:drop(active), .xfce4-panel.background button:checked:hover { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.xfce4-panel.background button:checked:focus { + box-shadow: none; + background-color: rgba(221, 199, 161, 0.1904); +} +.xfce4-panel.background button:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 0%); +} +.xfce4-panel.background button:checked:disabled { + background-color: rgba(221, 199, 161, 0.12); + color: rgba(221, 199, 161, 0.5); +} +.xfce4-panel.background .tasklist button { + border-image: image(transparent) 0 0 2/0 0 2px; +} +.xfce4-panel.background .tasklist button:checked { + border-image: image(currentcolor) 0 0 2/0 0 2px; +} +.xfce4-panel.background .tasklist button image { + padding: 4px; +} +.xfce4-panel.background frame > border { + border-style: none; + background-color: transparent; +} +.xfce4-panel.background progressbar progress { + background-color: #7c6f64; +} +.xfce4-panel.background progressbar trough { + background-color: rgba(221, 199, 161, 0.2); +} + +wnck-pager:hover { + background-color: rgba(221, 199, 161, 0.08); +} +wnck-pager:active { + background-color: rgba(221, 199, 161, 0.12); +} +wnck-pager:selected { + background-color: #7c6f64; +} + +XfdesktopIconView.view { + border-radius: 6px; + color: #fff; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} +XfdesktopIconView.view:active { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.6); +} +XfdesktopIconView.view .rubberband { + border-radius: 0; +} + +#XfceNotifyWindow { + border-radius: 6px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; + color: #d4be98; +} +#XfceNotifyWindow buttonbox button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +#XfceNotifyWindow buttonbox button:not(:disabled):drop(active), #XfceNotifyWindow buttonbox button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#XfceNotifyWindow buttonbox button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#XfceNotifyWindow buttonbox button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} +#XfceNotifyWindow label#summary { + font-weight: bold; +} +#XfceNotifyWindow label#summary + label { + color: rgba(212, 190, 152, 0.7); +} +#xfwm-tabwin { + padding: 12px; + border-radius: 6px; + -XfwmTabwinWidget-icon-size: 64px; + -XfwmTabwinWidget-preview-size: 64px; +} +/** + * Thunar + */ +.thunar #location-toolbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.thunar #location-toolbar > toolitem > button { + min-width: 24px; + padding: 4px; + border-radius: 9999px; +} +.thunar .shortcuts-pane.frame, +.thunar .standard-view.frame { + border-width: 0; + background-color: transparent; +} +.thunar statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} + +/** + * LightDM GTK+ Greeter + */ +#panel_window { + background-color: rgba(0, 0, 0, 0.3); + color: #fff; +} +#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 { + background-color: rgba(255, 255, 255, 0.12); + color: #fff; +} +#panel_window menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 6px; + box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; + color: #d4be98; +} + +#content_frame { + padding-bottom: 16px; +} + +#buttonbox_frame { + padding-top: 24px; +} +#buttonbox_frame > box, +#buttonbox_frame > buttonbox { + margin: -16px; +} +#buttonbox_frame button:not(:disabled) { + color: #7c6f64; + box-shadow: none; + background-color: transparent; +} +#buttonbox_frame button:not(:disabled):drop(active), #buttonbox_frame button:not(:disabled):hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#buttonbox_frame button:not(:disabled):focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.08); +} +#buttonbox_frame button:not(:disabled):active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 0%); +} + +/** + * Nemo + */ +.nemo-window .primary-toolbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.nemo-window .primary-toolbar stack > box { + margin: -2px; +} +.nemo-window .primary-toolbar button.text-button { + padding-left: 8px; + padding-right: 8px; +} +.nemo-window .primary-toolbar button:not(.text-button):not(.image-button) { + padding-left: 4px; + padding-right: 4px; +} +.nemo-window scrolledwindow.frame { + border-style: none; + background-color: transparent; +} +.nemo-window .nemo-window-pane widget.entry { + border-radius: 6px; + background-color: rgba(212, 190, 152, 0.04); +} +.nemo-window .nemo-window-pane widget.entry:selected { + background-color: rgba(124, 111, 100, 0.6); +} +.places-treeview { + -NemoPlacesTreeView-disk-full-bg-color: #4a463e; + -NemoPlacesTreeView-disk-full-fg-color: #7c6f64; + -NemoPlacesTreeView-disk-full-bar-width: 2px; + -NemoPlacesTreeView-disk-full-bar-radius: 0; + -NemoPlacesTreeView-disk-full-bottom-padding: 1px; + -NemoPlacesTreeView-disk-full-max-length: 80px; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #d4be98; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #d4be98; +/* +widget base background color */ +@define-color theme_bg_color #282828; +/* +text widgets and the like base background color */ +@define-color theme_base_color #282828; +/* +base background color of selections */ +@define-color theme_selected_bg_color #7c6f64; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color rgba(255, 255, 255, 0.87); +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #282828; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(212, 190, 152, 0.5); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #282828; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #d4be98; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #d4be98; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #282828; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #282828; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #7c6f64; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color rgba(255, 255, 255, 0.87); +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(212, 190, 152, 0.5); +/* +widgets main borders color */ +@define-color borders rgba(212, 190, 152, 0.2); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(212, 190, 152, 0.2); +/* +these are pretty self explicative */ +@define-color warning_color #d8a657; +@define-color error_color #ea6962; +@define-color success_color #a9b665; +/* +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 #ddc7a1; +@define-color wm_unfocused_title rgba(221, 199, 161, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.05); +@define-color wm_bg #32302f; +@define-color wm_unfocused_bg #282625; +@define-color xfwm4_title #ddc7a1; +@define-color xfwm4_unfocused_title #a7977c; +/* content view background such as thumbnails view in Photos or Boxes */ +@define-color content_view_bg #282828; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #282828; +/* placeholder for entries */ +@define-color placeholder_text_color #a09176; diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-checked-symbolic.svg new file mode 100644 index 000000000..8067c1124 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-mixed-symbolic.svg new file mode 100644 index 000000000..76e69c9ed --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-unchecked-symbolic.svg new file mode 100644 index 000000000..97dbb89ee --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/cursor-handle-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/cursor-handle-symbolic.svg new file mode 100644 index 000000000..e2a252b5f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/cursor-handle-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-checked-symbolic.svg new file mode 100644 index 000000000..7b82c3ded --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-mixed-symbolic.svg new file mode 100644 index 000000000..55d89167d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-unchecked-symbolic.svg new file mode 100644 index 000000000..6d9755906 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-checked-symbolic.svg new file mode 100644 index 000000000..7ad27d5ed --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-mixed-symbolic.svg new file mode 100644 index 000000000..0f8085030 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-unchecked-symbolic.svg new file mode 100644 index 000000000..bfe0a5618 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-checked-symbolic.svg new file mode 100644 index 000000000..04a9a21eb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-mixed-symbolic.svg new file mode 100644 index 000000000..31aac91bb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-unchecked-symbolic.svg new file mode 100644 index 000000000..f87038196 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-3.0/icons/small-radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png new file mode 100644 index 000000000..6980cd327 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png new file mode 100644 index 000000000..65fdef591 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png new file mode 100644 index 000000000..a1c4353a3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png new file mode 100644 index 000000000..22f4916fb Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png new file mode 100644 index 000000000..451fe491d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png new file mode 100644 index 000000000..414de45a9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider.png new file mode 100644 index 000000000..61f0d7d20 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider@2.png new file mode 100644 index 000000000..b7f823ae6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-after-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png new file mode 100644 index 000000000..0b0efc10b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png new file mode 100644 index 000000000..0fc274bf6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png new file mode 100644 index 000000000..2c9a8c29f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png new file mode 100644 index 000000000..07a1a02a8 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png new file mode 100644 index 000000000..fa74da71f Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png new file mode 100644 index 000000000..29a6ee3f0 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider.png new file mode 100644 index 000000000..d719ed338 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider@2.png new file mode 100644 index 000000000..fd2273d45 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-horz-marks-before-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-dark.png new file mode 100644 index 000000000..187078dbc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-dark@2.png new file mode 100644 index 000000000..1e423ebc2 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled-dark.png new file mode 100644 index 000000000..32dee996d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled-dark@2.png new file mode 100644 index 000000000..e3a2f29c6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled.png new file mode 100644 index 000000000..c89fd30b6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled@2.png new file mode 100644 index 000000000..e53e06fa9 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider.png new file mode 100644 index 000000000..2d2095825 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider@2.png new file mode 100644 index 000000000..530e07d9d Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png new file mode 100644 index 000000000..a16bad236 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png new file mode 100644 index 000000000..27b96fb15 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png new file mode 100644 index 000000000..132c1e870 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png new file mode 100644 index 000000000..354c6dbb6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png new file mode 100644 index 000000000..c3b072482 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png new file mode 100644 index 000000000..2dd27091b Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider.png new file mode 100644 index 000000000..250f616a5 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider@2.png new file mode 100644 index 000000000..48de87544 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-after-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png new file mode 100644 index 000000000..16702d790 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png new file mode 100644 index 000000000..1e4217334 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png new file mode 100644 index 000000000..7e2bcd483 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png new file mode 100644 index 000000000..4faaa4663 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png new file mode 100644 index 000000000..f98b19483 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png new file mode 100644 index 000000000..27d5a3962 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider.png new file mode 100644 index 000000000..971228be1 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider@2.png new file mode 100644 index 000000000..ef45044a7 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/scale-vert-marks-before-slider@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png new file mode 100644 index 000000000..db1019600 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png new file mode 100644 index 000000000..7229282ce Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked.png new file mode 100644 index 000000000..05a03cdd3 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked@2.png new file mode 100644 index 000000000..e3b84e885 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-checked@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png new file mode 100644 index 000000000..8175aeb09 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png new file mode 100644 index 000000000..5effa4b38 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked.png new file mode 100644 index 000000000..bd1a726a6 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png new file mode 100644 index 000000000..9fbc798dc Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/gtk.css b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/gtk.css new file mode 100644 index 000000000..594e4d7a1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/gtk.css @@ -0,0 +1,3539 @@ +@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, #7c6f64 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #7c6f64 100%, transparent 100%); + } +} +flowbox > flowboxchild, gridview > child, +entry > image, +button, modelbutton.flat, spinbutton:not(.vertical) > image, menubar > item, notebook > header > tabs > arrow, notebook > header > tabs > tab, check, +radio, row.activatable, listview > row, expander, calendar > grid > label.day-number, popover.emoji-picker > contents emoji, popover.emoji-completion > contents emoji-completion-row, popover.emoji-completion > contents emoji { + transition-property: all, border-image, background-size, background-image; + transition-duration: 75ms, 225ms, 300ms, 1200ms; + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle, transparent 10%, transparent 10%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} +flowbox > flowboxchild:active, gridview > child:active, +entry > image:active, +button:active, modelbutton.flat:active, spinbutton:not(.vertical) > image:active, menubar > item:active, notebook > header > tabs > arrow:active, notebook > header > tabs > tab:active, check:active, +radio:active, row.activatable:active, listview > row:active, expander:active, calendar > grid > label.day-number:active, popover.emoji-picker > contents emoji:active, popover.emoji-completion > contents emoji-completion-row:active, popover.emoji-completion > contents emoji:active { + transition-duration: 75ms, 225ms, 0ms, 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: 0% 0%; +} + +/** + * Base States + */ +.background { + background-color: #282828; + color: #d4be98; +} + +dnd { + color: #d4be98; +} + +.normal-icons { + -gtk-icon-size: 16px; +} + +.large-icons { + -gtk-icon-size: 32px; +} + +image:disabled { + -gtk-icon-filter: opacity(0.5); +} + +.view > .cell:hover { + background-color: rgba(212, 190, 152, 0.04); +} +.view:disabled { + color: rgba(212, 190, 152, 0.5); +} +.view:selected { + background-color: rgba(124, 111, 100, 0.6); +} +.view > .cell:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} + +textview { + caret-color: #7c6f64; +} +textview > text > selection { + background-color: rgba(124, 111, 100, 0.6); +} +textview > border { + color: rgba(212, 190, 152, 0.7); +} + +iconview > .cell { + border-radius: 6px; +} +iconview > dndtarget:drop(active) { + box-shadow: inset 0 0 0 2px #7c6f64; +} + +rubberband, columnview.view > rubberband, +treeview.view > rubberband { + border: 1px solid #7c6f64; + background-color: rgba(124, 111, 100, 0.24); +} + +flowbox { + padding: 4px; + border-spacing: 4px; +} +flowbox > flowboxchild { + padding: 4px; + border-radius: 6px; +} +flowbox > flowboxchild:drop(active), flowbox > flowboxchild:hover { + background-color: rgba(212, 190, 152, 0.04); +} +flowbox > flowboxchild:focus { + background-color: rgba(212, 190, 152, 0.08); +} +flowbox > flowboxchild:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +flowbox > flowboxchild:selected { + background-color: rgba(124, 111, 100, 0.6); + background-color: rgba(124, 111, 100, 0.6); +} +flowbox > flowboxchild:selected:drop(active), flowbox > flowboxchild:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +flowbox > flowboxchild:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +flowbox > flowboxchild:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +gridview { + padding: 4px; + border-spacing: 4px; +} +gridview > child { + padding: 4px; + border-radius: 6px; +} +gridview > child:drop(active), gridview > child:hover { + background-color: rgba(212, 190, 152, 0.04); +} +gridview > child:focus { + background-color: rgba(212, 190, 152, 0.08); +} +gridview > child:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +gridview > child:selected { + background-color: rgba(124, 111, 100, 0.6); + background-color: rgba(124, 111, 100, 0.6); +} +gridview > child:selected:drop(active), gridview > child:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +gridview > child:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +gridview > child:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +coverflow > cover { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; + color: #d4be98; +} + +.content-view .tile:selected { + background-color: transparent; +} + +label { + caret-color: #7c6f64; +} +label.separator { + color: rgba(212, 190, 152, 0.7); +} +label.error { + color: #ea6962; +} +label > selection { + background-color: rgba(124, 111, 100, 0.6); +} +label:disabled { + color: rgba(212, 190, 152, 0.5); +} +headerbar label:disabled, modelbutton label:disabled, tab label:disabled, button label:disabled { + color: inherit; +} +label.osd { + border-radius: 6px; + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} + +.dim-label { + color: rgba(212, 190, 152, 0.7); +} + +window.assistant .sidebar { + padding: 4px 0; +} +window.assistant .sidebar > label { + min-height: 32px; + padding: 0 12px; + color: rgba(212, 190, 152, 0.5); + font-weight: 500; +} +window.assistant .sidebar > label.highlight { + color: #d4be98; +} + +window.aboutdialog > box > box > image.large-icons { + -gtk-icon-size: 128px; +} + +/** + * Spinner Animation + */ +@keyframes spin { + to { + transform: rotate(1turn); + } +} +spinner { + opacity: 0; + color: #7c6f64; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + transition: opacity 300ms cubic-bezier(0, 0, 0.2, 1); + animation: spin 1s linear infinite; +} +spinner:checked { + opacity: 1; +} +spinner:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * General Typography + */ +.large-title { + font-weight: 400; + font-size: 36pt; +} + +.title-1 { + font-weight: 400; + font-size: 25.5pt; + letter-spacing: 0.1875pt; +} + +.title-2 { + font-weight: 400; + font-size: 18pt; +} + +.title-3 { + font-weight: 500; + font-size: 15pt; + letter-spacing: 0.1125pt; +} + +.title-4 { + font-weight: 400; + font-size: 12pt; + letter-spacing: 0.375pt; +} + +.heading { + font-weight: 500; + font-size: 1em; +} + +.body { + font-weight: 400; + font-size: 1em; +} + +.caption-heading { + font-weight: 500; + font-size: 9pt; + letter-spacing: 1.125pt; +} + +.caption { + font-weight: 400; + font-size: 9pt; + letter-spacing: 0.3pt; +} + +/** + * Text Entries + */ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding: 0 8px; + border-spacing: 4px; + border-radius: 6px 6px 0 0; + 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), #7c6f64 0%, transparent 0%) 2/0 0 0px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #7c6f64; +} +spinbutton:hover:not(.vertical), spinbutton:drop(active):not(.vertical), +entry:hover, +entry:drop(active) { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.0784); +} +spinbutton:focus-within:not(.vertical), +entry:focus-within { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 100%) 2/0 0 2px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton:focus-within:not(.vertical) > text > placeholder, +entry:focus-within > text > placeholder { + opacity: 0; +} +spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton.flat:not(.vertical), +entry.flat { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: transparent; +} +spinbutton:not(.vertical) > text > placeholder, +entry > text > placeholder { + color: rgba(212, 190, 152, 0.7); +} +spinbutton:not(.vertical) > text > selection, +entry > text > selection { + background-color: rgba(124, 111, 100, 0.6); +} +spinbutton:not(.vertical) > text > block-cursor, +entry > text > block-cursor { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +spinbutton:not(.vertical) > image, +entry > image { + min-width: 24px; + min-height: 24px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); + margin-top: 4px; + margin-bottom: 4px; +} +spinbutton:not(.vertical) > image:drop(active), spinbutton:not(.vertical) > image:hover, +entry > image:drop(active), +entry > image:hover { + background-color: rgba(212, 190, 152, 0.08); +} +spinbutton:not(.vertical) > image:focus, +entry > image:focus { + background-color: rgba(212, 190, 152, 0.08); +} +spinbutton:not(.vertical) > image:active, +entry > image:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +spinbutton:not(.vertical) > image:disabled, +entry > image:disabled { + color: rgba(212, 190, 152, 0.5); +} +spinbutton:not(.vertical) > image.left, +entry > image.left { + margin-left: -4px; +} +spinbutton:not(.vertical) > image.right, +entry > image.right { + margin-right: -4px; +} +spinbutton.error:not(.vertical), +entry.error { + 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), #ea6962 0%, transparent 0%) 2/0 0 0px; + box-shadow: inset 0 -1px #ea6962; + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #ea6962; +} +spinbutton.error:focus-within:not(.vertical), +entry.error:focus-within { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ea6962 100%, transparent 100%) 2/0 0 2px; + box-shadow: inset 0 -1px #ea6962; + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton.warning:not(.vertical), +entry.warning { + 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), #d8a657 0%, transparent 0%) 2/0 0 0px; + box-shadow: inset 0 -1px #d8a657; + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #d8a657; +} +spinbutton.warning:focus-within:not(.vertical), +entry.warning:focus-within { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #d8a657 100%, transparent 100%) 2/0 0 2px; + box-shadow: inset 0 -1px #d8a657; + background-color: rgba(212, 190, 152, 0.1168); +} +spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +spinbutton:not(.vertical) > progress > trough > progress, +entry > progress > trough > progress { + margin: 0 -8px; + margin-bottom: -4px; + border-bottom: 2px solid #7c6f64; + background-color: transparent; +} +spinbutton.vertical > text { + border-radius: 6px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; + color: #d4be98; + caret-color: #7c6f64; +} +spinbutton.vertical > text:focus-within { + border-image: none; + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +spinbutton.vertical > text:drop(active) { + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +spinbutton.vertical > text:disabled { + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +spinbutton.vertical > text.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #ea6962; + color: #000; + caret-color: #000; +} +spinbutton.vertical > text.error:focus-within { + border-image: none; + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +spinbutton.vertical > text.error:disabled { + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +spinbutton.vertical > text.error image { + color: rgba(0, 0, 0, 0.7); +} +spinbutton.vertical > text.error image:hover, spinbutton.vertical > text.error image:active { + color: #000; +} +spinbutton.vertical > text.error image:disabled { + color: rgba(0, 0, 0, 0.5); +} +spinbutton.vertical > text.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #d8a657; + color: #000; + caret-color: #000; +} +spinbutton.vertical > text.warning:focus-within { + border-image: none; + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +spinbutton.vertical > text.warning:disabled { + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: rgba(212, 190, 152, 0.5); +} +spinbutton.vertical > text.warning image { + color: rgba(0, 0, 0, 0.7); +} +spinbutton.vertical > text.warning image:hover, spinbutton.vertical > text.warning image:active { + color: #000; +} +spinbutton.vertical > text.warning image:disabled { + color: rgba(0, 0, 0, 0.5); +} + +treeview entry, treeview entry.flat { + background-color: #282828; +} +treeview entry, treeview entry:focus-within, treeview entry.flat, treeview entry.flat:focus-within { + border-image: none; + box-shadow: none; +} + +.entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: #d4be98; +} +.entry-tag:hover { + background-image: image(rgba(212, 190, 152, 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; + color: rgba(212, 190, 152, 0.7); +} + +/** + * Buttons + */ +@keyframes needs-attention { + from { + background-image: radial-gradient(farthest-side, #7c6f64 0%, transparent 0%); + } + to { + background-image: radial-gradient(farthest-side, #7c6f64 100%, transparent 100%); + } +} +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 6px; + background-color: #3C3836; + color: #d4be98; + font-weight: 500; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; +} +button:drop(active), +button:hover { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #423d3a; +} +button:focus { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #48433e; +} +button:active { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +button:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button:checked { + color: #7c6f64; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #443f3c; +} +button:checked:drop(active), +button:checked:hover { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #46413e; +} +button:checked:focus { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #48433f; +} +button:checked:active { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +button:checked:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.1904); + color: rgba(212, 190, 152, 0.5); +} +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} +button.image-button { + min-width: 24px; + padding: 4px; + border-radius: 9999px; +} +button.text-button.image-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; + border-radius: 6px; +} +button.text-button.image-button image:first-child { + margin-left: -4px; + margin-right: 8px; +} +button.text-button.image-button image:last-child { + margin-left: 8px; + margin-right: -4px; +} +frame button, +.frame button, popover button { + background-color: transparent; + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.3); + background-color: transparent; +} +frame button:drop(active), +.frame button:drop(active), popover button:drop(active), frame button:hover, +.frame button:hover, popover button:hover { + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); +} +frame button:focus, +.frame button:focus, popover button:focus { + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.08); +} +frame button:active, +.frame button:active, popover button:active { + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.3); + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} + +button.sidebar-button, +pathbar.linked:not(.vertical) > button, spinbutton.vertical button, spinbutton:not(.vertical) > button, combobox > .linked:not(.vertical) > button:not(:only-child), infobar.info > revealer > box button, infobar.question > revealer > box button, filechooser #pathbarbox > stack > box > button, window.dialog.message .dialog-action-area > button, .app-notification button, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action), popover.menu button.model, .titlebar button:not(.suggested-action):not(.destructive-action), .toolbar button, +button.flat { + background-color: transparent; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +button.sidebar-button:drop(active), +pathbar.linked:not(.vertical) > button:drop(active), spinbutton.vertical button:drop(active), spinbutton:not(.vertical) > button:drop(active), combobox > .linked:not(.vertical) > button:drop(active):not(:only-child), infobar.info > revealer > box button:drop(active), infobar.question > revealer > box button:drop(active), filechooser #pathbarbox > stack > box > button:drop(active), window.dialog.message .dialog-action-area > button:drop(active), .app-notification button:drop(active), actionbar > revealer > box button:drop(active):not(.suggested-action):not(.destructive-action), popover.menu button.model:drop(active), .titlebar button:drop(active):not(.suggested-action):not(.destructive-action), .toolbar button:drop(active), +button.flat:drop(active), button.sidebar-button:hover, +pathbar.linked:not(.vertical) > button:hover, spinbutton.vertical button:hover, spinbutton:not(.vertical) > button:hover, combobox > .linked:not(.vertical) > button:hover:not(:only-child), infobar.info > revealer > box button:hover, infobar.question > revealer > box button:hover, filechooser #pathbarbox > stack > box > button:hover, window.dialog.message .dialog-action-area > button:hover, .app-notification button:hover, actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action), popover.menu button.model:hover, .titlebar button:hover:not(.suggested-action):not(.destructive-action), .toolbar button:hover, +button.flat:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +button.sidebar-button:focus, +pathbar.linked:not(.vertical) > button:focus, spinbutton.vertical button:focus, spinbutton:not(.vertical) > button:focus, combobox > .linked:not(.vertical) > button:focus:not(:only-child), infobar.info > revealer > box button:focus, infobar.question > revealer > box button:focus, filechooser #pathbarbox > stack > box > button:focus, window.dialog.message .dialog-action-area > button:focus, .app-notification button:focus, actionbar > revealer > box button:focus:not(.suggested-action):not(.destructive-action), popover.menu button.model:focus, .titlebar button:focus:not(.suggested-action):not(.destructive-action), .toolbar button:focus, +button.flat:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +button.sidebar-button:active, +pathbar.linked:not(.vertical) > button:active, spinbutton.vertical button:active, spinbutton:not(.vertical) > button:active, combobox > .linked:not(.vertical) > button:active:not(:only-child), infobar.info > revealer > box button:active, infobar.question > revealer > box button:active, filechooser #pathbarbox > stack > box > button:active, window.dialog.message .dialog-action-area > button:active, .app-notification button:active, actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action), popover.menu button.model:active, .titlebar button:active:not(.suggested-action):not(.destructive-action), .toolbar button:active, +button.flat:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +button.sidebar-button:disabled, +pathbar.linked:not(.vertical) > button:disabled, spinbutton.vertical button:disabled, spinbutton:not(.vertical) > button:disabled, combobox > .linked:not(.vertical) > button:disabled:not(:only-child), infobar.info > revealer > box button:disabled, infobar.question > revealer > box button:disabled, filechooser #pathbarbox > stack > box > button:disabled, window.dialog.message .dialog-action-area > button:disabled, .app-notification button:disabled, actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action), popover.menu button.model:disabled, .titlebar button:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:disabled, +button.flat:disabled { + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} + +combobox > .linked:not(.vertical) > button:checked:not(:only-child), infobar.info > revealer > box button:checked, infobar.question > revealer > box button:checked, filechooser #pathbarbox > stack > box > button:checked, window.dialog.message .dialog-action-area > button:checked, .app-notification button:checked, actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked, .titlebar button:checked:not(.suggested-action):not(.destructive-action), .toolbar button:checked, +button.flat:checked { + color: #7c6f64; + box-shadow: none; + background-color: rgba(124, 111, 100, 0.12); +} +combobox > .linked:not(.vertical) > button:checked:drop(active):not(:only-child), infobar.info > revealer > box button:checked:drop(active), infobar.question > revealer > box button:checked:drop(active), filechooser #pathbarbox > stack > box > button:checked:drop(active), window.dialog.message .dialog-action-area > button:checked:drop(active), .app-notification button:checked:drop(active), actionbar > revealer > box button:checked:drop(active):not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:drop(active), .titlebar button:checked:drop(active):not(.suggested-action):not(.destructive-action), .toolbar button:checked:drop(active), +button.flat:checked:drop(active), combobox > .linked:not(.vertical) > button:checked:hover:not(:only-child), infobar.info > revealer > box button:checked:hover, infobar.question > revealer > box button:checked:hover, filechooser #pathbarbox > stack > box > button:checked:hover, window.dialog.message .dialog-action-area > button:checked:hover, .app-notification button:checked:hover, actionbar > revealer > box button:checked:hover:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:hover, .titlebar button:checked:hover:not(.suggested-action):not(.destructive-action), .toolbar button:checked:hover, +button.flat:checked:hover { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +combobox > .linked:not(.vertical) > button:checked:focus:not(:only-child), infobar.info > revealer > box button:checked:focus, infobar.question > revealer > box button:checked:focus, filechooser #pathbarbox > stack > box > button:checked:focus, window.dialog.message .dialog-action-area > button:checked:focus, .app-notification button:checked:focus, actionbar > revealer > box button:checked:focus:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:focus, .titlebar button:checked:focus:not(.suggested-action):not(.destructive-action), .toolbar button:checked:focus, +button.flat:checked:focus { + box-shadow: none; + background-color: rgba(124, 111, 100, 0.1904); +} +combobox > .linked:not(.vertical) > button:checked:active:not(:only-child), infobar.info > revealer > box button:checked:active, infobar.question > revealer > box button:checked:active, filechooser #pathbarbox > stack > box > button:checked:active, window.dialog.message .dialog-action-area > button:checked:active, .app-notification button:checked:active, actionbar > revealer > box button:checked:active:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:active, .titlebar button:checked:active:not(.suggested-action):not(.destructive-action), .toolbar button:checked:active, +button.flat:checked:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), infobar.info > revealer > box button:checked:disabled, infobar.question > revealer > box button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, window.dialog.message .dialog-action-area > button:checked:disabled, .app-notification button:checked:disabled, actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action), popover.menu button.model:checked:disabled, .titlebar button:checked:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:checked:disabled, +button.flat:checked:disabled { + color: rgba(212, 190, 152, 0.5); +} + +infobar.info > revealer > box button.text-button, infobar.question > revealer > box button.text-button, filechooser #pathbarbox > stack > box > button.text-button, window.dialog.message .dialog-action-area > button.text-button, .app-notification button.text-button, actionbar > revealer > box button.text-button:not(.suggested-action):not(.destructive-action), popover.menu button.text-button.model, .titlebar button.text-button:not(.suggested-action):not(.destructive-action), .toolbar button.text-button, +button.flat.text-button { + min-width: 48px; + padding-left: 8px; + padding-right: 8px; +} +infobar.info > revealer > box button.text-button.image-button, infobar.question > revealer > box button.text-button.image-button, filechooser #pathbarbox > stack > box > button.text-button.image-button, window.dialog.message .dialog-action-area > button.text-button.image-button, .app-notification button.text-button.image-button, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action), popover.menu button.text-button.image-button.model, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action), .toolbar button.text-button.image-button, +button.flat.text-button.image-button { + min-width: 24px; + padding: 4px; +} +infobar.info > revealer > box button.text-button.image-button label:first-child, infobar.question > revealer > box button.text-button.image-button label:first-child, filechooser #pathbarbox > stack > box > button.text-button.image-button label:first-child, window.dialog.message .dialog-action-area > button.text-button.image-button label:first-child, .app-notification button.text-button.image-button label:first-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, popover.menu button.text-button.image-button.model label:first-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, .toolbar button.text-button.image-button label:first-child, +button.flat.text-button.image-button label:first-child { + margin-left: 8px; +} +infobar.info > revealer > box button.text-button.image-button label:last-child, infobar.question > revealer > box button.text-button.image-button label:last-child, filechooser #pathbarbox > stack > box > button.text-button.image-button label:last-child, window.dialog.message .dialog-action-area > button.text-button.image-button label:last-child, .app-notification button.text-button.image-button label:last-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, popover.menu button.text-button.image-button.model label:last-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, .toolbar button.text-button.image-button label:last-child, +button.flat.text-button.image-button label:last-child { + margin-right: 8px; +} +infobar.info > revealer > box .linked:not(.vertical) > button:not(:only-child), infobar.question > revealer > box .linked:not(.vertical) > button:not(:only-child), filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:not(:only-child), window.dialog.message .dialog-action-area.linked:not(.vertical) > button:not(:only-child), .app-notification .linked:not(.vertical) > button:not(:only-child), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.menu .linked:not(.vertical) > button.model:not(:only-child), .titlebar .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), .toolbar .linked:not(.vertical) > button:not(:only-child), infobar.info > revealer > box .linked.vertical > button:not(:only-child), infobar.question > revealer > box .linked.vertical > button:not(:only-child), filechooser #pathbarbox > stack > box.linked.vertical > button:not(:only-child), window.dialog.message .dialog-action-area.linked.vertical > button:not(:only-child), .app-notification .linked.vertical > button:not(:only-child), actionbar > revealer > box .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.menu .linked.vertical > button.model:not(:only-child), .titlebar .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), .toolbar .linked.vertical > button:not(:only-child), +.linked:not(.vertical) > button.flat:not(:only-child), +.linked.vertical > button.flat:not(:only-child) { + border-radius: 6px; +} +infobar.info > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.question > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), window.dialog.message .dialog-action-area.linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .app-notification .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.menu .linked:not(.vertical) > button.model:not(:only-child).image-button:not(.text-button), .titlebar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), .toolbar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.info > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button), infobar.question > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button), filechooser #pathbarbox > stack > box.linked.vertical > button:not(:only-child).image-button:not(.text-button), window.dialog.message .dialog-action-area.linked.vertical > button:not(:only-child).image-button:not(.text-button), .app-notification .linked.vertical > button:not(:only-child).image-button:not(.text-button), actionbar > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.menu .linked.vertical > button.model:not(:only-child).image-button:not(.text-button), .titlebar .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), .toolbar .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.linked:not(.vertical) > button.flat:not(:only-child).image-button:not(.text-button), +.linked.vertical > button.flat:not(:only-child).image-button:not(.text-button) { + border-radius: 9999px; +} + +button.osd { + padding: 8px 12px; +} +button.osd.image-button { + padding: 8px; +} +button.osd:disabled { + opacity: 0; +} +button.suggested-action { + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #7c6f64; +} +button.suggested-action:drop(active), button.suggested-action:hover { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #81756a; +} +button.suggested-action:focus { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #867b70; +} +button.suggested-action:active { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 10%); +} +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button.suggested-action:checked { + background-color: #8c8077; +} +button.suggested-action.flat { + background-color: transparent; +} +button.suggested-action.flat:drop(active), button.suggested-action.flat:hover { + background-color: rgba(124, 111, 100, 0.08); +} +button.suggested-action.flat:focus { + background-color: rgba(124, 111, 100, 0.08); +} +button.suggested-action.flat:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +button.suggested-action.flat:checked { + background-color: rgba(124, 111, 100, 0.12); +} +button.destructive-action { + background-color: #ea6962; + color: #000; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + background-color: #ea6962; +} +button.destructive-action:drop(active), button.destructive-action:hover { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #d7615a; +} +button.destructive-action:focus { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #ce5c56; +} +button.destructive-action:active { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 10%); +} +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); + color: rgba(212, 190, 152, 0.5); +} +button.destructive-action:checked { + background-color: #c55852; +} +button.destructive-action.flat { + background-color: transparent; +} +button.destructive-action.flat:drop(active), button.destructive-action.flat:hover { + background-color: rgba(234, 105, 98, 0.12); +} +button.destructive-action.flat:focus { + background-color: rgba(234, 105, 98, 0.12); +} +button.destructive-action.flat:active { + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 10%); +} +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(212, 190, 152, 0.3); +} +button.destructive-action.flat:checked { + background-color: rgba(234, 105, 98, 0.16); +} +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 { + border-spacing: 6px; +} +button.close, menubutton.circular > button, button.circular { + border-radius: 9999px; +} + +button.sidebar-button, notebook > header > tabs > tab button.flat, spinbutton:not(.vertical) > button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +stacksidebar.sidebar 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.sidebar row.needs-attention > label:dir(rtl), stackswitcher > button.needs-attention > label:dir(rtl), +stackswitcher > button.needs-attention > image:dir(rtl) { + background-position: left 3px; +} + +.linked:not(stackswitcher) { + border-spacing: 4px; +} + +.linked:not(.vertical) > button.radio { + border-radius: 0; +} +.linked:not(.vertical) > button.radio:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.linked:not(.vertical) > button.radio:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +.linked:not(.vertical) > button.radio:not(:first-child) { + margin-left: -4px; +} + +.linked.vertical > button.radio { + border-radius: 0; +} +.linked.vertical > button.radio:first-child { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} +.linked.vertical > button.radio:last-child { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} +.linked.vertical > button.radio:not(:first-child) { + margin-top: -4px; +} + +/* menu buttons */ +modelbutton.flat:drop(active), modelbutton.flat:hover { + background-color: rgba(212, 190, 152, 0.08); +} +modelbutton.flat:focus { + background-color: rgba(212, 190, 152, 0.08); +} +modelbutton.flat:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +modelbutton.flat arrow { + min-width: 16px; + min-height: 16px; + color: rgba(212, 190, 152, 0.7); +} +modelbutton.flat arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +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-width: 24px; + min-height: 24px; + padding: 4px; +} + +menubutton > button > box > arrow { + min-height: 16px; + min-width: 16px; +} +menubutton > button > box > arrow.none { + -gtk-icon-source: -gtk-icontheme("open-menu-symbolic"); +} +menubutton > button > box > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +menubutton > button > box > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +menubutton > button > box > arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} +menubutton > button > box > arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +/** + * Links + */ +link { + color: #7c6f64; +} +link:visited { + color: #d3869b; +} + +button.link { + color: #7c6f64; +} +button.link:drop(active), button.link:hover { + background-color: rgba(124, 111, 100, 0.08); +} +button.link:focus { + background-color: rgba(124, 111, 100, 0.08); +} +button.link:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +button.link:visited { + color: #d3869b; +} +button.link:visited:drop(active), button.link:visited:hover { + background-color: rgba(211, 134, 155, 0.08); +} +button.link:visited:focus { + background-color: rgba(211, 134, 155, 0.08); +} +button.link:visited:active { + background-image: radial-gradient(circle, rgba(211, 134, 155, 0.12) 10%, transparent 10%); +} +button.link > label { + text-decoration-line: underline; +} + +/** + * GtkSpinButton + */ +spinbutton { + font-feature-settings: "tnum"; +} +spinbutton:not(.vertical) > text { + min-width: 32px; +} +spinbutton:not(.vertical) > button { + margin: 4px 0; +} +spinbutton:not(.vertical) > button.up:dir(ltr) { + margin-right: -4px; +} +spinbutton:not(.vertical) > button.up:dir(rtl) { + margin-left: -4px; +} +spinbutton.vertical > text { + min-height: 32px; + min-width: 40px; + padding: 0; +} +spinbutton.vertical > text > selection { + background-color: rgba(124, 111, 100, 0.6); +} +spinbutton.vertical button { + min-height: 32px; + min-width: 40px; + padding: 0; +} +spinbutton.vertical button:focus:not(:hover):not(:active) { + box-shadow: inset 0 0 0 9999px transparent; +} +spinbutton.vertical button.up { + border-radius: 6px 6px 0 0; +} +spinbutton.vertical button.down { + border-radius: 0 0 6px 6px; +} +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} +treeview spinbutton:not(.vertical) > text { + min-height: 0; + padding: 1px 2px; +} + +/** + * ComboBoxes + */ +dropdown arrow, +combobox arrow { + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + transition: -gtk-icon-transform 75ms cubic-bezier(0, 0, 0.2, 1); +} +dropdown button:checked arrow, +combobox button:checked arrow { + color: #7c6f64; + -gtk-icon-transform: rotate(-0.5turn); +} + +dropdown > button > box { + border-spacing: 6px; +} +dropdown > popover.menu > contents { + padding: 0; +} +dropdown > popover.menu > contents listview { + padding: 6px 0; +} +dropdown > popover.menu > contents listview > row { + min-height: 24px; + padding: 4px 8px; +} +dropdown > popover.menu > contents listview > row:selected { + background-color: rgba(212, 190, 152, 0.08); +} + +.dropdown-searchbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.dropdown-searchbar > entry.search { + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +combobox > box > button > box { + border-spacing: 6px; +} +combobox cellview { + margin: -2px; +} +combobox > popover.menu > contents modelbutton { + padding-left: 8px; + padding-right: 8px; +} +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -36px; + padding-right: 32px; +} +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -36px; + padding-left: 32px; +} +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 4px; + padding: 4px; + border-radius: 9999px; +} + +dropdown > button.toggle, +button.combo:only-child { + padding-left: 8px; + padding-right: 8px; + border-radius: 6px 6px 0 0; + font-weight: normal; + 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), #7c6f64 0%, transparent 0%) 2/0 0 0px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.04); + color: #d4be98; + caret-color: #7c6f64; +} +dropdown > button.toggle:focus, +button.combo:only-child:focus { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +dropdown > button.toggle:drop(active), dropdown > button.toggle:hover, +button.combo:only-child:drop(active), +button.combo:only-child:hover { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.0784); +} +dropdown > button.toggle:checked, +button.combo:only-child:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 100%) 2/0 0 2px; + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.3); + background-color: rgba(212, 190, 152, 0.1168); +} +dropdown > button.toggle:disabled, +button.combo:only-child:disabled { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); + background-color: rgba(212, 190, 152, 0.04); + color: rgba(212, 190, 152, 0.5); +} +dropdown > button.toggle arrow, +button.combo:only-child arrow { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +dropdown > button.toggle arrow:disabled, +button.combo:only-child arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} + +/** + * Toolbars + */ +.toolbar { + padding: 4px; + border-spacing: 4px; +} +.toolbar.top { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.toolbar.bottom { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.toolbar.start { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +.toolbar.end { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +.toolbar.osd.left, .toolbar.osd.right, .toolbar.osd.top, .toolbar.osd.bottom { + border-radius: 0; +} +.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: 4px 0; +} +.toolbar.vertical > separator { + margin: 0 4px; +} + +.app-notification, .toolbar.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px; + border-spacing: 4px; + border-radius: 6px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +.app-notification:backdrop, .toolbar.osd:backdrop { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); +} + +.inline-toolbar { + padding: 4px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(212, 190, 152, 0.2); + background-color: #282828; +} + +searchbar > revealer > box { + padding: 4px; + border-spacing: 4px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} + +/** + * Title buttons + */ +windowcontrols { + border-spacing: 4px; +} +windowcontrols:not(:only-child):not(.empty) { + border-image: linear-gradient(to bottom, transparent 12px, rgba(221, 199, 161, 0.2) 12px, rgba(221, 199, 161, 0.2) calc(100% - 12px), transparent calc(100% - 12px)) 1; +} +windowcontrols:not(:only-child):not(.empty).start:dir(ltr), windowcontrols:not(:only-child):not(.empty).end:dir(rtl) { + padding-right: 4px; + border-right: 1px solid; +} +windowcontrols:not(:only-child):not(.empty).start:dir(rtl), windowcontrols:not(:only-child):not(.empty).end:dir(ltr) { + padding-left: 4px; + border-left: 1px solid; +} +/** + * Header bars + */ +.titlebar { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px 6px 0 0; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; + color: #ddc7a1; +} +.titlebar:disabled { + color: rgba(221, 199, 161, 0.5); +} +.titlebar:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +.titlebar:backdrop:disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar box.start, +.titlebar box.end { + border-spacing: 4px; +} +.titlebar .title { + padding-left: 12px; + padding-right: 12px; + font-weight: bold; +} +.titlebar .subtitle { + padding-left: 12px; + padding-right: 12px; + font-size: smaller; +} +.titlebar .subtitle, +.titlebar .dim-label { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(221, 199, 161, 0.7); +} +.titlebar .subtitle:backdrop, +.titlebar .dim-label:backdrop { + color: rgba(221, 199, 161, 0.5); +} +.titlebar headerbar + separator { + background-color: rgba(221, 199, 161, 0.2); +} +.titlebar entry { + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.3); + background-color: rgba(221, 199, 161, 0.04); + color: #ddc7a1; +} +.titlebar entry:disabled { + box-shadow: inset 0 -1px rgba(221, 199, 161, 0.2); + background-color: rgba(221, 199, 161, 0.04); + color: rgba(221, 199, 161, 0.5); +} +.titlebar entry image { + color: rgba(221, 199, 161, 0.7); +} +.titlebar entry image:hover, .titlebar entry image:active { + color: #ddc7a1; +} +.titlebar entry image:disabled { + color: rgba(221, 199, 161, 0.5); +} +.titlebar .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} +.titlebar button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 0%, transparent 0%) 0 0 0/0 0 0px; + background-color: transparent; + color: rgba(221, 199, 161, 0.7); +} +.titlebar button:not(.suggested-action):not(.destructive-action):drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):hover { + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):focus { + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):active { + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 10%); +} +.titlebar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentcolor 100%, transparent 100%) 0 0 2/0 0 2px; + background-color: transparent; + color: #ddc7a1; +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked:drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):checked:hover { + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked:focus { + background-color: rgba(221, 199, 161, 0.08); +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked:active { + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 10%); +} +.titlebar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; + color: rgba(221, 199, 161, 0.5); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(221, 199, 161, 0.5); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(221, 199, 161, 0.3); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(221, 199, 161, 0.7); +} +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(221, 199, 161, 0.3); +} + +.titlebar button.suggested-action:disabled, +.titlebar button.destructive-action:disabled { + background-color: rgba(221, 199, 161, 0.08); + color: rgba(221, 199, 161, 0.5); +} +.titlebar stackswitcher button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 104px; +} +.titlebar .path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; + padding-left: 4px; + padding-right: 4px; +} +.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); + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #7c6f64; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode .subtitle:link { + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.38); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 100%) 0 0 2/0 0 2px; + color: rgba(255, 255, 255, 0.87); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(255, 255, 255, 0.38); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.26); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.6); +} +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.26); +} +.titlebar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} +.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +.titlebar .selection-mode { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #7c6f64; +} +.tiled .titlebar, .tiled-top .titlebar, .tiled-right .titlebar, .tiled-bottom .titlebar, .tiled-left .titlebar, .maximized .titlebar, .fullscreen .titlebar { + border-radius: 0; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} +.titlebar.default-decoration { + min-height: 24px; + padding: 4px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); +} +.tiled .titlebar.default-decoration, .maximized .titlebar.default-decoration, .fullscreen .titlebar.default-decoration { + box-shadow: none; +} +.titlebar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} +.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: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} + +headerbar > windowhandle > box { + min-height: 40px; + padding: 0 4px; + border-spacing: 4px; +} +headerbar > windowhandle > box entry, +headerbar > windowhandle > box spinbutton, +headerbar > windowhandle > box button { + margin-top: 4px; + margin-bottom: 4px; +} +headerbar > windowhandle > box separator.titlebutton { + margin-top: 10px; + margin-bottom: 10px; + background-color: rgba(221, 199, 161, 0.2); +} +headerbar > windowhandle > box switch { + margin-top: 8px; + margin-bottom: 8px; +} +headerbar > windowhandle > box spinbutton button { + margin-top: 0; + margin-bottom: 0; +} +headerbar > windowhandle > box .entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +/** + * Pathbars + */ +pathbar.linked:not(.vertical) > button { + padding-left: 4px; + padding-right: 4px; + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 6px; +} +pathbar.linked:not(.vertical) > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #7c6f64 100%, transparent 100%) 0 0 2/0 0 2px; + color: #d4be98; +} +pathbar.linked:not(.vertical) > button:checked, +pathbar.linked:not(.vertical) > button:checked:disabled { + background-color: transparent; +} +pathbar.linked:not(.vertical) > button label:not(:only-child):first-child { + margin-left: 0; +} +pathbar.linked:not(.vertical) > button label:not(:only-child):last-child { + margin-right: 0; +} +pathbar.linked:not(.vertical) > button.text-button { + min-width: 0; +} +pathbar.linked:not(.vertical) > button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +/** + * Tree Views + */ +columnview.view, +treeview.view { + border-left-color: rgba(212, 190, 152, 0.3); + border-top-color: rgba(212, 190, 152, 0.2); +} +columnview.view.separator, +treeview.view.separator { + min-height: 5px; + color: rgba(212, 190, 152, 0.2); +} +columnview.view:drop(active), +treeview.view:drop(active) { + box-shadow: none; +} +columnview.view > dndtarget:drop(active), +treeview.view > dndtarget:drop(active) { + border-style: solid none; + border-width: 9999px; + border-color: rgba(212, 190, 152, 0.08); +} +columnview.view > dndtarget:drop(active).after, +treeview.view > dndtarget:drop(active).after { + border-top-style: none; +} +columnview.view > dndtarget:drop(active).before, +treeview.view > dndtarget:drop(active).before { + border-bottom-style: none; +} +columnview.view.expander, +treeview.view.expander { + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(212, 190, 152, 0.7); +} +columnview.view.expander:dir(rtl), +treeview.view.expander:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} +columnview.view.expander:checked, +treeview.view.expander:checked { + -gtk-icon-transform: unset; +} +columnview.view.expander:hover, columnview.view.expander:active, +treeview.view.expander:hover, +treeview.view.expander:active { + color: #d4be98; +} +columnview.view.expander:disabled, +treeview.view.expander:disabled { + color: rgba(212, 190, 152, 0.3); +} +columnview.view.progressbar, +treeview.view.progressbar { + border-bottom: 4px solid #7c6f64; + background-color: transparent; +} +columnview.view.progressbar:selected:hover, +treeview.view.progressbar:selected:hover { + background-color: transparent; +} +columnview.view.trough, +treeview.view.trough { + border-bottom: 4px solid rgba(212, 190, 152, 0.2); + background-color: transparent; +} +columnview.view.trough:selected:hover, +treeview.view.trough:selected:hover { + background-color: transparent; +} +columnview.view > header > button, +treeview.view > header > button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); + border-radius: 0; + background-clip: padding-box; + background-color: transparent; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +columnview.view > header > button:drop(active), columnview.view > header > button:hover, +treeview.view > header > button:drop(active), +treeview.view > header > button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.04); +} +columnview.view > header > button:focus, +treeview.view > header > button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +columnview.view > header > button:active, +treeview.view > header > button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +columnview.view > header > button:drop(active):not(:active), columnview.view > header > button:hover:not(:active), +treeview.view > header > button:drop(active):not(:active), +treeview.view > header > button:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +columnview.view > header > button:disabled, +treeview.view > header > button:disabled { + color: rgba(212, 190, 152, 0.3); +} +columnview.view > header > button:last-child, +treeview.view > header > button:last-child { + border-right-style: none; +} +columnview.view > header > button > box > sort-indicator, +treeview.view > header > button > box > sort-indicator { + min-height: 16px; + min-width: 16px; +} +columnview.view > header > button > box > sort-indicator.ascending, +treeview.view > header > button > box > sort-indicator.ascending { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +columnview.view > header > button > box > sort-indicator.descending, +treeview.view > header > button > box > sort-indicator.descending { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +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(212, 190, 152, 0.2); + border-radius: 0; + box-shadow: none; + background-clip: border-box; + color: #7c6f64; +} +columnview.view acceleditor > label, +treeview.view acceleditor > label { + background-color: #7c6f64; +} + +/** + * Menus + */ +menubar { + background-color: #32302f; + color: #ddc7a1; +} +menubar:backdrop { + background-color: #282625; + color: rgba(221, 199, 161, 0.7); +} +.csd menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} +menubar > item { + min-height: 20px; + padding: 4px 8px; + color: rgba(221, 199, 161, 0.7); +} +menubar > item:hover { + background-color: rgba(221, 199, 161, 0.08); +} +menubar > item:focus:not(:hover) { + background-color: rgba(221, 199, 161, 0.08); +} +menubar > item:active { + background-image: radial-gradient(circle, rgba(221, 199, 161, 0.12) 10%, transparent 10%); +} +menubar > item:selected:not(:focus) { + transition: none; + background-color: rgba(221, 199, 161, 0.12); + color: #ddc7a1; +} +menubar > item:disabled { + color: rgba(221, 199, 161, 0.3); +} + +popover.menu > contents { + padding: 6px 0; +} +popover.menu separator { + margin: 6px 0; +} +popover.menu label.title { + min-height: 24px; + padding: 4px 32px; + font-weight: bold; +} +popover.menu modelbutton { + min-height: 22px; + min-width: 40px; + padding: 4px 32px; +} +popover.menu modelbutton:disabled { + color: rgba(212, 190, 152, 0.5); +} +popover.menu modelbutton accelerator { + color: rgba(212, 190, 152, 0.7); +} +popover.menu modelbutton accelerator:dir(ltr) { + margin-left: 24px; + margin-right: -16px; +} +popover.menu modelbutton accelerator:dir(rtl) { + margin-left: -16px; + margin-right: 24px; +} +popover.menu modelbutton:disabled accelerator { + color: rgba(212, 190, 152, 0.3); +} +popover.menu check, popover.menu check:focus, popover.menu check:hover, popover.menu check:active, popover.menu check:disabled, +popover.menu radio, +popover.menu radio:focus, +popover.menu radio:hover, +popover.menu radio:active, +popover.menu radio:disabled { + background-color: transparent; + background-image: none; +} +popover.menu arrow, +popover.menu check, +popover.menu radio { + min-width: 16px; + min-height: 16px; + margin: 0; + padding: 0; +} +popover.menu arrow.left, +popover.menu check.left, +popover.menu radio.left { + margin-left: -24px; + margin-right: 8px; +} +popover.menu arrow.right, +popover.menu check.right, +popover.menu radio.right { + margin-left: 8px; + margin-right: -24px; +} +popover.menu box.inline-buttons { + padding: 0 8px; +} +popover.menu box.circular-buttons { + padding: 4px 32px; +} +popover.menu box.circular-buttons button.circular.image-button.model { + padding: 12px; +} + +/** + * Popovers + */ +popover { + font: initial; +} +popover.background { + background-color: transparent; +} +popover > arrow, +popover > contents { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; + color: #d4be98; +} +popover > arrow:backdrop, +popover > contents:backdrop { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} +popover > arrow { + border-width: 1px; + border-style: solid; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + background-clip: padding-box; +} + +popover > contents { + padding: 8px; + border-radius: 6px; +} +popover > contents > list, +popover > contents .view, +popover > contents > .toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} +popover frame, +popover .frame { + border: 1px solid rgba(212, 190, 152, 0.2); + box-shadow: none; + background-color: transparent; +} +/** + * Notebooks + */ +notebook:focus:focus-visible > header > tabs > tab:checked { + background-color: rgba(124, 111, 100, 0.08); +} +notebook > header.top { + box-shadow: inset 0 -1px rgba(212, 190, 152, 0.2); +} +notebook > header.top > tabs > tab { + box-shadow: inset 0 -2px transparent; +} +notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -2px #7c6f64; +} +notebook > header.bottom { + box-shadow: inset 0 1px rgba(212, 190, 152, 0.2); +} +notebook > header.bottom > tabs > tab { + box-shadow: inset 0 2px transparent; +} +notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 2px #7c6f64; +} +notebook > header.left { + box-shadow: inset -1px 0 rgba(212, 190, 152, 0.2); +} +notebook > header.left > tabs > tab { + box-shadow: inset -2px 0 transparent; +} +notebook > header.left > tabs > tab:checked { + box-shadow: inset -2px 0 #7c6f64; +} +notebook > header.right { + box-shadow: inset 1px 0 rgba(212, 190, 152, 0.2); +} +notebook > header.right > tabs > tab { + box-shadow: inset 2px 0 transparent; +} +notebook > header.right > tabs > tab:checked { + box-shadow: inset 2px 0 #7c6f64; +} +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + border-radius: 0; + color: rgba(212, 190, 152, 0.7); +} +notebook > header > tabs > arrow:drop(active), notebook > header > tabs > arrow:hover { + background-color: rgba(212, 190, 152, 0.04); +} +notebook > header > tabs > arrow:focus { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > arrow:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +notebook > header > tabs > arrow:disabled { + color: rgba(212, 190, 152, 0.3); +} +notebook > header > tabs > tab { + min-height: 24px; + min-width: 24px; + padding: 4px 12px; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +notebook > header > tabs > tab:drop(active), notebook > header > tabs > tab:hover { + background-color: rgba(212, 190, 152, 0.04); +} +notebook > header > tabs > tab:focus { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > tab:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +notebook > header > tabs > tab:disabled { + color: rgba(212, 190, 152, 0.3); +} +notebook > header > tabs > tab:checked { + color: #7c6f64; +} +notebook > header > tabs > tab:checked:drop(active), notebook > header > tabs > tab:checked:hover { + background-color: rgba(124, 111, 100, 0.04); +} +notebook > header > tabs > tab:checked:focus { + background-color: rgba(124, 111, 100, 0.08); +} +notebook > header > tabs > tab:checked:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +notebook > header > tabs > tab:checked:disabled { + color: rgba(212, 190, 152, 0.3); +} +notebook > header > tabs > tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -4px -12px; + padding: 4px 12px; +} +notebook > header > tabs > tab > box:drop(active) { + background-color: rgba(212, 190, 152, 0.08); +} +notebook > header > tabs > tab button.flat:last-child { + margin-left: 4px; + margin-right: -8px; +} +notebook > header > tabs > tab button.flat:first-child { + margin-left: -8px; + margin-right: 4px; +} + +/** + * Scrollbars + */ +scrollbar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-clip: padding-box; +} +scrollbar.top { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.bottom { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.left { + border-right: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar.right { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} +scrollbar > range > trough > slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 10px; + min-height: 10px; + border: 3px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(212, 190, 152, 0.5); +} +scrollbar > range > trough > slider:hover { + background-color: rgba(212, 190, 152, 0.6); +} +scrollbar > range > trough > slider:active { + background-color: rgba(212, 190, 152, 0.7); +} +scrollbar > range > trough > slider:disabled { + background-color: rgba(212, 190, 152, 0.3); +} +scrollbar.horizontal > range > trough > slider { + min-width: 24px; +} +scrollbar.vertical > range > trough > slider { + min-height: 24px; +} +scrollbar > range.fine-tune > trough > slider { + min-width: 4px; + min-height: 4px; +} +scrollbar > range.fine-tune.horizontal > trough > slider { + margin: 3px 0; +} +scrollbar > range.fine-tune.vertical > trough > slider { + margin: 0 3px; +} +scrollbar.overlay-indicator > range:not(.fine-tune) > 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 > slider { + min-width: 4px; + min-height: 4px; + margin: 2px; + border: 1px solid rgba(40, 40, 40, 0.3); +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal > range > trough > slider { + min-width: 24px; +} +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical > range > trough > slider { + min-height: 24px; +} +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: #3C3836; +} + +/** + * Switch + */ +switch { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(212, 190, 152, 0.3); + background-clip: padding-box; + font-size: 0; +} +switch:checked { + background-color: rgba(124, 111, 100, 0.5); +} +switch:disabled { + opacity: 0.5; +} +switch > image { + margin: -8px; + -gtk-icon-transform: scale(0); +} +switch > slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + box-shadow: 0 0 0 10px transparent, 0 0 0 -10px rgba(212, 190, 152, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; +} +switch:hover > slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 0 0 -10px rgba(212, 190, 152, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:focus > slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 0 0 -10px rgba(212, 190, 152, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:active > slider { + box-shadow: 0 0 0 10px rgba(212, 190, 152, 0.08), 0 0 0 10px rgba(212, 190, 152, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:checked > slider { + background-color: #7c6f64; +} +switch:checked:hover > slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 0 0 -10px rgba(124, 111, 100, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:checked:focus > slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 0 0 -10px rgba(124, 111, 100, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +switch:checked:active > slider { + box-shadow: 0 0 0 10px rgba(124, 111, 100, 0.08), 0 0 0 10px rgba(124, 111, 100, 0.12), 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +/** + * Check and Radio items + */ +.view.content-view.check:not(list), +.content-view:not(list) .tile check { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12); +} +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view:not(list) .tile check:hover, +.content-view:not(list) .tile check:active { + -gtk-icon-shadow: 0 2px 3px rgba(0, 0, 0, 0.2), 0 4px 5px rgba(0, 0, 0, 0.14), 0 1px 10px rgba(0, 0, 0, 0.12); +} +.view.content-view.check:not(list), +.content-view:not(list) .tile check { + -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:not(list) .tile check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + border-spacing: 4px; +} +checkbutton.text-button, +radiobutton.text-button { + padding: 4px; +} + +check, +radio { + min-height: 24px; + min-width: 24px; + margin: -8px; + padding: 8px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); +} +check:drop(active), check:hover, +radio:drop(active), +radio:hover { + background-color: rgba(212, 190, 152, 0.08); +} +check:focus, +radio:focus { + background-color: rgba(212, 190, 152, 0.08); +} +check:active, +radio:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #7c6f64; +} +check:checked:drop(active), check:checked:hover, check:indeterminate:drop(active), check:indeterminate:hover, +radio:checked:drop(active), +radio:checked:hover, +radio:indeterminate:drop(active), +radio:indeterminate:hover { + background-color: rgba(124, 111, 100, 0.08); +} +check:checked:focus, check:indeterminate:focus, +radio:checked:focus, +radio:indeterminate:focus { + background-color: rgba(124, 111, 100, 0.08); +} +check:checked:active, check:indeterminate:active, +radio:checked:active, +radio:indeterminate:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +check:disabled, +radio:disabled { + color: rgba(212, 190, 152, 0.3); +} + +check { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-unchecked-symbolic.svg")); +} +check:checked { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-checked-symbolic.svg")); +} +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/checkbox-mixed-symbolic.svg")); +} + +radio { + -gtk-icon-source: -gtk-recolor(url("icons/radio-unchecked-symbolic.svg")); + border-image-slice: 20; + border-image-width: 20px; + border-image-source: radial-gradient(circle, #7c6f64 0%, transparent 0%); +} +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/radio-mixed-symbolic.svg")); +} +radio:checked:not(:indeterminate) { + border-image-source: radial-gradient(circle, #7c6f64 4.5px, transparent 5px); +} +radio:checked:not(:indeterminate):disabled { + border-image-source: radial-gradient(circle, rgba(212, 190, 152, 0.3) 4.5px, transparent 5px); +} + +popover.menu modelbutton check { + min-height: 16px; + min-width: 16px; + border-radius: 6px; + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-unchecked-symbolic.svg")); +} +popover.menu modelbutton check:checked { + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-checked-symbolic.svg")); +} +popover.menu modelbutton check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/small-checkbox-mixed-symbolic.svg")); +} + +popover.menu modelbutton radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-unchecked-symbolic.svg")); +} +popover.menu modelbutton radio:checked { + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-checked-symbolic.svg")); +} +popover.menu modelbutton radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("icons/small-radio-mixed-symbolic.svg")); +} + +treeview.view check, +treeview.view radio { + padding: 0; + color: rgba(212, 190, 152, 0.7); +} +treeview.view check:checked, treeview.view check:indeterminate, +treeview.view radio:checked, +treeview.view radio:indeterminate { + color: #7c6f64; +} +treeview.view check:disabled, +treeview.view radio:disabled { + color: rgba(212, 190, 152, 0.3); +} +treeview.view check, treeview.view check:hover, treeview.view check:selected, treeview.view check:selected:hover, +treeview.view radio, +treeview.view radio:hover, +treeview.view radio:selected, +treeview.view radio:selected:hover { + background-color: transparent; +} + +treeview.view radio:checked { + -gtk-icon-source: -gtk-recolor(url("icons/radio-checked-symbolic.svg")); + border-image: none; +} + +/** + * GtkScale + */ +scale { + min-height: 2px; + min-width: 2px; +} +scale.horizontal { + padding: 15px 12px; +} +scale.vertical { + padding: 12px 15px; +} +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 14px; + padding-bottom: 14px; +} +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 14px; + padding-right: 14px; +} +scale.fine-tune > trough > slider { + margin: -14px; +} +scale > trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(212, 190, 152, 0.3); +} +scale > trough:disabled { + background-color: rgba(212, 190, 152, 0.2); +} +scale > trough > highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); + background-image: image(#7c6f64); +} +scale > trough > highlight:disabled { + background-color: #282828; + background-image: image(rgba(212, 190, 152, 0.3)); +} +scale > trough > fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(212, 190, 152, 0.3); +} +scale > trough > fill:disabled { + background-color: transparent; +} +scale > 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-width: 32px; + min-height: 32px; + margin: -15px; + border-radius: 50%; + background-repeat: no-repeat; + background-position: center; + background-size: auto, 1000% 1000%; + color: #7c6f64; +} +scale > trough > slider { + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 10%); +} +scale > trough > slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 10%); +} +scale > trough > slider:hover { + background-color: rgba(124, 111, 100, 0.08); +} +scale > trough > slider:focus { + background-color: rgba(124, 111, 100, 0.08); +} +scale > trough > 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-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); + background-size: auto, 0% 0%; +} +scale > marks, +scale > value { + color: rgba(212, 190, 152, 0.7); +} +scale > value { + font-feature-settings: "tnum"; +} +scale indicator { + background-color: rgba(212, 190, 152, 0.3); +} +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 { + 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 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, transparent 10%, transparent 10%); +} +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")), radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +scale.color { + min-height: 0; + min-width: 0; +} +scale.color.horizontal:dir(ltr), scale.color.horizontal:dir(rtl) { + padding: 0 0 12px 0; +} +scale.color.horizontal:dir(ltr) slider, scale.color.horizontal:dir(rtl) slider { + margin-bottom: -24px; + margin-top: 8px; +} +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} +scale.color.vertical:dir(ltr) slider { + margin-left: -24px; + margin-right: 8px; +} +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} +scale.color.vertical:dir(rtl) slider { + margin-right: -24px; + margin-left: 8px; +} + +/** + * Progress bars + */ +progressbar { + color: rgba(212, 190, 152, 0.7); + font-size: smaller; + font-feature-settings: "tnum"; +} +progressbar > trough { + background-color: rgba(212, 190, 152, 0.2); +} +progressbar > trough > progress { + background-color: #7c6f64; +} +progressbar.horizontal > trough { + min-width: 150px; +} +progressbar.horizontal > trough, +progressbar.horizontal > trough > progress { + min-height: 4px; +} +progressbar.vertical > trough { + min-height: 80px; +} +progressbar.vertical > trough, +progressbar.vertical > trough > progress { + min-width: 4px; +} +progressbar > trough.empty > progress { + all: unset; +} + +/** + * Level Bar + */ +levelbar.horizontal > trough > block { + min-height: 4px; +} +levelbar.horizontal.discrete > trough > block { + min-width: 32px; +} +levelbar.horizontal.discrete > trough > block:not(:last-child) { + margin-right: 2px; +} +levelbar.vertical > trough > block { + min-width: 4px; +} +levelbar.vertical.discrete > trough > block { + min-height: 32px; +} +levelbar.vertical.discrete > trough > block:not(:last-child) { + margin-bottom: 2px; +} +levelbar > trough > block.low { + background-color: #d8a657; +} +levelbar > trough > block.high, levelbar > trough > block:not(.empty) { + background-color: #7c6f64; +} +levelbar > trough > block.full { + background-color: #a9b665; +} +levelbar > trough > block.empty { + background-color: rgba(212, 190, 152, 0.2); +} + +/** + * Print dialog + */ +window.dialog.print paper { + border-radius: 6px; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: #d4be98; +} +window.dialog.print .dialog-action-box { + margin: 12px; +} + +/** + * Frames + */ +frame, +.frame { + border-radius: 6px; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: #d4be98; +} +frame > label { + margin: 4px; +} + +statusbar { + padding: 6px 10px; +} + +actionbar > revealer > box { + padding: 4px; + border-spacing: 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +actionbar > revealer > box .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 6px 6px 0 0; +} + +overshoot.top { + background-image: radial-gradient(farthest-side at top, rgba(124, 111, 100, 0.24) 99%, rgba(124, 111, 100, 0) 100%); + background-size: 200% 75%; + background-repeat: no-repeat; + background-position: top; +} +overshoot.bottom { + background-image: radial-gradient(farthest-side at bottom, rgba(124, 111, 100, 0.24) 99%, rgba(124, 111, 100, 0) 100%); + background-size: 200% 75%; + background-repeat: no-repeat; + background-position: bottom; +} +overshoot.left { + background-image: radial-gradient(farthest-side at left, rgba(124, 111, 100, 0.24) 99%, rgba(124, 111, 100, 0) 100%); + background-size: 75% 200%; + background-repeat: no-repeat; + background-position: left; +} +overshoot.right { + background-image: radial-gradient(farthest-side at right, rgba(124, 111, 100, 0.24) 99%, rgba(124, 111, 100, 0) 100%); + background-size: 75% 200%; + background-repeat: no-repeat; + background-position: right; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(212, 190, 152, 0.2); +} +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(212, 190, 152, 0.2); +} + +button.font > box > box > separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/** + * Lists + */ +listview > row, +list > row { + padding: 2px; +} +listview > row.expander, +list > row.expander { + padding: 0; +} +listview > row.expander .row-header, +list > row.expander .row-header { + padding: 2px; +} +listview.separators:not(.horizontal) > row:not(:first-child), +list.separators:not(.horizontal) > row:not(:first-child) { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +listview.separators.horizontal > row:not(:first-child), +list.separators.horizontal > row:not(:first-child) { + border-left: 1px solid rgba(212, 190, 152, 0.2); +} + +row { + background-clip: padding-box; +} +row.activatable:drop(active), row.activatable:hover { + background-color: rgba(212, 190, 152, 0.04); +} +row.activatable:focus { + background-color: rgba(212, 190, 152, 0.08); +} +row.activatable:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +row.activatable:drop(active):not(:active), row.activatable:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +row.activatable.has-open-popup { + background-color: rgba(212, 190, 152, 0.12); +} +row:selected { + background-color: rgba(124, 111, 100, 0.6); + background-color: rgba(124, 111, 100, 0.6); +} +row:selected:drop(active), row:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +row:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +row:selected.has-open-popup { + background-color: rgba(124, 111, 100, 0.648); +} + +listview > row:drop(active), listview > row:hover { + background-color: rgba(212, 190, 152, 0.04); +} +listview > row:focus { + background-color: rgba(212, 190, 152, 0.08); +} +listview > row:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +listview > row:drop(active):not(:active), listview > row:hover:not(:active) { + transition-property: all, border-image, background-size, background-image, background-color; + transition-duration: 75ms, 225ms, 300ms, 1200ms, 0ms; +} +listview:selected { + background-color: rgba(124, 111, 100, 0.6); + background-color: rgba(124, 111, 100, 0.6); +} +listview:selected:drop(active), listview:selected:hover { + background-color: rgba(124, 111, 100, 0.616); +} +listview:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +listview:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +columnview > listview > row { + padding: 0; +} +columnview > listview > row > cell { + min-height: 24px; + padding: 4px 6px; +} +columnview > listview > row > cell:not(:last-child) { + border-right: 1px solid transparent; +} +columnview.column-separators > listview > row > cell { + border-right-color: rgba(212, 190, 152, 0.2); +} +columnview.data-table > listview > row > cell { + padding-top: 2px; + padding-bottom: 2px; +} + +.rich-list > row { + padding: 12px; + min-height: 32px; +} +.rich-list > row > box { + border-spacing: 12px; +} + +/** + * App Notifications + */ +.app-notification { + margin: 8px; + border-style: none; +} +.app-notification button.text-button:not(:disabled) { + color: #7c6f64; +} +.app-notification button.text-button:not(:disabled):drop(active), .app-notification button.text-button:not(:disabled):hover { + background-color: rgba(124, 111, 100, 0.08); +} +.app-notification button.text-button:not(:disabled):focus { + background-color: rgba(124, 111, 100, 0.08); +} +.app-notification button.text-button:not(:disabled):active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +/** + * Expanders + */ +expander { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + padding: 4px; + border-radius: 9999px; + color: rgba(212, 190, 152, 0.7); + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} +expander:drop(active), expander:hover { + background-color: rgba(212, 190, 152, 0.08); +} +expander:focus { + background-color: rgba(212, 190, 152, 0.08); +} +expander:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +expander:disabled { + color: rgba(212, 190, 152, 0.3); +} +expander:checked:dir(ltr) { + -gtk-icon-transform: rotate(-180deg); +} +expander:checked:dir(rtl) { + -gtk-icon-transform: rotate(180deg); +} + +indent { + min-width: 16px; + min-height: 16px; + padding: 4px; +} + +expander-widget:focus > box > title > expander { + box-shadow: inset 0 0 0 9999px rgba(212, 190, 152, 0.08); +} +expander-widget > box > title:drop(active) > expander, +expander-widget > box > title:hover > expander { + box-shadow: inset 0 0 0 9999px rgba(212, 190, 152, 0.08); +} +expander-widget > box > title:active > expander { + transition-duration: 75ms, 225ms, 0ms, 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: 0% 0%; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} + +/** + * Calendar + */ +calendar { + border-radius: 6px; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #282828; + color: #d4be98; +} +calendar:disabled { + color: rgba(212, 190, 152, 0.5); +} +calendar > header { + padding: 4px; + border-spacing: 4px; + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +calendar > header > button.image-button { + padding: 0; + min-width: 28px; + min-height: 28px; + border-radius: 9999px; + background-color: transparent; + color: rgba(212, 190, 152, 0.7); + box-shadow: none; + background-color: transparent; +} +calendar > header > button.image-button:drop(active), calendar > header > button.image-button:hover { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +calendar > header > button.image-button:focus { + box-shadow: none; + background-color: rgba(212, 190, 152, 0.08); +} +calendar > header > button.image-button:active { + box-shadow: none; + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +calendar > header > button.image-button:disabled { + color: rgba(212, 190, 152, 0.3); +} +calendar > grid { + padding: 4px; + border-spacing: 4px; +} +calendar > grid > label { + padding: 0; + min-width: 28px; + min-height: 28px; + border-radius: 9999px; +} +calendar > grid > label.day-name, +calendar > grid > label.week-number { + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +calendar > grid > label.day-number:drop(active), calendar > grid > label.day-number:hover { + background-color: rgba(212, 190, 152, 0.08); +} +calendar > grid > label.day-number:focus { + background-color: rgba(212, 190, 152, 0.08); +} +calendar > grid > label.day-number:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +calendar > grid > label.day-number.today { + box-shadow: inset 0 0 0 1px rgba(212, 190, 152, 0.7); +} +calendar > grid > label.day-number.other-month { + color: rgba(212, 190, 152, 0.3); +} +calendar > grid > label.day-number:selected { + background-color: rgba(124, 111, 100, 0.6); + box-shadow: inset 0 0 0 1px transparent; + background-color: rgba(124, 111, 100, 0.6); +} +calendar > grid > label.day-number:selected:drop(active), calendar > grid > label.day-number:selected:hover { + background-color: rgba(124, 111, 100, 0.632); +} +calendar > grid > label.day-number:selected:focus { + background-color: rgba(124, 111, 100, 0.632); +} +calendar > grid > label.day-number:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +/** + * Dialogs + */ +window.dialog.message.csd.background { + min-width: 280px; + border-radius: 6px; + background-color: #3C3836; +} +window.dialog.message > .titlebar { + min-height: 24px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: transparent; + color: #d4be98; +} +window.dialog.message > .titlebar:backdrop { + background-color: transparent; + color: rgba(212, 190, 152, 0.7); +} +window.dialog.message > box.dialog-vbox.vertical { + border-spacing: 20px; +} +window.dialog.message > box.dialog-vbox.vertical > box.vertical > box.horizontal { + margin: 0 -6px; +} +window.dialog.message label.title { + font-weight: 500; + font-size: 15pt; + letter-spacing: 0.1125pt; +} +window.dialog.message label.title + label { + color: rgba(212, 190, 152, 0.7); +} +window.dialog.message list, +window.dialog.message .view { + background-color: transparent; +} +window.dialog.message .dialog-action-area > button:not(:disabled) { + color: #7c6f64; +} +window.dialog.message .dialog-action-area > button:not(:disabled):drop(active), window.dialog.message .dialog-action-area > button:not(:disabled):hover { + background-color: rgba(124, 111, 100, 0.08); +} +window.dialog.message .dialog-action-area > button:not(:disabled):focus { + background-color: rgba(124, 111, 100, 0.08); +} +window.dialog.message .dialog-action-area > button:not(:disabled):active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +window.dialog.message .dialog-action-area > button.suggested-action:not(:disabled) { + background-color: transparent; +} +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled) { + background-color: transparent; + color: #ea6962; +} +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled):drop(active), window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled):hover { + background-color: rgba(234, 105, 98, 0.12); +} +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled):focus { + background-color: rgba(234, 105, 98, 0.12); +} +window.dialog.message .dialog-action-area > button.destructive-action:not(:disabled):active { + background-image: radial-gradient(circle, rgba(234, 105, 98, 0.16) 10%, transparent 10%); +} + +.dialog-action-area { + padding: 4px; + border-spacing: 4px; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +filechooser #pathbarbox { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +filechooser #pathbarbox > stack > box > button { + border-radius: 9999px; +} + +filechooserbutton > button > box { + border-spacing: 6px; +} + +/** + * Sidebar + */ +.sidebar { + border-style: none; +} +.sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) { + border-right: 1px solid rgba(212, 190, 152, 0.2); + border-left-style: none; +} + +.sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { + border-left: 1px solid rgba(212, 190, 152, 0.2); + border-right-style: none; +} + +paned .sidebar:dir(rtl):not(:dir(ltr)), paned .sidebar:dir(ltr):not(:dir(rtl)) { + border-style: none; +} + +stacksidebar.sidebar list { + padding: 4px; +} +stacksidebar.sidebar list.separators:not(.horizontal) > row:not(:first-child) { + border-top-style: none; +} +stacksidebar.sidebar row { + min-height: 32px; + padding: 0 2px; + border-radius: 6px; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +stacksidebar.sidebar row:selected { + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); +} +stacksidebar.sidebar row:selected:drop(active), stacksidebar.sidebar row:selected:hover { + background-color: rgba(124, 111, 100, 0.1904); +} +stacksidebar.sidebar row:selected:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +stacksidebar.sidebar row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +stacksidebar.sidebar row + row { + margin-top: 4px; +} +stacksidebar.sidebar row > label { + padding-left: 6px; + padding-right: 6px; +} +/** + * File chooser + */ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(212, 190, 152, 0.7); +} +row image.sidebar-icon:disabled { + color: rgba(212, 190, 152, 0.3); +} + +placessidebar.sidebar list { + padding: 4px 0; +} +placessidebar.sidebar list > separator { + margin: 4px 0; +} +placessidebar.sidebar row { + min-height: 32px; + margin: 0 4px; + padding: 0; + border-radius: 6px; + color: rgba(212, 190, 152, 0.7); + font-weight: 500; +} +placessidebar.sidebar row > revealer { + padding: 0 8px; +} +placessidebar.sidebar row:selected { + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); +} +placessidebar.sidebar row:selected:drop(active), placessidebar.sidebar row:selected:hover { + background-color: rgba(124, 111, 100, 0.1904); +} +placessidebar.sidebar row:selected:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +placessidebar.sidebar row:selected:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +placessidebar.sidebar row:selected image.sidebar-icon { + color: #7c6f64; +} +placessidebar.sidebar row:disabled { + color: rgba(212, 190, 152, 0.5); +} +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:dir(ltr) { + padding-right: 2px; +} +placessidebar.sidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} +placessidebar.sidebar row.sidebar-placeholder-row { + background-color: rgba(212, 190, 152, 0.08); +} +placessidebar.sidebar row.sidebar-new-bookmark-row { + color: #7c6f64; +} +placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #7c6f64; +} + +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 > box { + border-spacing: 4px; +} +placesview > actionbar > revealer > box > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/** + * Paned + */ +paned > separator { + background-clip: content-box; +} +paned > separator.wide { + min-width: 4px; + min-height: 4px; + border: 1px solid rgba(212, 190, 152, 0.2); + background-color: transparent; +} +paned.horizontal > separator:not(.wide) { + margin: 0 -4px; + padding: 0 4px; +} +paned.horizontal > separator.wide { + border-style: none solid; +} +paned.vertical > separator:not(.wide) { + margin: -4px 0; + padding: 4px 0; +} +paned.vertical > separator.wide { + border-style: solid none; +} + +/** + * GtkVideo + */ +video { + background-color: black; +} +video image.osd { + min-width: 64px; + min-height: 64px; + border-radius: 32px; + background-color: black; + color: rgba(255, 255, 255, 0.87); +} +video controls.osd { + padding: 4px; + 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)); + color: rgba(255, 255, 255, 0.87); +} +video controls.osd button { + background-color: transparent; + color: rgba(255, 255, 255, 0.6); +} +video controls.osd button:drop(active), video controls.osd button:hover { + background-color: rgba(255, 255, 255, 0.08); +} +video controls.osd button:focus { + background-color: rgba(255, 255, 255, 0.08); +} +video controls.osd button:active { + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 10%, transparent 10%); +} + +/** + * GtkInfoBar + */ +infobar > revealer > box { + padding: 8px; + border-spacing: 12px; +} +infobar.action:hover > revealer > box { + background-image: image(rgba(212, 190, 152, 0.08)); +} +infobar.info > revealer > box, infobar.question > revealer > box { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +infobar.info > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button.text-button:not(:disabled) { + color: #7c6f64; +} +infobar.info > revealer > box button.text-button:not(:disabled):drop(active), infobar.info > revealer > box button.text-button:not(:disabled):hover, infobar.question > revealer > box button.text-button:not(:disabled):drop(active), infobar.question > revealer > box button.text-button:not(:disabled):hover { + background-color: rgba(124, 111, 100, 0.08); +} +infobar.info > revealer > box button.text-button:not(:disabled):focus, infobar.question > revealer > box button.text-button:not(:disabled):focus { + background-color: rgba(124, 111, 100, 0.08); +} +infobar.info > revealer > box button.text-button:not(:disabled):active, infobar.question > revealer > box button.text-button:not(:disabled):active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} +infobar.warning > revealer > box { + background-color: #d8a657; + color: #000; +} +infobar.warning > revealer > box button.flat { + color: #000; +} +infobar.warning > revealer > box button.flat:drop(active), infobar.warning > revealer > box button.flat:hover { + background-color: rgba(0, 0, 0, 0.08); +} +infobar.warning > revealer > box button.flat:focus { + background-color: rgba(0, 0, 0, 0.08); +} +infobar.warning > revealer > box button.flat:active { + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 10%); +} +infobar.warning > revealer > box link { + color: #000; +} +infobar.error > revealer > box { + background-color: #ea6962; + color: #000; +} +infobar.error > revealer > box button.flat { + color: #000; +} +infobar.error > revealer > box button.flat:drop(active), infobar.error > revealer > box button.flat:hover { + background-color: rgba(0, 0, 0, 0.08); +} +infobar.error > revealer > box button.flat:focus { + background-color: rgba(0, 0, 0, 0.08); +} +infobar.error > revealer > box button.flat:active { + background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 10%, transparent 10%); +} +infobar.error > revealer > box link { + color: #000; +} +/** + * Tooltips + */ +tooltip { + min-height: 24px; + padding: 4px 8px; + border-radius: 6px; +} +tooltip.background { + background-color: rgba(50, 48, 47, 0.9); + color: #ddc7a1; +} +tooltip:not(.csd) { + background-color: rgba(50, 48, 47, 0.9); +} +tooltip > box { + border-spacing: 6px; +} +tooltip .dim-label { + color: rgba(221, 199, 161, 0.7); +} + +/** + * Color Chooser + */ +colorswatch { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} +colorswatch:drop(active), colorswatch.activatable:hover { + box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); +} +colorswatch:disabled { + opacity: 0.5; +} +colorswatch.top { + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} +colorswatch.bottom { + 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.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +colorswatch.dark { + color: #fff; +} +colorswatch.light { + color: #000; +} +colorswatch#add-color-button { + background-color: #3C3836; + color: #d4be98; +} +colorswatch#editor-color-sample { + border-radius: 6px; +} + +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #3C3836; +} +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.05); +} + +/** + * Misc + */ +/** + * Window Decorations + */ +window.csd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 6px 6px 0 0; + border-radius: 6px; + box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 16px 24px 2px transparent, 0 6px 30px 5px transparent; +} +window.csd:backdrop { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 16px 24px 2px transparent, 0 6px 30px 5px transparent; +} +window.ssd { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} +window.solid-csd { + margin: 0; + padding: 2px; + border-radius: 0; + box-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); + background-color: #32302f; +} +window.solid-csd:backdrop { + background-color: #282625; +} +window.maximized, window.fullscreen, window.tiled, window.tiled-top, window.tiled-left, window.tiled-right, window.tiled-bottom { + border-radius: 0; +} + +.monospace { + font-family: monospace; +} + +/** + * Touch Copy & Paste + */ +cursor-handle { + min-width: 24px; + min-height: 24px; + border-radius: 50%; + background-color: #7c6f64; +} +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + border-top-right-radius: 0; +} +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + border-top-left-radius: 0; +} +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + margin-top: 6px; + transform: rotate(45deg); +} + +shortcuts-section { + margin: 20px; +} + +.shortcuts-search-results { + margin: 20px; + border-spacing: 24px; +} + +shortcut { + border-spacing: 6px; +} + +shortcut > .keycap { + min-width: 12px; + min-height: 28px; + padding-left: 8px; + padding-right: 8px; + border-radius: 6px; + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3836; + color: #d4be98; + font-size: smaller; +} + +stackswitcher > button.text-button { + min-width: 100px; +} + +stackswitcher.circular { + border-spacing: 12px; +} +stackswitcher.circular > button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/** + * App Icons + */ +/** + * Emoji + */ +popover.emoji-picker > contents { + padding: 0; +} +popover.emoji-picker > contents emoji { + min-width: 3em; + min-height: 3em; + border-radius: 6px; +} +popover.emoji-picker > contents emoji:drop(active), popover.emoji-picker > contents emoji:hover { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-picker > contents emoji:focus { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-picker > contents emoji:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} + +.emoji-searchbar { + border-bottom: 1px solid rgba(212, 190, 152, 0.2); +} +.emoji-searchbar > entry.search { + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +.emoji-toolbar { + padding: 4px; + border-spacing: 4px; + border-top: 1px solid rgba(212, 190, 152, 0.2); +} +.emoji-toolbar > button.emoji-section:checked { + background-color: rgba(124, 111, 100, 0.12); + color: #7c6f64; + background-color: rgba(124, 111, 100, 0.12); +} +.emoji-toolbar > button.emoji-section:checked:drop(active), .emoji-toolbar > button.emoji-section:checked:hover { + background-color: rgba(124, 111, 100, 0.1904); +} +.emoji-toolbar > button.emoji-section:checked:focus { + background-color: rgba(124, 111, 100, 0.1904); +} +.emoji-toolbar > button.emoji-section:checked:active { + background-image: radial-gradient(circle, rgba(124, 111, 100, 0.12) 10%, transparent 10%); +} + +popover.emoji-completion > contents { + padding: 8px 0; +} +popover.emoji-completion > contents emoji-completion-row { + min-height: 32px; + padding: 0 8px; +} +popover.emoji-completion > contents emoji-completion-row:drop(active), popover.emoji-completion > contents emoji-completion-row:hover { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-completion > contents emoji-completion-row:focus { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-completion > contents emoji-completion-row:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} +popover.emoji-completion > contents emoji-completion-row > box { + border-spacing: 8px; +} +popover.emoji-completion > contents emoji { + border-radius: 6px; +} +popover.emoji-completion > contents emoji:drop(active), popover.emoji-completion > contents emoji:hover { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-completion > contents emoji:focus { + background-color: rgba(212, 190, 152, 0.08); +} +popover.emoji-completion > contents emoji:active { + background-image: radial-gradient(circle, rgba(212, 190, 152, 0.12) 10%, transparent 10%); +} + +popover.entry-completion > contents { + padding: 0; +} +popover.entry-completion > contents treeview.view { + min-height: 32px; + padding: 8px 0; +} +popover.entry-completion > contents treeview.view > .cell { + padding: 0 4px; +} +popover.entry-completion > contents treeview.view > .cell:selected:hover { + background-color: rgba(212, 190, 152, 0.08); +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #d4be98; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #d4be98; +/* +widget base background color */ +@define-color theme_bg_color #282828; +/* +text widgets and the like base background color */ +@define-color theme_base_color #282828; +/* +base background color of selections */ +@define-color theme_selected_bg_color #7c6f64; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color rgba(255, 255, 255, 0.87); +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #282828; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(212, 190, 152, 0.5); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #282828; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #d4be98; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #d4be98; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #282828; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #282828; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #7c6f64; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color rgba(255, 255, 255, 0.87); +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(212, 190, 152, 0.5); +/* +widgets main borders color */ +@define-color borders rgba(212, 190, 152, 0.2); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(212, 190, 152, 0.2); +/* +these are pretty self explicative */ +@define-color warning_color #d8a657; +@define-color error_color #ea6962; +@define-color success_color #a9b665; +/* +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 #ddc7a1; +@define-color wm_unfocused_title rgba(221, 199, 161, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.05); +@define-color wm_bg #32302f; +@define-color wm_unfocused_bg #282625; +@define-color xfwm4_title #ddc7a1; +@define-color xfwm4_unfocused_title #a7977c; +/* content view background such as thumbnails view in Photos or Boxes */ +@define-color content_view_bg #282828; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #282828; +/* placeholder for entries */ +@define-color placeholder_text_color #a09176; diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-checked-symbolic.svg new file mode 100644 index 000000000..8067c1124 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-mixed-symbolic.svg new file mode 100644 index 000000000..76e69c9ed --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-unchecked-symbolic.svg new file mode 100644 index 000000000..97dbb89ee --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/cursor-handle-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/cursor-handle-symbolic.svg new file mode 100644 index 000000000..e2a252b5f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/cursor-handle-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-checked-symbolic.svg new file mode 100644 index 000000000..7b82c3ded --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-mixed-symbolic.svg new file mode 100644 index 000000000..55d89167d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-unchecked-symbolic.svg new file mode 100644 index 000000000..6d9755906 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-checked-symbolic.svg new file mode 100644 index 000000000..7ad27d5ed --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-mixed-symbolic.svg new file mode 100644 index 000000000..0f8085030 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-unchecked-symbolic.svg new file mode 100644 index 000000000..bfe0a5618 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-checked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-checked-symbolic.svg new file mode 100644 index 000000000..04a9a21eb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-mixed-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-mixed-symbolic.svg new file mode 100644 index 000000000..31aac91bb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-unchecked-symbolic.svg b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-unchecked-symbolic.svg new file mode 100644 index 000000000..f87038196 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/gtk-4.0/icons/small-radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/index.theme b/local/share/themes/Gruvbox-Material-Dark/index.theme new file mode 100644 index 000000000..8aeda1be7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Gruvbox-Material-Dark +Comment=Gruvbox Material theme +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Gruvbox-Material-Dark +MetacityTheme=Gruvbox-Material-Dark +IconTheme=Adwaita +CursorTheme=Adwaita +CursorSize=24 diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/button.svg b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/button.svg new file mode 100644 index 000000000..51c67bf46 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/button.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/close.svg b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/close.svg new file mode 100644 index 000000000..1fe080592 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/maximize.svg b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/maximize.svg new file mode 100644 index 000000000..02d76eb51 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/maximize.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/menu.svg b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/menu.svg new file mode 100644 index 000000000..ad8570add --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/menu.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/minimize.svg b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/minimize.svg new file mode 100644 index 000000000..dc1fa3f58 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/minimize.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/shade.svg b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/shade.svg new file mode 100644 index 000000000..29aeeae3e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/shade.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/unmaximize.svg b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/unmaximize.svg new file mode 100644 index 000000000..cd03f349f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/unmaximize.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/unshade.svg b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/unshade.svg new file mode 100644 index 000000000..fa98887f7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/assets/unshade.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/metacity-theme-2.xml b/local/share/themes/Gruvbox-Material-Dark/metacity-1/metacity-theme-2.xml new file mode 100644 index 000000000..375a16155 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/metacity-theme-2.xml @@ -0,0 +1,621 @@ + + + + oomox-Gruvbox-Material-Dark + nana-4 + GPL + 2020 + oomox-Gruvbox-Material-Dark Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/metacity-1/metacity-theme-3.xml b/local/share/themes/Gruvbox-Material-Dark/metacity-1/metacity-theme-3.xml new file mode 100644 index 000000000..e1a8a699e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/metacity-1/metacity-theme-3.xml @@ -0,0 +1,648 @@ + + + + oomox-Gruvbox-Material-Dark + nana-4 + GPL + 2020 + oomox-Gruvbox-Material-Dark Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/plank/dock.theme b/local/share/themes/Gruvbox-Material-Dark/plank/dock.theme new file mode 100644 index 000000000..04fa7414f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-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=4 +#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=0;;0;;0;;153 +#The ending color (RGBA) of the fill gradient. +FillEndColor=0;;0;;0;;153 +#The color (RGBA) of the inner stroke. +InnerStrokeColor=0;;0;;0;;0 + +[PlankDockTheme] +#The padding on the left/right dock edges, in tenths of a percent of IconSize. +HorizPadding=1 +#The padding on the top dock edge, in tenths of a percent of IconSize. +TopPadding=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/local/share/themes/Gruvbox-Material-Dark/unity/close.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close.svg new file mode 100644 index 000000000..9848ab85d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_dash.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_dash.svg new file mode 100644 index 000000000..09409f2fa --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_dash.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_disabled.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_disabled.svg new file mode 100644 index 000000000..444a6c88f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_disabled.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_prelight.svg new file mode 100644 index 000000000..cf46c6cdc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_pressed.svg new file mode 100644 index 000000000..63ffe23a0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_dash_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_normal.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_normal.svg new file mode 100644 index 000000000..9848ab85d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_normal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_prelight.svg new file mode 100644 index 000000000..8abca127f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_pressed.svg new file mode 100644 index 000000000..ad211d3d0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused.svg new file mode 100644 index 000000000..b1e6012a9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused_prelight.svg new file mode 100644 index 000000000..5555bb91b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused_pressed.svg new file mode 100644 index 000000000..6399c8ba6 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/close_unfocused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/dash-widgets.json b/local/share/themes/Gruvbox-Material-Dark/unity/dash-widgets.json new file mode 100644 index 000000000..09309f73f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/dash-widgets.json @@ -0,0 +1,162 @@ +{ + "stock-icons" : { + "checkmark" : ["/usr/share/icons/unity/checkmark.svg", "32px", "32px"], + "cross" : ["/usr/share/icons/unity/cross.svg", "32px", "32px"], + "grid-view" : ["/usr/share/icons/unity/grid-view.svg", "32px", "32px"], + "flow-view" : ["/usr/share/icons/unity/flow-view.svg", "32px", "32px"], + "star" : ["/usr/share/icons/unity/star.svg", "32px", "32px"], + "triangle" : ["/usr/share/icons/unity/curved-triangle.svg", "32px", "32px"], + "bag" : ["/usr/share/icons/unity/bag.svg", "32px", "32px"], + "next" : ["/usr/share/icons/unity/next.svg", "32px", "32px"], + "prev" : ["/usr/share/icons/unity/prev.svg", "32px", "32px"], + "play" : ["/usr/share/icons/unity/play.svg", "32px", "32px"] + }, + + "regular-text" : { + "text-color" : "#d4be98", + "text-opacity" : 1.0, + "text-size" : 13.0, + "text-mode" : "normal", + "text-weight" : "regular" + }, + + "comments": { + "states" : ["ACTIVE", "NORMAL","PRELIGHT","SELECTED","INSENSITIVE"] + }, + + "button-icon": { + "color" : ["#d4be98", "#FFFFFF", "#FFFFFF", "#FFFFFF", "#FFFFFF"], + "opacity" : [ 1.0, 1.0, 1.0, 0.8, 0.8], + "overlay-opacity": [ 0.30, 0.48, 0.48, 0.45, 0.45], + "overlay-mode" : [ "normal","multiply", "multiply", "normal", "normal"], + "blur-size" : [ 5, 0, 0, 0, 0] + }, + + "icon-only" : { + "color" : "#123456", + "opacity" : 1.0, + "overlay-opacity": 0.2, + "overlay-mode" : "normal", + "blur-size" : 6 + }, + + "lens-nav-bar" : { + "icon-height" : 20, + "icon-gap" : 40 + }, + + "button-label": { + "border-opacity" : [ 0.8, 0.13, 0.13, 0.13, 0.13], + "border-color" : ["#d4be98", "#FFFFFF", "#FFFFFF", "#FFFFFF", "#FFFFFF"], + "border-size" : [ 2.0, 1.0, 1.0, 0.5, 0.5], + "border-radius" : 4.0, + "text-size" : 1.0, + "text-color" : ["#d4be98", "#d4be98", "#d4be98", "#d4be98", "#d4be98"], + "text-opacity" : [ 1.0, 1.0, 1.0, 1.0, 1.0], + "fill-color" : ["#FFFFFF", "#000000", "#000000", "#000000", "#000000"], + "fill-opacity" : [ 0.13, 0.0, 0.0, 0.0, 0.0], + "overlay-opacity": [ 0.1, 0.1, 0.1, 0.0, 0.0], + "overlay-mode" : [ "normal", "normal", "normal", "normal", "normal"], + "blur-size" : [ 1, 1, 1, 0, 0] + }, + + "track-view" : { + "line-gap" : 26.0, + "heading-list-gap" : 30, + "left-padding" : 20 + }, + + "row-caption" : { + "main-text-color" : "#d4be98", + "main-text-opacity" : 1.0, + "main-text-size" : 17.0, + "main-text-weight" : "regular", + "sub-text-color" : "#d4be98", + "sub-text-opacity" : 0.5, + "sub-text-size" : 13.0, + "sub-text-weight" : "regular", + "icon-main-gap" : 10, + "main-sub-gap" : 15, + "sub-arrow-gap" : 10 + }, + + "preview-heading-small" : { + "main-title-size" : 23.0, + "main-title-color" : "#d4be98", + "main-title-opacity" : 1.0, + "main-title-mode" : "normal", + "main-title-weight" : "regular", + "sub-title-size" : 17.0, + "sub-title-color" : "#d4be98", + "sub-title-opacity" : 1.0, + "sub-title-mode" : "normal", + "sub-title-weight" : "regular", + "main-sub-gap" : 15, + "padding" : 10 + }, + + "preview-heading" : { + "main-title-size" : 30.0, + "main-title-color" : "#d4be98", + "main-title-opacity" : 1.0, + "main-title-mode" : "normal", + "main-title-weight" : "regular", + "sub-title-size" : 17.0, + "sub-title-color" : "#d4be98", + "sub-title-opacity" : 1.0, + "sub-title-mode" : "normal", + "sub-title-weight" : "regular", + "main-sub-gap" : 15, + "padding" : 10 + }, + + "scrollbar" : { + "color" : "#fff", + "opacity" : 1.0, + "size" : 8, + "buttons-size" : 0, + "corner-radius" : 3 + }, + + "scrollbar-overlay": { + "color" : "#fff", + "opacity" : 1.0, + "size" : 3, + "corner-radius" : 1.5 + }, + + "scrollbar-track": { + "color" : "#fff", + "opacity" : 0.4 + }, + + "filter-pane" : { + "width" : 330, + "title-size" : 17.0, + "title-color" : "#d4be98", + "title-opacity" : 1.0, + "title-mode" : "normal", + "title-style" : "bold", + "title-arrow-gap" : 10, + "button-height" : 30, + "border-size" : 1 + }, + + "separator" : { + "size" : 1.0, + "color" : "#d4be98", + "opacity" : 0.15, + "overlay-opacity": 0.47, + "overlay-mode" : "normal", + "blur-size" : 6 + }, + + "filter-caption" : { + "text-size" : 17, + "text-color" : "#d4be98", + "text-opacity" : 1.0, + "text-mode" : "normal", + "text-weight" : "bold", + "text-arrow-gap" : 10 + } +} diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_btt_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_btt_19.svg new file mode 100644 index 000000000..e418638af --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_btt_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_btt_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_btt_37.svg new file mode 100644 index 000000000..bd447f939 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_btt_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ltr_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ltr_19.svg new file mode 100644 index 000000000..4ba2b2fea --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ltr_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ltr_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ltr_37.svg new file mode 100644 index 000000000..bb86e8db7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ltr_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_btt_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_btt_19.svg new file mode 100644 index 000000000..c059418dc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_btt_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_btt_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_btt_37.svg new file mode 100644 index 000000000..b06dc3a44 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_btt_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ltr_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ltr_19.svg new file mode 100644 index 000000000..6e83e74cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ltr_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ltr_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ltr_37.svg new file mode 100644 index 000000000..abd07029f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ltr_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_rtl_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_rtl_19.svg new file mode 100644 index 000000000..6e83e74cd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_rtl_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_rtl_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_rtl_37.svg new file mode 100644 index 000000000..abd07029f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_rtl_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ttb_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ttb_19.svg new file mode 100644 index 000000000..c059418dc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ttb_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ttb_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ttb_37.svg new file mode 100644 index 000000000..b06dc3a44 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_outline_ttb_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_rtl_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_rtl_19.svg new file mode 100644 index 000000000..4ba2b2fea --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_rtl_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_rtl_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_rtl_37.svg new file mode 100644 index 000000000..bb86e8db7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_rtl_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ttb_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ttb_19.svg new file mode 100644 index 000000000..e418638af --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ttb_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ttb_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ttb_37.svg new file mode 100644 index 000000000..bd447f939 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_arrow_ttb_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_bfb.png b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_bfb.png new file mode 100644 index 000000000..9ffc9ec63 Binary files /dev/null and b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_bfb.png differ diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_back_150.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_back_150.svg new file mode 100644 index 000000000..1d22116a8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_back_150.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_back_54.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_back_54.svg new file mode 100644 index 000000000..da3e720f5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_back_54.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_edge_150.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_edge_150.svg new file mode 100644 index 000000000..1d22116a8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_edge_150.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_edge_54.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_edge_54.svg new file mode 100644 index 000000000..da3e720f5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_edge_54.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_glow_200.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_glow_200.svg new file mode 100644 index 000000000..2a94c40c4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_glow_200.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_glow_62.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_glow_62.svg new file mode 100644 index 000000000..9dc92a6b4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_glow_62.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_selected_back_150.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_selected_back_150.svg new file mode 100644 index 000000000..45f5d9aff --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_selected_back_150.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_selected_back_54.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_selected_back_54.svg new file mode 100644 index 000000000..4bba64be7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_selected_back_54.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shadow_200.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shadow_200.svg new file mode 100644 index 000000000..2a94c40c4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shadow_200.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shadow_62.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shadow_62.svg new file mode 100644 index 000000000..9dc92a6b4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shadow_62.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shine_150.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shine_150.svg new file mode 100644 index 000000000..1d22116a8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shine_150.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shine_54.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shine_54.svg new file mode 100644 index 000000000..da3e720f5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_icon_shine_54.svg @@ -0,0 +1,2 @@ + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_btt_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_btt_19.svg new file mode 100644 index 000000000..14e4c161d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_btt_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_btt_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_btt_37.svg new file mode 100644 index 000000000..8d492647d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_btt_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ltr_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ltr_19.svg new file mode 100644 index 000000000..614167baf --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ltr_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ltr_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ltr_37.svg new file mode 100644 index 000000000..0ad552398 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ltr_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_rtl_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_rtl_19.svg new file mode 100644 index 000000000..614167baf --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_rtl_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_rtl_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_rtl_37.svg new file mode 100644 index 000000000..0ad552398 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_rtl_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ttb_19.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ttb_19.svg new file mode 100644 index 000000000..14e4c161d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ttb_19.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ttb_37.svg b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ttb_37.svg new file mode 100644 index 000000000..8d492647d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/launcher_pip_ttb_37.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize.svg new file mode 100644 index 000000000..e1c550c41 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash.svg new file mode 100644 index 000000000..0ab2df578 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_disabled.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_disabled.svg new file mode 100644 index 000000000..574556fd5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_disabled.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_prelight.svg new file mode 100644 index 000000000..e4d28a3fa --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_pressed.svg new file mode 100644 index 000000000..5e057fcea --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_dash_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_normal.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_normal.svg new file mode 100644 index 000000000..e1c550c41 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_normal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_prelight.svg new file mode 100644 index 000000000..e6a06a9cf --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_pressed.svg new file mode 100644 index 000000000..dc00033b4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused.svg new file mode 100644 index 000000000..2245ed7b7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused_prelight.svg new file mode 100644 index 000000000..3f432785f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused_pressed.svg new file mode 100644 index 000000000..be68f7efb --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/maximize_unfocused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize.svg new file mode 100644 index 000000000..f495e8e83 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash.svg new file mode 100644 index 000000000..ba94973b7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_disabled.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_disabled.svg new file mode 100644 index 000000000..6973e881c --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_disabled.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_prelight.svg new file mode 100644 index 000000000..68133ae08 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_pressed.svg new file mode 100644 index 000000000..86cd1dcc8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_dash_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_normal.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_normal.svg new file mode 100644 index 000000000..f495e8e83 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_normal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_prelight.svg new file mode 100644 index 000000000..b575cd903 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_pressed.svg new file mode 100644 index 000000000..aa09c32f9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused.svg new file mode 100644 index 000000000..fc71609c5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused_prelight.svg new file mode 100644 index 000000000..3bc0ea9d3 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused_pressed.svg new file mode 100644 index 000000000..8ef9582d9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/minimize_unfocused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/progress_bar_fill.svg b/local/share/themes/Gruvbox-Material-Dark/unity/progress_bar_fill.svg new file mode 100644 index 000000000..ac4700422 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/progress_bar_fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/progress_bar_trough.svg b/local/share/themes/Gruvbox-Material-Dark/unity/progress_bar_trough.svg new file mode 100644 index 000000000..7ff9196cc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/progress_bar_trough.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused.svg b/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused.svg new file mode 100644 index 000000000..9848ab85d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused_prelight.svg new file mode 100644 index 000000000..8abca127f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused_pressed.svg new file mode 100644 index 000000000..ad211d3d0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/sheet_style_close_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize.svg new file mode 100644 index 000000000..153512f3a --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash.svg new file mode 100644 index 000000000..86444917f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_disabled.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_disabled.svg new file mode 100644 index 000000000..e96303c81 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_disabled.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_prelight.svg new file mode 100644 index 000000000..22a9c5ff5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_pressed.svg new file mode 100644 index 000000000..c08db66de --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_dash_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_normal.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_normal.svg new file mode 100644 index 000000000..153512f3a --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_normal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_prelight.svg new file mode 100644 index 000000000..e2001e552 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_pressed.svg new file mode 100644 index 000000000..b72d7eeb1 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_focused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused.svg new file mode 100644 index 000000000..41c4877a0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused_prelight.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused_prelight.svg new file mode 100644 index 000000000..f8665ecf8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused_prelight.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused_pressed.svg b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused_pressed.svg new file mode 100644 index 000000000..7d8e2bb89 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/unity/unmaximize_unfocused_pressed.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-left-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-left-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-left-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-left-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-left-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-left-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-right-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-right-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-right-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-right-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-right-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/bottom-right-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-active.svg new file mode 100644 index 000000000..cffe6d087 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-inactive.svg new file mode 100644 index 000000000..e727fbb07 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-prelight.svg new file mode 100644 index 000000000..b9ed221a7 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-pressed.svg new file mode 100644 index 000000000..ac4521756 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/close-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-active.svg new file mode 100644 index 000000000..7e4da4fc3 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-inactive.svg new file mode 100644 index 000000000..5579e31da --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-prelight.svg new file mode 100644 index 000000000..6aa504338 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-pressed.svg new file mode 100644 index 000000000..4c17343b8 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/hide-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/left-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/left-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/left-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/left-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/left-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/left-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-active.svg new file mode 100644 index 000000000..9a3830a83 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-inactive.svg new file mode 100644 index 000000000..8f2591d1a --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-prelight.svg new file mode 100644 index 000000000..1fda0e392 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-pressed.svg new file mode 100644 index 000000000..7c778ac1e --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-active.svg new file mode 100644 index 000000000..b35e0813a --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-inactive.svg new file mode 100644 index 000000000..cef38c71f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-prelight.svg new file mode 100644 index 000000000..fb01548c4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-pressed.svg new file mode 100644 index 000000000..79c951ad0 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/maximize-toggled-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-active.svg new file mode 100644 index 000000000..03f32666d --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-inactive.svg new file mode 100644 index 000000000..f4ba2a5a5 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-prelight.svg new file mode 100644 index 000000000..8db34ad3c --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-pressed.svg new file mode 100644 index 000000000..8308c7595 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/menu-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/right-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/right-active.svg new file mode 100644 index 000000000..9c714c64b --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/right-active.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/right-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/right-inactive.svg new file mode 100644 index 000000000..1f988cc99 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/right-inactive.svg @@ -0,0 +1,3 @@ + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-active.svg new file mode 100644 index 000000000..a52ff6464 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-inactive.svg new file mode 100644 index 000000000..298762043 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-prelight.svg new file mode 100644 index 000000000..a4f797494 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-pressed.svg new file mode 100644 index 000000000..ca520bdbc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-active.svg new file mode 100644 index 000000000..e0d31c986 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-inactive.svg new file mode 100644 index 000000000..0c5c94c51 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-prelight.svg new file mode 100644 index 000000000..3864258c9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-pressed.svg new file mode 100644 index 000000000..705418724 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/shade-toggled-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-active.svg new file mode 100644 index 000000000..64f79aa20 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-inactive.svg new file mode 100644 index 000000000..86babd18f --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-prelight.svg new file mode 100644 index 000000000..31270edd9 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-pressed.svg new file mode 100644 index 000000000..8a04aeccc --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-active.svg new file mode 100644 index 000000000..343a406e2 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-active.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-inactive.svg new file mode 100644 index 000000000..06e95f4a3 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-inactive.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-prelight.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-prelight.svg new file mode 100644 index 000000000..ab1338819 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-prelight.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-pressed.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-pressed.svg new file mode 100644 index 000000000..42260bec4 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/stick-toggled-pressed.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/themerc b/local/share/themes/Gruvbox-Material-Dark/xfwm4/themerc new file mode 100644 index 000000000..a61cfba93 --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/themerc @@ -0,0 +1,23 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#ddc7a1 +active_text_shadow_color=#ddc7a1 +inactive_text_color=#a9987c +inactive_text_shadow_color=#a9987c +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=0 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-1-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-1-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-1-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-1-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-1-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-1-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-2-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-2-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-2-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-2-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-2-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-2-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-3-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-3-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-3-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-3-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-3-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-3-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-4-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-4-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-4-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-4-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-4-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-4-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-5-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-5-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-5-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-5-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-5-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/title-5-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-left-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-left-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-left-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-left-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-left-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-left-inactive.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-right-active.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-right-active.svg new file mode 100644 index 000000000..7a0f8c0fd --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-right-active.svg @@ -0,0 +1,4 @@ + + + + diff --git a/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-right-inactive.svg b/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-right-inactive.svg new file mode 100644 index 000000000..4b4f004be --- /dev/null +++ b/local/share/themes/Gruvbox-Material-Dark/xfwm4/top-right-inactive.svg @@ -0,0 +1,4 @@ + + + +