diff --git a/flake.nix b/flake.nix index 02f4a4c..7ee5e64 100644 --- a/flake.nix +++ b/flake.nix @@ -1,4 +1,4 @@ -{ description = "Modular NixOS Config"; +{ description = "Fully Declarative and Reproducible System"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; diff --git a/homeConfig/dotfiles/alacritty/alacritty.yml b/homeConfig/dotfiles/alacritty/alacritty.yml deleted file mode 100644 index 53e89e1..0000000 --- a/homeConfig/dotfiles/alacritty/alacritty.yml +++ /dev/null @@ -1,61 +0,0 @@ -scrolling: - history: 10000 - multiplier: 3 - -window: - opacity: 0.95 - -# github Alacritty Colors -colors: - # Default colors - primary: - background: '0x0d1117' - foreground: '0xb3b1ad' - - # Normal colors - normal: - black: '0x484f58' - red: '0xff7b72' - green: '0x3fb950' - yellow: '0xd29922' - blue: '0x58a6ff' - magenta: '0xbc8cff' - cyan: '0x39c5cf' - white: '0xb1bac4' - - # Bright colors - bright: - black: '0x6e7681' - red: '0xffa198' - green: '0x56d364' - yellow: '0xe3b341' - blue: '0x79c0ff' - magenta: '0xd2a8ff' - cyan: '0x56d4dd' - white: '0xf0f6fc' - - indexed_colors: - - { index: 16, color: '0xd18616' } - - { index: 17, color: '0xffa198' } - -font: - normal: - family: TerminusWithNerdFont - style: Medium - bold: - family: TerminusWithNerdFont - style: Bold - italic: - family: TerminusWithNerdFont - style: Medium Italic - bold_italic: - family: TerminusWithNerdFont - style: Bold Italic -size: 14 - -cursor: - color: '#ffffff' - style: - shape: Block - blinking: Always - blink-interval: 750 diff --git a/homeConfig/dotfiles/bash/bash_profile b/homeConfig/dotfiles/bash/bash_profile deleted file mode 100644 index a03745f..0000000 --- a/homeConfig/dotfiles/bash/bash_profile +++ /dev/null @@ -1,10 +0,0 @@ -# Start Sway on login -if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then - # Start Sway in the background - exec sway -fi - -if [ "$XDG_CURRENT_DESKTOP" = "sway" ] ; then - # https://github.com/swaywm/sway/issues/595 - export _JAVA_AWT_WM_NONREPARENTING=1 -fi diff --git a/homeConfig/dotfiles/bash/bashrc b/homeConfig/dotfiles/bash/bashrc deleted file mode 100644 index f9d841b..0000000 --- a/homeConfig/dotfiles/bash/bashrc +++ /dev/null @@ -1,152 +0,0 @@ -## -# My Bash Configs -## - -# Set EDITOR to nvim -export EDITOR=nvim - -# Check if the current shell is an SSH session -is_ssh_session() { - if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then - return 0 - else - return 1 - fi -} - -# PS1 Config -function set_ps1_prompt() { - local git_branch="" - local flake_icon="" - local cur_dir="" - - # Check if we're inside a git repository - if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then - # If we are, get the current branch name - git_branch="$(git symbolic-ref --short HEAD 2>/dev/null)" - - # If the command failed, we're in a detached HEAD state, so get the short SHA - if [ $? -ne 0 ]; then - git_branch="$(git rev-parse --short HEAD 2>/dev/null)" - fi - - # Wrap the branch name and : in braces and color it red - git_branch=" \[\033[01;31m\]$git_branch󰘬:\[\033[00m\]" - - # Check if flake.nix file exists - if [ -f "$(git rev-parse --show-toplevel)/flake.nix" ]; then - # If it exists, set the flake icon and color it blue - flake_icon="\[\033[01;34m\] \[\033[00m\]" - fi - - # Get the root directory of the git repository - git_root="$(basename "$(git rev-parse --show-toplevel)")" - - # Get the current directory relative to the Git root - cur_dir=$(realpath --relative-to=$(git rev-parse --show-toplevel) .) - if [ "$cur_dir" == "." ]; then - cur_dir="\[\033[01;34m\] $git_root\[\033[00m\]" - else - cur_dir="\[\033[01;34m\] $git_root/$cur_dir\[\033[00m\]" - fi - else - # If not in a Git repository, just show the normal path - cur_dir="\[\033[01;34m\]\w\[\033[00m\]" - fi - - if [ -n "${IN_NIX_SHELL:+x}" ]; then - PS1="$cur_dir\n$flake_icon\[\033[01;32m\]nixShell>$git_branch\[\033[00m\]" - else - if ! is_ssh_session; then - PS1="\n$cur_dir\n$flake_icon\[\033[01;32m\]>$git_branch\[\033[00m\]" - else - PS1="\n\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]\u@\h:\[\033[00m\] " - fi - fi - unset flake_icon -} -PROMPT_COMMAND="set_ps1_prompt; $PROMPT_COMMAND" - -# Locate and source the bash-completion scripts -bash_completion_dir="$HOME/.nix-profiles/share/bash-completion/completions" -if [ -d "$bash_completion_dir" ]; then - for file in "$bash_completion_dir"/*; do - source "$file" 2>/dev/null - done -fi - -# Alias List - alias vi='nvim' - alias vim='nvim' - alias v='nvim' - alias ls='lsd' - alias hmup="home-manager switch --flake '$HOME/Documents/projects/nixos#bryan'" - alias nixup="sudo nixos-rebuild switch --flake '$HOME/Documents/projects/nixos#socrates'" - -## -# Custom Functions -## - -# cd to git root -function cdg() { - # Check for --help flag - if [[ $1 == "--help" ]]; then - echo "A simple utility for navigating to the root of a git repo" - return 0 - fi - - # Check for invalid command - if [[ -n "$1" ]]; then - echo "Invalid command: $1. Try 'cdg --help'." - return 1 - fi - - # Find the root of the git repository - local root_dir - root_dir=$(git rev-parse --show-toplevel 2>/dev/null) - local git_status=$? - - # Check for git rev-parse failure - if [ $git_status -ne 0 ]; then - echo "Error: Not a git repo." - return 1 - fi - - # If we're inside a git repo, cd to the root - cd "$root_dir" -} - -# penpot {run|stop|update|help} alias function -function penpot() { - case "$1" in - run) - sudo docker compose -p penpot -f ~/Documents/tools/penpot/docker-compose.yaml up -d >/dev/null 2>&1 - nohup bash -c '(sleep 10 && if [[ "$OSTYPE" == "linux-gnu"* ]]; then - xdg-open "http://localhost:9001" - elif [[ "$OSTYPE" == "darwin"* ]]; then - open "http://localhost:9001" - fi)' >/dev/null 2>&1 & - echo "Started penpot on http://localhost:9001" - ;; - stop) - echo "Stopping penpot" - sudo docker compose -p penpot -f ~/Documents/tools/penpot/docker-compose.yaml down >/dev/null 2>&1 - ;; - update) - sudo docker compose -f ~/Documents/tools/penpot/docker-compose.yaml pull - echo "Updated penpot!" - ;; - help) - xdg-open "https://help.penpot.app/" - echo "Opened penpot help page in your browser." - ;; - *) - echo "Usage: penpot {run|stop|update|help}" - ;; - esac -} - -# ldv -source $HOME/Documents/projects/ldv/ldv.sh - -eval "$(direnv hook bash)" diff --git a/homeConfig/dotfiles/btop/btop.conf b/homeConfig/dotfiles/btop/btop.conf deleted file mode 100644 index 0c2f289..0000000 --- a/homeConfig/dotfiles/btop/btop.conf +++ /dev/null @@ -1,212 +0,0 @@ -#? Config file for btop v. 1.2.13 - -#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. -#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" -color_theme = "/nix/store/lpp7n0f5afwb7vx60441cfhclq3z14hk-btop-1.2.13/share/btop/themes/nord.theme" - -#* If the theme set background should be shown, set to False if you want terminal background transparency. -theme_background = False - -#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. -truecolor = True - -#* Set to true to force tty mode regardless if a real tty has been detected or not. -#* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols. -force_tty = False - -#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets. -#* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box. -#* Use whitespace " " as separator between different presets. -#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty" -presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty" - -#* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists. -#* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift. -vim_keys = False - -#* Rounded corners on boxes, is ignored if TTY mode is ON. -rounded_corners = True - -#* Default symbols to use for graph creation, "braille", "block" or "tty". -#* "braille" offers the highest resolution but might not be included in all fonts. -#* "block" has half the resolution of braille but uses more common characters. -#* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY. -#* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view. -graph_symbol = "braille" - -# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". -graph_symbol_cpu = "default" - -# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". -graph_symbol_mem = "default" - -# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". -graph_symbol_net = "default" - -# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". -graph_symbol_proc = "default" - -#* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace. -shown_boxes = "cpu mem net proc" - -#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. -update_ms = 2000 - -#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", -#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. -proc_sorting = "cpu lazy" - -#* Reverse sorting order, True or False. -proc_reversed = False - -#* Show processes as a tree. -proc_tree = False - -#* Use the cpu graph colors in the process list. -proc_colors = True - -#* Use a darkening gradient in the process list. -proc_gradient = True - -#* If process cpu usage should be of the core it's running on or usage of the total available cpu power. -proc_per_core = False - -#* Show process memory as bytes instead of percent. -proc_mem_bytes = True - -#* Show cpu graph for each process. -proc_cpu_graphs = True - -#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) -proc_info_smaps = False - -#* Show proc box on left side of screen instead of right. -proc_left = False - -#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop). -proc_filter_kernel = False - -#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available. -#* Select from a list of detected attributes from the options menu. -cpu_graph_upper = "total" - -#* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available. -#* Select from a list of detected attributes from the options menu. -cpu_graph_lower = "total" - -#* Toggles if the lower CPU graph should be inverted. -cpu_invert_lower = True - -#* Set to True to completely disable the lower CPU graph. -cpu_single_graph = False - -#* Show cpu box at bottom of screen instead of top. -cpu_bottom = False - -#* Shows the system uptime in the CPU box. -show_uptime = True - -#* Show cpu temperature. -check_temp = True - -#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. -cpu_sensor = "Auto" - -#* Show temperatures for cpu cores also if check_temp is True and sensors has been found. -show_coretemp = True - -#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core. -#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine. -#* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries. -#* Example: "4:0 5:1 6:3" -cpu_core_map = "" - -#* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine". -temp_scale = "celsius" - -#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024. -base_10_sizes = False - -#* Show CPU frequency. -show_cpu_freq = True - -#* Draw a clock at top of screen, formatting according to strftime, empty string to disable. -#* Special formatting: /host = hostname | /user = username | /uptime = system uptime -clock_format = "%X" - -#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. -background_update = True - -#* Custom cpu model name, empty string to disable. -custom_cpu_name = "" - -#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". -#* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user". -disks_filter = "" - -#* Show graphs instead of meters for memory values. -mem_graphs = True - -#* Show mem box below net box instead of above. -mem_below_net = False - -#* Count ZFS ARC in cached and available memory. -zfs_arc_cached = True - -#* If swap memory should be shown in memory box. -show_swap = True - -#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. -swap_disk = True - -#* If mem box should be split to also show disks info. -show_disks = True - -#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. -only_physical = True - -#* Read disks list from /etc/fstab. This also disables only_physical. -use_fstab = True - -#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool) -zfs_hide_datasets = False - -#* Set to true to show available disk space for privileged users. -disk_free_priv = False - -#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view. -show_io_stat = True - -#* Toggles io mode for disks, showing big graphs for disk read/write speeds. -io_mode = False - -#* Set to True to show combined read/write io graphs in io mode. -io_graph_combined = False - -#* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ". -#* Example: "/mnt/media:100 /:20 /boot:1". -io_graph_speeds = "" - -#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False. -net_download = 100 - -net_upload = 100 - -#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. -net_auto = True - -#* Sync the auto scaling for download and upload to whichever currently has the highest scale. -net_sync = True - -#* Starts with the Network Interface specified here. -net_iface = "" - -#* Show battery stats in top right if battery is present. -show_battery = True - -#* Which battery to use if multiple are present. "Auto" for auto detection. -selected_battery = "Auto" - -#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". -#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. -log_level = "WARNING" \ No newline at end of file diff --git a/homeConfig/dotfiles/fontconfig/fonts.conf b/homeConfig/dotfiles/fontconfig/fonts.conf deleted file mode 100644 index 099cea7..0000000 --- a/homeConfig/dotfiles/fontconfig/fonts.conf +++ /dev/null @@ -1,19 +0,0 @@ - - - - - monospace - - Noto Sans - Noto Sans CJK JP - Emoji One - - - - TerminusWithNerdFont - - Terminus - Hack Nerd Font - - - diff --git a/homeConfig/dotfiles/gitconfig b/homeConfig/dotfiles/gitconfig deleted file mode 100644 index c7beb3f..0000000 --- a/homeConfig/dotfiles/gitconfig +++ /dev/null @@ -1,4 +0,0 @@ -[user] - email = bryan@ramos.codes - name = Bryan Ramos - signingkey = F1F3466458452B2DF351F1E864D12BA95ACE1F2D diff --git a/homeConfig/dotfiles/gtk-3.0/settings.ini b/homeConfig/dotfiles/gtk-3.0/settings.ini deleted file mode 100644 index dc60d45..0000000 --- a/homeConfig/dotfiles/gtk-3.0/settings.ini +++ /dev/null @@ -1,4 +0,0 @@ -[Settings] -gtk-application-prefer-dark-theme = true -gtk-icon-theme-name = "Qogir" -gtk-theme-name = "Juno-ocean" diff --git a/homeConfig/dotfiles/nvim/init.lua b/homeConfig/dotfiles/nvim/init.lua deleted file mode 100644 index 2514f9e..0000000 --- a/homeConfig/dotfiles/nvim/init.lua +++ /dev/null @@ -1,2 +0,0 @@ --- bootstrap lazy.nvim, LazyVim and your plugins -require("config.lazy") diff --git a/homeConfig/dotfiles/nvim/lua/config/autocmds.lua b/homeConfig/dotfiles/nvim/lua/config/autocmds.lua deleted file mode 100644 index 242e75b..0000000 --- a/homeConfig/dotfiles/nvim/lua/config/autocmds.lua +++ /dev/null @@ -1,118 +0,0 @@ --- Autocmds are automatically loaded on the VeryLazy event --- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua --- Add any additional autocmds here -local lsp = require("lsp-zero").preset({}) - -lsp.on_attach(function(client, bufnr) - lsp.default_keymaps({ buffer = bufnr }) -end) - --- When you don't have mason.nvim installed --- You'll need to list the servers installed in your system -lsp.setup_servers({ - "tsserver", - "eslint", - "hls", - "pyright", - "nil_ls", - "cssls", - "html", - "jsonls", - "diagnosticls", - "lua_ls", - "marksman", - "purescriptls", - "tailwindcss", - "bashls", -}) - --- (Optional) Configure lua language server for neovim -require("lspconfig").lua_ls.setup(lsp.nvim_lua_ls()) - -lsp.setup() - -local cmp = require("cmp") -cmp.setup({ - snippet = { - expand = function(args) - require("luasnip").lsp_expand(args.body) - end, - }, - sources = { - { name = "nvim_lsp" }, - { name = "luasnip" }, - -- other sources... - }, - -- other configurations... -}) - -vim.cmd([[ - au BufRead,BufNewFile *.purs set filetype=purescript -]]) - -local has_words_before = function() - unpack = unpack or table.unpack - local line, col = unpack(vim.api.nvim_win_get_cursor(0)) - return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil -end - -local luasnip = require("luasnip") - -cmp.setup({ - enabled = function() - -- disable completion in comments - local context = require("cmp.config.context") - -- keep command mode completion enabled when cursor is in a comment - if vim.api.nvim_get_mode().mode == "c" then - return true - else - return not context.in_treesitter_capture("comment") and not context.in_syntax_group("Comment") - end - end, - mapping = { - [""] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_next_item() - -- You could replace the expand_or_jumpable() calls with expand_or_locally_jumpable() - -- they way you will only jump inside the snippet region - elseif luasnip.expand_or_jumpable() then - luasnip.expand_or_jump() - elseif has_words_before() then - cmp.complete() - else - fallback() - end - end, { "i", "s" }), - - [""] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_prev_item() - elseif luasnip.jumpable(-1) then - luasnip.jump(-1) - else - fallback() - end - end, { "i", "s" }), - - [""] = cmp.mapping({ - i = function(fallback) - if cmp.visible() and cmp.get_active_entry() then - cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false }) - else - fallback() - end - end, - s = cmp.mapping.confirm({ select = true }), - c = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true }), - }), - }, -}) - -vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(vim.lsp.diagnostic.on_publish_diagnostics, { - -- Disable virtual_text - virtual_text = false, -}) - -require("notify").setup({ - background_colour = "#000000", -}) diff --git a/homeConfig/dotfiles/nvim/lua/config/keymaps.lua b/homeConfig/dotfiles/nvim/lua/config/keymaps.lua deleted file mode 100644 index 0aa0b8a..0000000 --- a/homeConfig/dotfiles/nvim/lua/config/keymaps.lua +++ /dev/null @@ -1,6 +0,0 @@ --- Keymaps are automatically loaded on the VeryLazy event --- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua --- Add any additional keymaps here - -vim.api.nvim_set_keymap('n', '', 'zz', { noremap = true }) -vim.api.nvim_set_keymap('n', '', 'zz', { noremap = true }) diff --git a/homeConfig/dotfiles/nvim/lua/config/lazy.lua b/homeConfig/dotfiles/nvim/lua/config/lazy.lua deleted file mode 100644 index 1c7b654..0000000 --- a/homeConfig/dotfiles/nvim/lua/config/lazy.lua +++ /dev/null @@ -1,44 +0,0 @@ -local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" -if not vim.loop.fs_stat(lazypath) then - -- bootstrap lazy.nvim - -- stylua: ignore - vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath }) -end -vim.opt.rtp:prepend(vim.env.LAZY or lazypath) - -require("lazy").setup({ - spec = { - -- add LazyVim and import its plugins - { "LazyVim/LazyVim", import = "lazyvim.plugins" }, - -- import any extras modules here - { import = "lazyvim.plugins.extras.ui.mini-animate" }, - -- import/override with your plugins - { import = "plugins" }, - }, - defaults = { - -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup. - -- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default. - lazy = false, - -- It's recommended to leave version=false for now, since a lot the plugin that support versioning, - -- have outdated releases, which may break your Neovim install. - version = false, -- always use the latest git commit - -- version = "*", -- try installing the latest stable version for plugins that support semver - }, - install = { colorscheme = { "tokyonight", "habamax" } }, - checker = { enabled = true }, -- automatically check for plugin updates - performance = { - rtp = { - -- disable some rtp plugins - disabled_plugins = { - "gzip", - -- "matchit", - -- "matchparen", - -- "netrwPlugin", - "tarPlugin", - "tohtml", - "tutor", - "zipPlugin", - }, - }, - }, -}) diff --git a/homeConfig/dotfiles/nvim/lua/config/options.lua b/homeConfig/dotfiles/nvim/lua/config/options.lua deleted file mode 100644 index 51db980..0000000 --- a/homeConfig/dotfiles/nvim/lua/config/options.lua +++ /dev/null @@ -1,8 +0,0 @@ --- Options are automatically loaded before lazy.nvim startup --- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua --- Add any additional options here - -vim.opt.tabstop = 4 -vim.opt.shiftwidth = 4 -vim.opt.softtabstop = 4 -vim.opt.expandtab = true diff --git a/homeConfig/dotfiles/nvim/lua/plugins/core.lua b/homeConfig/dotfiles/nvim/lua/plugins/core.lua deleted file mode 100644 index b4923c3..0000000 --- a/homeConfig/dotfiles/nvim/lua/plugins/core.lua +++ /dev/null @@ -1,39 +0,0 @@ -return { - { - 'projekt0n/github-nvim-theme', - lazy = false, -- make sure we load this during startup if it is your main colorscheme - priority = 1000, -- make sure to load this before all the other start plugins - config = function() - require('github-theme').setup({ - options = { - transparent = true; - } - }) - - vim.cmd('colorscheme github_dark_high_contrast') - end, - }, - - {'williamboman/mason.nvim', enabled = false }, - -{ - 'VonHeikemen/lsp-zero.nvim', - branch = 'v2.x', - dependencies = { - -- LSP Support - {'neovim/nvim-lspconfig'}, -- Required - {'williamboman/mason-lspconfig.nvim'}, -- Optional - - -- Autocompletion - {'hrsh7th/nvim-cmp'}, -- Required - {'hrsh7th/cmp-nvim-lsp'}, -- Required - {'L3MON4D3/LuaSnip'}, -- Required - } -}, - - { 'raichoo/purescript-vim' }, - { 'vmchale/dhall-vim' }, - { 'elixir-lang/vim-elixir' }, - { 'xiyaowong/transparent.nvim'}, - -} diff --git a/homeConfig/dotfiles/nvim/lua/plugins/example.lua b/homeConfig/dotfiles/nvim/lua/plugins/example.lua deleted file mode 100644 index 5d2c1f8..0000000 --- a/homeConfig/dotfiles/nvim/lua/plugins/example.lua +++ /dev/null @@ -1,266 +0,0 @@ --- since this is just an example spec, don't actually load anything here and return an empty spec --- stylua: ignore -if true then return {} end - --- every spec file under config.plugins will be loaded automatically by lazy.nvim --- --- In your plugin files, you can: --- * add extra plugins --- * disable/enabled LazyVim plugins --- * override the configuration of LazyVim plugins -return { - -- add gruvbox - { "ellisonleao/gruvbox.nvim" }, - - -- Configure LazyVim to load gruvbox - { - "LazyVim/LazyVim", - opts = { - colorscheme = "gruvbox", - }, - }, - - -- change trouble config - { - "folke/trouble.nvim", - -- opts will be merged with the parent spec - opts = { use_diagnostic_signs = true }, - }, - - -- disable trouble - { "folke/trouble.nvim", enabled = false }, - - -- add symbols-outline - { - "simrat39/symbols-outline.nvim", - cmd = "SymbolsOutline", - keys = { { "cs", "SymbolsOutline", desc = "Symbols Outline" } }, - config = true, - }, - - -- override nvim-cmp and add cmp-emoji - { - "hrsh7th/nvim-cmp", - dependencies = { "hrsh7th/cmp-emoji" }, - ---@param opts cmp.ConfigSchema - opts = function(_, opts) - local cmp = require("cmp") - opts.sources = cmp.config.sources(vim.list_extend(opts.sources, { { name = "emoji" } })) - end, - }, - - -- change some telescope options and a keymap to browse plugin files - { - "nvim-telescope/telescope.nvim", - keys = { - -- add a keymap to browse plugin files - -- stylua: ignore - { - "fp", - function() require("telescope.builtin").find_files({ cwd = require("lazy.core.config").options.root }) end, - desc = "Find Plugin File", - }, - }, - -- change some options - opts = { - defaults = { - layout_strategy = "horizontal", - layout_config = { prompt_position = "top" }, - sorting_strategy = "ascending", - winblend = 0, - }, - }, - }, - - -- add telescope-fzf-native - { - "telescope.nvim", - dependencies = { - "nvim-telescope/telescope-fzf-native.nvim", - build = "make", - config = function() - require("telescope").load_extension("fzf") - end, - }, - }, - - -- add pyright to lspconfig - { - "neovim/nvim-lspconfig", - ---@class PluginLspOpts - opts = { - ---@type lspconfig.options - servers = { - -- pyright will be automatically installed with mason and loaded with lspconfig - pyright = {}, - }, - }, - }, - - -- add tsserver and setup with typescript.nvim instead of lspconfig - { - "neovim/nvim-lspconfig", - dependencies = { - "jose-elias-alvarez/typescript.nvim", - init = function() - require("lazyvim.util").on_attach(function(_, buffer) - -- stylua: ignore - vim.keymap.set( "n", "co", "TypescriptOrganizeImports", { buffer = buffer, desc = "Organize Imports" }) - vim.keymap.set("n", "cR", "TypescriptRenameFile", { desc = "Rename File", buffer = buffer }) - end) - end, - }, - ---@class PluginLspOpts - opts = { - ---@type lspconfig.options - servers = { - -- tsserver will be automatically installed with mason and loaded with lspconfig - tsserver = {}, - }, - -- you can do any additional lsp server setup here - -- return true if you don't want this server to be setup with lspconfig - ---@type table - setup = { - -- example to setup with typescript.nvim - tsserver = function(_, opts) - require("typescript").setup({ server = opts }) - return true - end, - -- Specify * to use this function as a fallback for any server - -- ["*"] = function(server, opts) end, - }, - }, - }, - - -- for typescript, LazyVim also includes extra specs to properly setup lspconfig, - -- treesitter, mason and typescript.nvim. So instead of the above, you can use: - { import = "lazyvim.plugins.extras.lang.typescript" }, - - -- add more treesitter parsers - { - "nvim-treesitter/nvim-treesitter", - opts = { - ensure_installed = { - "bash", - "html", - "javascript", - "json", - "lua", - "markdown", - "markdown_inline", - "python", - "query", - "regex", - "tsx", - "typescript", - "vim", - "yaml", - }, - }, - }, - - -- since `vim.tbl_deep_extend`, can only merge tables and not lists, the code above - -- would overwrite `ensure_installed` with the new value. - -- If you'd rather extend the default config, use the code below instead: - { - "nvim-treesitter/nvim-treesitter", - opts = function(_, opts) - -- add tsx and treesitter - vim.list_extend(opts.ensure_installed, { - "tsx", - "typescript", - }) - end, - }, - - -- the opts function can also be used to change the default opts: - { - "nvim-lualine/lualine.nvim", - event = "VeryLazy", - opts = function(_, opts) - table.insert(opts.sections.lualine_x, "😄") - end, - }, - - -- or you can return new options to override all the defaults - { - "nvim-lualine/lualine.nvim", - event = "VeryLazy", - opts = function() - return { - --[[add your custom lualine config here]] - } - end, - }, - - -- use mini.starter instead of alpha - { import = "lazyvim.plugins.extras.ui.mini-starter" }, - - -- add jsonls and schemastore ans setup treesitter for json, json5 and jsonc - { import = "lazyvim.plugins.extras.lang.json" }, - - -- add any tools you want to have installed below - { - "williamboman/mason.nvim", - opts = { - ensure_installed = { - "stylua", - "shellcheck", - "shfmt", - "flake8", - }, - }, - }, - - -- Use for completion and snippets (supertab) - -- first: disable default and behavior in LuaSnip - { - "L3MON4D3/LuaSnip", - keys = function() - return {} - end, - }, - -- then: setup supertab in cmp - { - "hrsh7th/nvim-cmp", - dependencies = { - "hrsh7th/cmp-emoji", - }, - ---@param opts cmp.ConfigSchema - opts = function(_, opts) - local has_words_before = function() - unpack = unpack or table.unpack - local line, col = unpack(vim.api.nvim_win_get_cursor(0)) - return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil - end - - local luasnip = require("luasnip") - local cmp = require("cmp") - - opts.mapping = vim.tbl_extend("force", opts.mapping, { - [""] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_next_item() - -- You could replace the expand_or_jumpable() calls with expand_or_locally_jumpable() - -- this way you will only jump inside the snippet region - elseif luasnip.expand_or_jumpable() then - luasnip.expand_or_jump() - elseif has_words_before() then - cmp.complete() - else - fallback() - end - end, { "i", "s" }), - [""] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_prev_item() - elseif luasnip.jumpable(-1) then - luasnip.jump(-1) - else - fallback() - end - end, { "i", "s" }), - }) - end, - }, -} diff --git a/homeConfig/dotfiles/rofi/config.rasi b/homeConfig/dotfiles/rofi/config.rasi deleted file mode 100644 index c1b3d6f..0000000 --- a/homeConfig/dotfiles/rofi/config.rasi +++ /dev/null @@ -1,149 +0,0 @@ -* { - nord0: #2e3440; - nord1: #3b4252; - nord2: #434c5e; - nord3: #4c566a; - nord4: #d8dee9; - nord5: #e5e9f0; - nord6: #eceff4; - nord7: #8fbcbb; - nord8: #88c0d0; - nord9: #81a1c1; - nord10: #5e81ac; - nord11: #bf616a; - nord12: #d08770; - nord13: #ebcb8b; - nord14: #a3be8c; - nord15: #b48ead; - - spacing: 2; - background-color: var(nord1); - - background: var(nord1); - foreground: var(nord4); - - normal-background: var(background); - normal-foreground: var(foreground); - alternate-normal-background: var(background); - alternate-normal-foreground: var(foreground); - selected-normal-background: var(nord8); - selected-normal-foreground: var(background); - - active-background: var(background); - active-foreground: var(nord10); - alternate-active-background: var(background); - alternate-active-foreground: var(nord10); - selected-active-background: var(nord10); - selected-active-foreground: var(background); - - urgent-background: var(background); - urgent-foreground: var(nord11); - alternate-urgent-background: var(background); - alternate-urgent-foreground: var(nord11); - selected-urgent-background: var(nord11); - selected-urgent-foreground: var(background); -} -element { - padding: 0px 0px 0px 7px; - spacing: 5px; - border: 0; - cursor: pointer; -} -element normal.normal { - background-color: var(normal-background); - text-color: var(normal-foreground); -} -element normal.urgent { - background-color: var(urgent-background); - text-color: var(urgent-foreground); -} -element normal.active { - background-color: var(active-background); - text-color: var(active-foreground); -} -element selected.normal { - background-color: var(selected-normal-background); - text-color: var(selected-normal-foreground); -} -element selected.urgent { - background-color: var(selected-urgent-background); - text-color: var(selected-urgent-foreground); -} -element selected.active { - background-color: var(selected-active-background); - text-color: var(selected-active-foreground); -} -element alternate.normal { - background-color: var(alternate-normal-background); - text-color: var(alternate-normal-foreground); -} -element alternate.urgent { - background-color: var(alternate-urgent-background); - text-color: var(alternate-urgent-foreground); -} -element alternate.active { - background-color: var(alternate-active-background); - text-color: var(alternate-active-foreground); -} -element-text { - background-color: rgba(0, 0, 0, 0%); - text-color: inherit; - highlight: inherit; - cursor: inherit; -} -element-icon { - background-color: rgba(0, 0, 0, 0%); - size: 1.0000em; - text-color: inherit; - cursor: inherit; -} -window { - padding: 0; - border: 0; - background-color: var(background); -} -mainbox { - padding: 0; - border: 0; -} -message { - margin: 0px 7px; -} -textbox { - text-color: var(foreground); -} -listview { - margin: 0px 0px 5px; - scrollbar: true; - spacing: 2px; - fixed-height: 0; -} -scrollbar { - padding: 0; - handle-width: 14px; - border: 0; - handle-color: var(nord3); -} -button { - spacing: 0; - text-color: var(normal-foreground); - cursor: pointer; -} -button selected { - background-color: var(selected-normal-background); - text-color: var(selected-normal-foreground); -} -inputbar { - padding: 7px; - margin: 7px; - spacing: 0; - text-color: var(normal-foreground); - background-color: var(nord3); - children: [ entry ]; -} -entry { - spacing: 0; - cursor: text; - text-color: var(normal-foreground); - background-color: var(nord3); -} diff --git a/homeConfig/dotfiles/sway/config b/homeConfig/dotfiles/sway/config deleted file mode 100644 index 98f271c..0000000 --- a/homeConfig/dotfiles/sway/config +++ /dev/null @@ -1,250 +0,0 @@ -# Autostart applications on Sway startup -exec { - exec alacritty -e sh -c 'neofetch; exec $SHELL'; -} - -# Default config for sway -# -# Copy this to ~/.config/sway/config and edit it to your liking. -# -# Read `man 5 sway` for a complete reference. - -### Variables -# -# Logo key. Use Mod1 for Alt. -set $mod Mod1 -# Home row direction keys, like vim -set $left h -set $down j -set $up k -set $right l -# Your preferred terminal emulator -set $term alacritty -# Your preferred application launcher -# Note: pass the final command to swaymsg so that the resulting window can be opened -# on the original workspace that the command was run on. -set $menu exec rofi -show drun -show-icons -drun-icon-theme Qogir -font "Noto Sans 14" - -### Output configuration -# -# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) -output * bg ~/.config/sway/wallpapers/mountains.jpg fill -# -# Example configuration: -# -output HDMI-A-1 resolution 1920x1080 position 1920,0 -# -# You can get the names of your outputs by running: swaymsg -t get_outputs - -### Idle configuration -# -# Example configuration: -# -# exec swayidle -w \ -# timeout 300 'swaylock -f -c 000000' \ -# timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ -# before-sleep 'swaylock -f -c 000000' -# -# This will lock your screen after 300 seconds of inactivity, then turn off -# your displays after another 300 seconds, and turn your screens back on when -# resumed. It will also lock your screen before your computer goes to sleep. - -### Input configuration -# -# You can get the names of your inputs by running: swaymsg -t get_inputs -# Read `man 5 sway-input` for more information about this section. - -input type:keyboard { - xkb_numlock enabled - xkb_layout us -} - -input type:pointer { - accel_profile "flat" - pointer_accel 0.65 -} - - -### Key bindings -# -# Basics: -# - # Start a terminal - bindsym $mod+Return exec $term - - # Kill focused window - bindsym $mod+q kill - - # Start your launcher - bindsym $mod+d exec $menu - - # Launch emoji keyboard - bindsym $mod+Shift+d exec emote - - # Launch ranger file explorer - bindsym $mod+Shift+f exec alacritty -e ranger - - # Screenshot - bindsym Print exec grim ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png - bindsym Shift+Print exec grim -g "$(slurp)" ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png - bindsym $mod+Print exec sh -c 'grim -g "$(swaymsg -t get_tree | jq -j '"'"'.. | select(.type?) | select(.focused).rect | "\(.x),\(.y) \(.width)x\(.height)"'"'"')" ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png' - - # Drag floating windows by holding down $mod and left mouse button. - # Resize them with right mouse button + $mod. - # Despite the name, also works for non-floating windows. - # Change normal to inverse to use left mouse button for resizing and right - # mouse button for dragging. - floating_modifier $mod normal - - # Reload the configuration file - bindsym $mod+Shift+c reload - - # Exit sway (logs you out of your Wayland session) - bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' -# -# Moving around: -# - # Move your focus around - bindsym $mod+$left focus left - bindsym $mod+$down focus down - bindsym $mod+$up focus up - bindsym $mod+$right focus right - # Or use $mod+[up|down|left|right] - bindsym $mod+Left focus left - bindsym $mod+Down focus down - bindsym $mod+Up focus up - bindsym $mod+Right focus right - - # Move the focused window with the same, but add Shift - bindsym $mod+Shift+$left move left - bindsym $mod+Shift+$down move down - bindsym $mod+Shift+$up move up - bindsym $mod+Shift+$right move right - # Ditto, with arrow keys - bindsym $mod+Shift+Left move left - bindsym $mod+Shift+Down move down - bindsym $mod+Shift+Up move up - bindsym $mod+Shift+Right move right -# -# Workspaces: -# - # Switch to workspace - bindsym $mod+1 workspace number 1 - bindsym $mod+2 workspace number 2 - bindsym $mod+3 workspace number 3 - bindsym $mod+4 workspace number 4 - bindsym $mod+5 workspace number 5 - bindsym $mod+6 workspace number 6 - bindsym $mod+7 workspace number 7 - bindsym $mod+8 workspace number 8 - bindsym $mod+9 workspace number 9 - bindsym $mod+0 workspace number 10 - # Move focused container to workspace - bindsym $mod+Shift+1 move container to workspace number 1 - bindsym $mod+Shift+2 move container to workspace number 2 - bindsym $mod+Shift+3 move container to workspace number 3 - bindsym $mod+Shift+4 move container to workspace number 4 - bindsym $mod+Shift+5 move container to workspace number 5 - bindsym $mod+Shift+6 move container to workspace number 6 - bindsym $mod+Shift+7 move container to workspace number 7 - bindsym $mod+Shift+8 move container to workspace number 8 - bindsym $mod+Shift+9 move container to workspace number 9 - bindsym $mod+Shift+0 move container to workspace number 10 - # Note: workspaces can have any name you want, not just numbers. - # We just use 1-10 as the default. -# -# Layout stuff: -# - # You can "split" the current object of your focus with - # $mod+b or $mod+v, for horizontal and vertical splits - # respectively. - bindsym $mod+b splith - bindsym $mod+v splitv - - # Switch the current container between different layout styles - bindsym $mod+s layout stacking - bindsym $mod+w layout tabbed - bindsym $mod+e layout toggle split - - # Make the current focus fullscreen - bindsym $mod+f fullscreen - - # Toggle the current focus between tiling and floating mode - bindsym $mod+Shift+space floating toggle - - # Swap focus between the tiling area and the floating area - bindsym $mod+space focus mode_toggle - - # Move focus to the parent container - bindsym $mod+a focus parent -# -# Scratchpad: -# - # Sway has a "scratchpad", which is a bag of holding for windows. - # You can send windows there and get them back later. - - # Move the currently focused window to the scratchpad - bindsym $mod+Shift+minus move scratchpad - - # Show the next scratchpad window or hide the focused scratchpad window. - # If there are multiple scratchpad windows, this command cycles through them. - bindsym $mod+minus scratchpad show -# -# Resizing containers: -# -mode "resize" { - # left will shrink the containers width - # right will grow the containers width - # up will shrink the containers height - # down will grow the containers height - bindsym $left resize shrink width 10px - bindsym $down resize grow height 10px - bindsym $up resize shrink height 10px - bindsym $right resize grow width 10px - - # Ditto, with arrow keys - bindsym Left resize shrink width 10px - bindsym Down resize grow height 10px - bindsym Up resize shrink height 10px - bindsym Right resize grow width 10px - - # Return to default mode - bindsym Return mode "default" - bindsym Escape mode "default" -} -bindsym $mod+r mode "resize" - -# -# Status Bar: -# -# Read `man 5 sway-bar` for more information about this section. - -bar { - position top - status_command while :; do echo "$(free -h | awk '/^Mem/ {print $3}') '|' $(date +'%I:%M:%S %p') '|' $(date +'%m-%d-%Y')"; sleep 1; done - font Noto Sans 10 - colors { - background #0A0E14 - statusline #FFFFFF - } -} - -# -# Borders: -# - -default_border none - -# -# Window Gaps: -# - -gaps inner 10 -smart_gaps off - -# -# Font -# - -font pango:Noto Sans, Noto Sans CJK, Noto Emoji, Noto Color Emoji 12 - diff --git a/homeConfig/dotfiles/sway/wallpapers/china_port.jpg b/homeConfig/dotfiles/sway/wallpapers/china_port.jpg deleted file mode 100644 index 8278f89..0000000 Binary files a/homeConfig/dotfiles/sway/wallpapers/china_port.jpg and /dev/null differ diff --git a/homeConfig/dotfiles/sway/wallpapers/mountains.jpg b/homeConfig/dotfiles/sway/wallpapers/mountains.jpg deleted file mode 100644 index 2b11097..0000000 Binary files a/homeConfig/dotfiles/sway/wallpapers/mountains.jpg and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/LICENSE b/homeConfig/dotfiles/themes/Juno-ocean/LICENSE deleted file mode 100644 index 9cecc1d..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. 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 -them 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 prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. 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. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey 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; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If 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 convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU 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 that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - 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. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -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. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - 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 -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - {one line to give the program's name and a brief idea of what it does.} - Copyright (C) {year} {name of author} - - 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 3 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, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - {project} Copyright (C) {year} {fullname} - This program 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, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU 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. But first, please read -. diff --git a/homeConfig/dotfiles/themes/Juno-ocean/README.md b/homeConfig/dotfiles/themes/Juno-ocean/README.md deleted file mode 100644 index acc0f6a..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/README.md +++ /dev/null @@ -1,15 +0,0 @@ - -![](Art/preview.png) - -#### Installation - -Extract the zip file to the themes directory i.e. `/usr/share/themes/` or `~/.themes/` (create it if necessary). - -To set the theme on Gnome, run the following commands in Terminal: - -``` -gsettings set org.gnome.desktop.interface gtk-theme "Juno" -gsettings set org.gnome.desktop.wm.preferences theme "Juno" -``` -or Change via distribution specific tool. - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/calendar-selected.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/calendar-selected.png deleted file mode 100644 index 9231290..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/calendar-selected.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/calendar-selected@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/calendar-selected@2.png deleted file mode 100644 index 91912a7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/calendar-selected@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active-dark.png deleted file mode 100644 index 0dc8ff2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active-dark@2.png deleted file mode 100644 index ceac843..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active.png deleted file mode 100644 index d5d1bfa..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active@2.png deleted file mode 100644 index 5070fe4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-active@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop-dark.png deleted file mode 100644 index 0dc8ff2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop-dark@2.png deleted file mode 100644 index ceac843..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop.png deleted file mode 100644 index d5d1bfa..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop@2.png deleted file mode 100644 index 5070fe4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-dark.png deleted file mode 100644 index d041d48..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-dark@2.png deleted file mode 100644 index 22892b7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover-dark.png deleted file mode 100644 index 0dc8ff2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover-dark@2.png deleted file mode 100644 index ceac843..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover.png deleted file mode 100644 index d5d1bfa..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover@2.png deleted file mode 100644 index 5070fe4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop-dark.png deleted file mode 100644 index ea6a1d9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop-dark@2.png deleted file mode 100644 index cdeff80..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop.png deleted file mode 100644 index 2dc2b7f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop@2.png deleted file mode 100644 index e411431..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-dark.png deleted file mode 100644 index ea6a1d9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-dark@2.png deleted file mode 100644 index cdeff80..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive.png deleted file mode 100644 index 2dc2b7f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive@2.png deleted file mode 100644 index e411431..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked.png deleted file mode 100644 index 03dd4e4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked@2.png deleted file mode 100644 index 809cc1a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-checked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active-dark.png deleted file mode 100644 index 2f0700b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active-dark@2.png deleted file mode 100644 index fe9c0b8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active.png deleted file mode 100644 index 4b889bd..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active@2.png deleted file mode 100644 index e6bc75f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-active@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop-dark.png deleted file mode 100644 index 4870a79..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop-dark@2.png deleted file mode 100644 index a718716..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop.png deleted file mode 100644 index dba173c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop@2.png deleted file mode 100644 index 860759c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-dark.png deleted file mode 100644 index 4870a79..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-dark@2.png deleted file mode 100644 index a718716..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover-dark.png deleted file mode 100644 index 4870a79..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover-dark@2.png deleted file mode 100644 index a718716..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover.png deleted file mode 100644 index dba173c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover@2.png deleted file mode 100644 index 860759c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop-dark.png deleted file mode 100644 index 43a88cf..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop-dark@2.png deleted file mode 100644 index ce65d7f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop.png deleted file mode 100644 index 6a138a8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop@2.png deleted file mode 100644 index a864581..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-dark.png deleted file mode 100644 index 43a88cf..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-dark@2.png deleted file mode 100644 index ce65d7f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive.png deleted file mode 100644 index 6a138a8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive@2.png deleted file mode 100644 index a864581..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed.png deleted file mode 100644 index dba173c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed@2.png deleted file mode 100644 index 860759c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-mixed@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active-dark.png deleted file mode 100644 index 5f3b98f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active-dark@2.png deleted file mode 100644 index 0210189..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active.png deleted file mode 100644 index c90b21d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active@2.png deleted file mode 100644 index 1c52d1b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-active@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop-dark.png deleted file mode 100644 index cf0529d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop-dark@2.png deleted file mode 100644 index fddf942..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop.png deleted file mode 100644 index d2b6816..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop@2.png deleted file mode 100644 index 24946f3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-dark.png deleted file mode 100644 index cf0529d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-dark@2.png deleted file mode 100644 index fddf942..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover-dark.png deleted file mode 100644 index 0c2bb84..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover-dark@2.png deleted file mode 100644 index 4e14e33..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover.png deleted file mode 100644 index 6007b38..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover@2.png deleted file mode 100644 index a56cf3f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop-dark.png deleted file mode 100644 index e9a1979..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop-dark@2.png deleted file mode 100644 index d50514e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop.png deleted file mode 100644 index 1ea8200..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop@2.png deleted file mode 100644 index 497d2d4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-dark.png deleted file mode 100644 index 907ddf2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-dark@2.png deleted file mode 100644 index 77a4de2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive.png deleted file mode 100644 index 1ea8200..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive@2.png deleted file mode 100644 index 497d2d4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked.png deleted file mode 100644 index d2b6816..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked@2.png deleted file mode 100644 index 24946f3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/checkbox-unchecked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/close.png deleted file mode 100644 index 0dcd2e6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/close.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/close.svg deleted file mode 100755 index 89d1af0..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/close.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/close@2.png deleted file mode 100644 index ef65f9c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/close@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight.png deleted file mode 100644 index 7dc0721..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight.svg deleted file mode 100755 index 65acc6b..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight@2.png deleted file mode 100644 index 96ed4eb..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_prelight@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_pressed.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/close_pressed.svg deleted file mode 100755 index 0e9584a..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_pressed.svg +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused.png deleted file mode 100644 index c2600c5..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused.svg deleted file mode 100755 index a020a2c..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused@2.png deleted file mode 100644 index 258f7c3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/close_unfocused@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-checked.png deleted file mode 100755 index 9118717..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-checked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-checked@2.png deleted file mode 100755 index b47379e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-checked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-unchecked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-unchecked.png deleted file mode 100755 index 508eea8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-unchecked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-unchecked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-unchecked@2.png deleted file mode 100755 index d8c6bf0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/grid-selection-unchecked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize.png deleted file mode 100644 index 2484658..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize.svg deleted file mode 100755 index 569666d..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize@2.png deleted file mode 100644 index bbf5969..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight.png deleted file mode 100644 index 1c904cb..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight.svg deleted file mode 100755 index 8f5fd15..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight.svg +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight@2.png deleted file mode 100644 index f8aa16f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_prelight@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_pressed.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_pressed.svg deleted file mode 100755 index 2a4397a..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_pressed.svg +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_unfocused.png deleted file mode 100644 index e72035c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_unfocused.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_unfocused.svg deleted file mode 100755 index b9fc206..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/maximize_unfocused.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-hover.png deleted file mode 100755 index 74a1a38..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-hover@2.png deleted file mode 100755 index 6bb911f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-insensitive.png deleted file mode 100755 index 2186347..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-insensitive@2.png deleted file mode 100755 index 85a7237..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked.png deleted file mode 100755 index 59e1524..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked@2.png deleted file mode 100755 index fabd74d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-checked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-hover.png deleted file mode 100755 index aa5e700..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-hover@2.png deleted file mode 100755 index 24fff4c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-insensitive.png deleted file mode 100755 index 9ba1e17..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-insensitive@2.png deleted file mode 100755 index 4cb0736..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-selected.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-selected.png deleted file mode 100755 index 2064a63..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-selected.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-selected@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-selected@2.png deleted file mode 100755 index 900ccea..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed-selected@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed.png deleted file mode 100755 index 9b7c144..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed@2.png deleted file mode 100755 index e32aa1c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-mixed@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-unchecked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-unchecked.png deleted file mode 100755 index 921e346..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-unchecked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-unchecked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-unchecked@2.png deleted file mode 100755 index 53ca843..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-checkbox-unchecked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-hover.png deleted file mode 100755 index c084e40..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-hover@2.png deleted file mode 100755 index cdbab86..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-insensitive.png deleted file mode 100755 index 2b08b40..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-insensitive@2.png deleted file mode 100755 index 0d2ad9b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked.png deleted file mode 100755 index 45681b9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked@2.png deleted file mode 100755 index e986329..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/menuitem-radio-checked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/min.png deleted file mode 100644 index 77be70c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/min.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/min.svg deleted file mode 100755 index baca961..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/min.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/min@2.png deleted file mode 100644 index 70c0a24..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/min@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight.png deleted file mode 100644 index c8d3c6f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight.svg deleted file mode 100755 index 9126d6a..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight@2.png deleted file mode 100644 index b35c6a6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_prelight@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_pressed.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/min_pressed.svg deleted file mode 100755 index 4dccd92..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_pressed.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/min_unfocused.png deleted file mode 100644 index e72035c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_unfocused.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/min_unfocused.svg deleted file mode 100755 index b9fc206..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/min_unfocused.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle-vertical.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle-vertical.png deleted file mode 100755 index 36ed49d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle-vertical.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle-vertical@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle-vertical@2.png deleted file mode 100755 index 3e20126..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle-vertical@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle.png deleted file mode 100755 index 05c8865..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle@2.png deleted file mode 100755 index 35b9898..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/pane-handle@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/path4417.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/path4417.png deleted file mode 100644 index 33d9b45..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/path4417.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active-dark.png deleted file mode 100644 index 2af22ae..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active-dark@2.png deleted file mode 100644 index b69bfc6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active.png deleted file mode 100644 index 96d4ba1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active@2.png deleted file mode 100644 index a3ed9f9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-active@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop-dark.png deleted file mode 100644 index a1943c3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop-dark@2.png deleted file mode 100644 index 4fa12da..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop.png deleted file mode 100644 index 1842e03..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop@2.png deleted file mode 100644 index 8b493e9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-dark.png deleted file mode 100644 index 2af22ae..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-dark@2.png deleted file mode 100644 index b69bfc6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover-dark.png deleted file mode 100644 index ed1c55e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover-dark@2.png deleted file mode 100644 index eb08329..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover.png deleted file mode 100644 index c6c9233..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover@2.png deleted file mode 100644 index e5b35c6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop-dark.png deleted file mode 100644 index 041ffe7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop-dark@2.png deleted file mode 100644 index 90e00d8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop.png deleted file mode 100644 index 9d2bb3f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop@2.png deleted file mode 100644 index 79ce5f5..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-dark.png deleted file mode 100644 index 7b8c864..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-dark@2.png deleted file mode 100644 index b94b697..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive.png deleted file mode 100644 index 0059d97..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive@2.png deleted file mode 100644 index e436822..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked.png deleted file mode 100644 index 96d4ba1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked@2.png deleted file mode 100644 index a3ed9f9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-checked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active-dark.png deleted file mode 100644 index 9fd7415..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active-dark@2.png deleted file mode 100644 index e47ba43..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active.png deleted file mode 100644 index ee7ed3c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active@2.png deleted file mode 100644 index f1a36f4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-active@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop-dark.png deleted file mode 100644 index 6b39c48..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop-dark@2.png deleted file mode 100644 index f48ce17..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop.png deleted file mode 100644 index 671368f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop@2.png deleted file mode 100644 index af8a5ce..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-dark.png deleted file mode 100644 index 6b39c48..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-dark@2.png deleted file mode 100644 index f48ce17..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover-dark.png deleted file mode 100644 index 6b39c48..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover-dark@2.png deleted file mode 100644 index f48ce17..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover.png deleted file mode 100644 index 671368f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover@2.png deleted file mode 100644 index af8a5ce..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop-dark.png deleted file mode 100644 index 291c174..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop-dark@2.png deleted file mode 100644 index f9634a0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop.png deleted file mode 100644 index 04bc827..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop@2.png deleted file mode 100644 index ae010af..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-dark.png deleted file mode 100644 index 291c174..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-dark@2.png deleted file mode 100644 index f9634a0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive.png deleted file mode 100644 index 04bc827..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive@2.png deleted file mode 100644 index ae010af..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed.png deleted file mode 100644 index 671368f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed@2.png deleted file mode 100644 index af8a5ce..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-mixed@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-selected-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-selected-insensitive@2.png deleted file mode 100755 index f928dbc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-selected-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-selected@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-selected@2.png deleted file mode 100755 index dea193a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-selected@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active-dark.png deleted file mode 100644 index 141e78d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active-dark@2.png deleted file mode 100644 index 35730f0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active.png deleted file mode 100644 index 07b1eb3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active@2.png deleted file mode 100644 index 62666ea..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-active@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop-dark.png deleted file mode 100644 index 8ab5d40..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop-dark@2.png deleted file mode 100644 index e20acfb..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop.png deleted file mode 100644 index 451b340..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop@2.png deleted file mode 100644 index b3dc78b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-dark.png deleted file mode 100644 index 0b868f0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-dark@2.png deleted file mode 100644 index 74fbfd6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover-dark.png deleted file mode 100644 index 141e78d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover-dark@2.png deleted file mode 100644 index 35730f0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover.png deleted file mode 100644 index 07b1eb3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover@2.png deleted file mode 100644 index 62666ea..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop-dark.png deleted file mode 100644 index 7b4e96f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop-dark@2.png deleted file mode 100644 index 02488dd..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop.png deleted file mode 100644 index 925c40f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop@2.png deleted file mode 100644 index c45e23d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-backdrop@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-dark.png deleted file mode 100644 index ee59368..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-dark@2.png deleted file mode 100644 index fdad567..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive.png deleted file mode 100644 index 2555d5b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive@2.png deleted file mode 100644 index e6cd2a1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked.png deleted file mode 100644 index e575d21..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked@2.png deleted file mode 100644 index fddde11..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unchecked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected-hover@2.png deleted file mode 100755 index 64c745f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected-insensitive@2.png deleted file mode 100755 index bbc0bda..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected.svg deleted file mode 100755 index 9c78339..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected@2.png deleted file mode 100755 index 0c01111..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/radio-unselected@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-hover.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-hover.svg deleted file mode 100644 index d2c5c93..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-hover.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-hover@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-hover@2.png deleted file mode 100755 index d64f411..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-hover@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-insensitive.png deleted file mode 100755 index 20d278d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-insensitive@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-insensitive@2.png deleted file mode 100755 index 20e740d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider-insensitive@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider.svg deleted file mode 100644 index 5a4a425..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider@2.png deleted file mode 100755 index 1a860df..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/scale-slider@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked-dark.png deleted file mode 100644 index 0dc8ff2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked-dark@2.png deleted file mode 100644 index ceac843..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked.png deleted file mode 100644 index d5d1bfa..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked@2.png deleted file mode 100644 index 5070fe4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-checked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed-dark.png deleted file mode 100644 index 2f0700b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed-dark@2.png deleted file mode 100644 index fe9c0b8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed.png deleted file mode 100644 index 4b889bd..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed@2.png deleted file mode 100644 index e6bc75f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-mixed@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked-dark.png deleted file mode 100644 index 5f3b98f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked-dark@2.png deleted file mode 100644 index 0210189..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked.png deleted file mode 100644 index c90b21d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked@2.png deleted file mode 100644 index 1c52d1b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-checkbox-unchecked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked-dark.png deleted file mode 100644 index 2af22ae..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked-dark@2.png deleted file mode 100644 index b69bfc6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked.png deleted file mode 100644 index 96d4ba1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked@2.png deleted file mode 100644 index a3ed9f9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-checked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed-dark.png deleted file mode 100644 index 9fd7415..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed-dark@2.png deleted file mode 100644 index e47ba43..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed.png deleted file mode 100644 index ee7ed3c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed@2.png deleted file mode 100644 index f1a36f4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-mixed@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked-dark.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked-dark.png deleted file mode 100644 index 141e78d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked-dark.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked-dark@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked-dark@2.png deleted file mode 100644 index 35730f0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked-dark@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked.png deleted file mode 100644 index 07b1eb3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked@2.png b/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked@2.png deleted file mode 100644 index 62666ea..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/assets/selected-radio-unchecked@2.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-insensitive.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-insensitive.svg deleted file mode 100755 index 30b08fe..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-insensitive.svg +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-insensitive@2.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-insensitive@2.svg deleted file mode 100755 index 7372b08..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-insensitive@2.svg +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-off.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-off.svg deleted file mode 100755 index f5800e1..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-off.svg +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-off@2.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-off@2.svg deleted file mode 100755 index f5800e1..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-off@2.svg +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-on.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-on.svg deleted file mode 100755 index 03cc342..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-on.svg +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-on@2.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-on@2.svg deleted file mode 100755 index 03cc342..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-on@2.svg +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-insensitive.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-insensitive.svg deleted file mode 100755 index 9aa5130..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-insensitive.svg +++ /dev/null @@ -1,11540 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-insensitive@2.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-insensitive@2.svg deleted file mode 100755 index 069b0a3..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-insensitive@2.svg +++ /dev/null @@ -1,11540 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-off.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-off.svg deleted file mode 100755 index fd4e313..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-off.svg +++ /dev/null @@ -1,11523 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-off@2.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-off@2.svg deleted file mode 100755 index fd4e313..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-off@2.svg +++ /dev/null @@ -1,11523 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-on.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-on.svg deleted file mode 100755 index be0b5bb..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-on.svg +++ /dev/null @@ -1,11523 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-on@2.svg b/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-on@2.svg deleted file mode 100755 index be0b5bb..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/assets/switch-slider-on@2.svg +++ /dev/null @@ -1,11523 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/cinnamon-dark.css b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/cinnamon-dark.css deleted file mode 100644 index 2c7fdc3..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/cinnamon-dark.css +++ /dev/null @@ -1,1445 +0,0 @@ -stage { - color: #6F7678; } - -.label-shadow { - color: rgba(0, 0, 0, 0); } - -.menu #notification .notification-button, .menu #notification .notification-icon-button, .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .sound-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #6F7678; - background-color: #131520; - border: 1px solid rgba(25, 26, 34, 0.9); - box-shadow: inset 0 2px 4px rgba(19, 21, 32, 0.05); } - .menu #notification .notification-button, .menu #notification .notification-icon-button, .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .sound-button, .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .sound-button:focus, .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus, .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { - border-radius: 2px; } - .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .sound-button:focus { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #6F7678; - background-color: #131520; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(19, 21, 32, 0.05); } - .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #6F7678; - background-color: #1c2031; - border: 1px solid rgba(25, 26, 34, 0.9); - box-shadow: inset 0 2px 4px rgba(28, 32, 49, 0.05); } - .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #6F7678; - background-color: #131520; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(19, 21, 32, 0.05); } - .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #fefefe; - background-color: #00A9A5; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px #00A9A5; } - .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: rgba(111, 118, 120, 0.45); - border: 1px solid rgba(25, 26, 34, 0.45); - background-color: rgba(19, 21, 32, 0.55); - box-shadow: inset 0 2px 4px rgba(19, 21, 32, 0.05); } - -.notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(45, 49, 76, 0.4); } - .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(58, 63, 99, 0.5); } - .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus { - color: #00A9A5; } - .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #fefefe; - border: 1px solid #00A9A5; - background-color: #00A9A5; } - .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #3b3d42; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(45, 49, 76, 0.25); } - -.menu #notification StEntry, .popup-menu #notification StEntry, #menu-search-entry { - padding: 7px; - caret-size: 1px; - selection-background-color: #00A9A5; - selected-color: #fefefe; - transition-duration: 300ms; - border-radius: 3px; - color: #6F7678; - background-color: #0f111a; - border: 1px solid rgba(25, 26, 34, 0.9); - box-shadow: inset 0 2px 4px rgba(15, 17, 26, 0.05); } - .menu #notification StEntry:focus, .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .menu #notification StEntry:hover, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { - color: #6F7678; - background-color: #0f111a; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(15, 17, 26, 0.05); } - .menu #notification StEntry:insensitive, .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { - color: rgba(111, 118, 120, 0.45); - background-color: #0e1018; - border-color: 1px solid rgba(19, 20, 28, 0.945); - box-shadow: inset 0 2px 4px rgba(14, 16, 24, 0.05); } - .menu #notification StEntry StIcon.capslock-warning, .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #F27835; - padding: 0 4px; } - -.notification StEntry { - padding: 7px; - caret-size: 1px; - caret-color: #BAC3CF; - selection-background-color: #00A9A5; - selected-color: #fefefe; - transition-duration: 300ms; - border-radius: 3px; - color: #BAC3CF; - background-color: rgba(45, 49, 76, 0.4); - border: 1px solid rgba(0, 0, 0, 0.4); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:focus { - color: #fefefe; - background-color: #00A9A5; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:insensitive { - color: rgba(186, 195, 207, 0.55); - background-color: rgba(45, 49, 76, 0.25); - border: 1px solid rgba(0, 0, 0, 0.4); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -StScrollView.vfade { - -st-vfade-offset: 0px; } -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(15, 17, 26, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 2px; - background-color: #34383d; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #2a2d33; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #00A9A5; } - -.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: 0.3em; - -slider-background-color: #181c2a; - -slider-border-color: rgba(13, 14, 22, 0.3); - -slider-active-background-color: #00A9A5; - -slider-active-border-color: rgba(13, 14, 22, 0.3); - -slider-border-width: 1px; - -slider-handle-radius: 0.5em; - height: 1em; - min-width: 15em; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; } - .popup-menu-item:active .popup-slider-menu-item, - .popup-menu-item:active .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fefefe; } - -.check-box CinnamonGenericContainer { - spacing: .2em; - min-height: 30px; - padding-top: 2px; } -.check-box StLabel { - font-weight: normal; } -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } -.check-box:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } -.check-box:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } -.check-box:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.radiobutton CinnamonGenericContainer { - spacing: .2em; - height: 26px; - padding-top: 2px; } -.radiobutton StLabel { - padding-top: 4px; - font-size: 0.9em; - box-shadow: none; } -.radiobutton StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } -.radiobutton:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } -.radiobutton:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } -.radiobutton:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("dark-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("dark-assets/switch/switch-on.svg"); } - .popup-menu-item:active .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item:active .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.cinnamon-link { - color: #82AAFF; - text-decoration: underline; } - .cinnamon-link:hover { - color: #b5cdff; } - -#Tooltip { - border-radius: 3px; - padding: 5px 12px; - background-color: #040406; - color: #BAC3CF; - font-size: 1em; - font-weight: normal; - text-align: center; } - -.menu, -.popup-menu, -.popup-combo-menu { - color: #6F7678; - border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } - .menu-arrow, - .popup-menu-arrow { - icon-size: 16px; } - .menu .popup-sub-menu, - .popup-menu .popup-sub-menu, - .popup-combo-menu .popup-sub-menu { - background-gradient-direction: none; - box-shadow: none; - border-image: url("dark-assets/menu/submenu.svg") 9 9 9 9; } - .menu .popup-sub-menu .popup-menu-item:ltr, - .popup-menu .popup-sub-menu .popup-menu-item:ltr, - .popup-combo-menu .popup-sub-menu .popup-menu-item:ltr { - padding-right: 0em; } - .menu .popup-sub-menu .popup-menu-item:rtl, - .popup-menu .popup-sub-menu .popup-menu-item:rtl, - .popup-combo-menu .popup-sub-menu .popup-menu-item:rtl { - padding-left: 0em; } - .menu .popup-sub-menu StScrollBar, - .popup-menu .popup-sub-menu StScrollBar, - .popup-combo-menu .popup-sub-menu StScrollBar { - padding: 4px; } - .menu .popup-sub-menu StScrollBar StBin#trough, .menu .popup-sub-menu StScrollBar StBin#vhandle, - .popup-menu .popup-sub-menu StScrollBar StBin#trough, - .popup-menu .popup-sub-menu StScrollBar StBin#vhandle, - .popup-combo-menu .popup-sub-menu StScrollBar StBin#trough, - .popup-combo-menu .popup-sub-menu StScrollBar StBin#vhandle { - border-width: 0; } - .menu .popup-menu-content, - .popup-menu .popup-menu-content, - .popup-combo-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .menu .popup-menu-item, - .popup-menu .popup-menu-item, - .popup-combo-menu .popup-menu-item { - padding: .4em 1.75em; - spacing: 1em; } - .menu .popup-menu-item:active, - .popup-menu .popup-menu-item:active, - .popup-combo-menu .popup-menu-item:active { - color: #fefefe; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .menu .popup-menu-item:insensitive, - .popup-menu .popup-menu-item:insensitive, - .popup-combo-menu .popup-menu-item:insensitive { - color: rgba(111, 118, 120, 0.5); - background: none; } - .menu .popup-inactive-menu-item, - .popup-menu .popup-inactive-menu-item, - .popup-combo-menu .popup-inactive-menu-item { - color: #6F7678; } - .menu .popup-inactive-menu-item:insensitive, - .popup-menu .popup-inactive-menu-item:insensitive, - .popup-combo-menu .popup-inactive-menu-item:insensitive { - color: rgba(111, 118, 120, 0.45); } - .menu .popup-menu-item:active .popup-inactive-menu-item, - .popup-menu .popup-menu-item:active .popup-inactive-menu-item, - .popup-combo-menu .popup-menu-item:active .popup-inactive-menu-item { - color: #fefefe; } - .menu-icon, - .popup-menu-icon { - icon-size: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 3px; - -arrow-background-color: rgba(0, 0, 0, 0); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0); - -arrow-base: 0; - -arrow-rise: 0; } - -.popup-combo-menu { - padding: 10px 1px; } - -.popup-combobox-item { - spacing: 1em; } - -.popup-separator-menu-item { - -gradient-height: 2px; - -gradient-start: transparent; - -gradient-end: transparent; - -margin-horizontal: 1.5em; - height: 1em; } - -.popup-alternating-menu-item:alternate { - font-weight: normal; } - -.popup-device-menu-item { - spacing: .5em; } - -.popup-subtitle-menu-item { - font-weight: normal; } - -.nm-menu-item-icons { - spacing: .5em; } - -#panel { - height: 28px; - width: 32px; - font-weight: 700; - background-color: #0D0E16; - color: #6F7678; } - #panel:highlight { - border-image: none; - background-color: rgba(252, 65, 56, 0.5); } - #panelLeft { - spacing: 4px; } - #panelLeft:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(255, 0, 0, 0.05); - background-gradient-end: rgba(255, 0, 0, 0.2); } - #panelLeft:ltr { - padding-right: 4px; } - #panelLeft:rtl { - padding-left: 4px; } - #panelLeft.vertical { - padding: 0; } - #panelLeft.vertical:ltr { - padding-right: 0px; } - #panelLeft.vertical:rtl { - padding-left: 0px; } - #panelRight:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0, 0, 255, 0.05); - background-gradient-end: rgba(0, 0, 255, 0.2); } - #panelRight:ltr { - padding-left: 4px; - spacing: 0px; } - #panelRight:rtl { - padding-right: 4px; - spacing: 0px; } - #panelRight.vertical { - padding: 0; } - #panelRight.vertical:ltr { - padding-right: 0px; } - #panelRight.vertical:rtl { - padding-left: 0px; } - #panelCenter { - spacing: 4px; } - #panelCenter:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0, 255, 0, 0.05); - background-gradient-end: rgba(0, 255, 0, 0.2); } - -.panel-top, .panel-bottom, .panel-left, .panel-right { - color: #6F7678; - font-size: 1em; - padding: 0px; } -.panel-dummy { - background-color: rgba(252, 65, 56, 0.5); } - .panel-dummy:entered { - background-color: rgba(252, 65, 56, 0.6); } -.panel-status-button { - border-width: 0; - -natural-hpadding: 3px; - -minimum-hpadding: 3px; - font-weight: bold; - color: white; - height: 22px; } -.panel-button { - -natural-hpadding: 6px; - -minimum-hpadding: 2px; - font-weight: bold; - color: green; - transition-duration: 100; } - -.system-status-icon { - icon-size: 16px; - padding: 0 1px; } - -#overview { - spacing: 12px; } - -.window-caption { - background-color: #040406; - border: 1px solid #040406; - color: #BAC3CF; - spacing: 25px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; } - .window-caption#selected { - background-color: #00A9A5; - color: #fefefe; - border: 1px solid #00A9A5; - spacing: 25px; } - -.expo-workspaces-name-entry, -.expo-workspaces-name-entry#selected { - height: 15px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; - color: #BAC3CF; - background-color: rgba(45, 49, 76, 0.4); - border: 1px solid rgba(0, 0, 0, 0.4); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .expo-workspaces-name-entry:focus, - .expo-workspaces-name-entry#selected:focus { - border: 1px solid #00A9A5; - background-color: #00A9A5; - color: #fefefe; - font-style: italic; - transition-duration: 300; - selection-background-color: #fefefe; - selected-color: #00A9A5; } - -.expo-workspace-thumbnail-frame { - border: 4px solid rgba(255, 255, 255, 0); - background-color: rgba(255, 255, 255, 0); - border-radius: 2px; } - .expo-workspace-thumbnail-frame#active { - border: 4px solid #00A9A5; - background-color: black; - border-radius: 2px; } - -.expo-background { - background-color: #040406; } - -.workspace-thumbnails { - spacing: 26px; } - .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { - padding: 8px; } -.workspace-add-button { - background-image: url("common-assets/misc/add-workspace.svg"); - height: 200px; - width: 35px; - transition-duration: 100; } - .workspace-add-button:hover { - background-image: url("common-assets/misc/add-workspace-hover.svg"); - transition-duration: 100; } - .workspace-add-button:active { - background-image: url("common-assets/misc/add-workspace-active.svg"); - transition-duration: 100; } -.workspace-overview-background-shade { - background-color: rgba(0, 0, 0, 0.5); } - -.workspace-close-button, -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - -cinnamon-close-overlap: 10px; } - .workspace-close-button:hover, - .window-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .workspace-close-button:active, - .window-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close-area { - background-image: url("common-assets/misc/trash-icon.svg"); - height: 120px; - width: 400px; } - -.about-content { - width: 550px; - height: 250px; - spacing: 8px; - padding-bottom: 10px; } -.about-title { - font-size: 2em; - font-weight: bold; } -.about-uuid { - font-size: 10px; - color: #888; } -.about-icon { - padding-right: 20px; - padding-bottom: 14px; } -.about-scrollBox { - border: 1px solid rgba(25, 26, 34, 0.9); - border-radius: 2px; - background-color: #0F111A; - padding: 4px; - padding-right: 0; - border-radius: 0; } - .about-scrollBox-innerBox { - padding: 1.2em; - spacing: 1.2em; } -.about-description { - padding-top: 4px; - padding-bottom: 16px; } -.about-version { - padding-left: 7px; - font-size: 10px; - color: #888; } - -.calendar { - padding: .4em 1.75em; - spacing-rows: 0px; - spacing-columns: 0px; } - -.calendar-month-label { - color: #6F7678; - font-weight: bold; - padding: 8px 0; } - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 16px; - height: 16px; } - -.calendar-change-month-back { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - -.datemenu-date-label { - padding: .4em 1.75em; - font-weight: bold; - text-align: center; - color: #6F7678; - border-radius: 2px; } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - -.calendar-day-heading { - color: rgba(111, 118, 120, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(111, 118, 120, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #6F7678; - background-color: transparent; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fefefe; - background-color: #00A9A5; - border-width: 0; } - -.calendar-other-month-day { - color: rgba(111, 118, 120, 0.3); - opacity: 1; } - -.calendar-week-number { - color: rgba(111, 118, 120, 0.7); - font-size: 80%; } - -#notification { - border-radius: 3px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - padding: 13px; - spacing-rows: 10px; - spacing-columns: 10px; - margin-from-right-edge-of-screen: 20px; - width: 34em; - color: #BAC3CF; } - .menu #notification, .popup-menu #notification { - border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } - .menu #notification, .menu #notification.multi-line-notification, .popup-menu #notification, .popup-menu #notification.multi-line-notification { - color: #6F7678; } - .menu #notification .notification-button, .menu #notification .notification-icon-button, .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { - padding: 5px; } - #notification.multi-line-notification { - padding-bottom: 13px; - color: #BAC3CF; } - #notification-scrollview { - max-height: 10em; } - #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { - height: 1em; } - #notification-scrollview:ltr > StScrollBar { - padding-left: 6px; } - #notification-scrollview:rtl > StScrollBar { - padding-right: 6px; } - #notification-body { - spacing: 5px; } - #notification-actions { - spacing: 10px; } - -.notification-with-image { - min-height: 159px; - color: #BAC3CF; } -.notification-button, .notification-icon-button { - padding: 5px; } -.notification-icon-button > StIcon { - icon-size: 36px; } - -#altTabPopup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - color: #BAC3CF; - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list > StBoxLayout { - padding: 4px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #00A9A5; } - .switcher-list .item-box:selected { - color: #fefefe; - background-color: #00A9A5; - border: 0px solid #00A9A5; } - .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: #BAC3CF; } - .switcher-arrow:highlighted { - border-color: rgba(0, 0, 0, 0); - color: #6F7678; } - -.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("common-assets/misc/corner-ripple.svg"); - background-size: contain; } - -.lightbox { - background-color: rgba(0, 0, 0, 0.4); } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #6F7678; - background-color: rgba(13, 14, 22, 0); - border: none; - border-image: url("dark-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; } - .modal-dialog-button-box { - spacing: 0; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("dark-assets/misc/button-box.svg") 9 9 9 9; } - .modal-dialog-button-box .modal-dialog-button { - padding-top: 0; - padding-bottom: 0; - height: 30px; } - -.run-dialog { - padding: 0px 15px 10px 15px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; } - .run-dialog > * { - padding: 0; } - .run-dialog-label { - font-size: 0; - font-weight: bold; - color: #BAC3CF; - padding-bottom: 0; } - .run-dialog-error-label { - color: #FC4138; } - .run-dialog-error-box { - padding-top: 15px; - spacing: 5px; } - .run-dialog-completion-box { - padding-left: 15px; - font-size: 10px; } - .run-dialog-entry { - width: 21em; - padding: 7px; - border-radius: 3px; - caret-color: #BAC3CF; - selected-color: #fefefe; - selection-background-color: #00A9A5; - color: #BAC3CF; - background-color: rgba(45, 49, 76, 0.4); - border: 1px solid rgba(0, 0, 0, 0.4); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .run-dialog-entry:focus { - color: #fefefe; - background-color: #00A9A5; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .run-dialog .modal-dialog-button-box { - border: none; - box-shadow: none; - background: none; - background-gradient-direction: none; } - -/* CinnamonMountOperation Dialogs */ -.cinnamon-mount-operation-icon { - icon-size: 48px; } - -.mount-password-reask { - color: #F27835; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - .show-processes-dialog-subject, - .mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - .show-processes-dialog-description, - .mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - .show-processes-dialog-app-list-item { - color: #ccc; } - .show-processes-dialog-app-list-item:hover { - color: white; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - .show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - .show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - .show-processes-dialog-app-list-item-name { - font-size: 1.1em; } - -.magnifier-zoom-region { - border: 2px solid maroon; } - .magnifier-zoom-region .full-screen { - border-width: 0px; } - -#keyboard { - background-color: #040406; - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.4); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(45, 49, 76, 0.4); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(58, 63, 99, 0.5); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #fefefe; - border: 1px solid #00A9A5; - background-color: #00A9A5; } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #3b3d42; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(45, 49, 76, 0.25); } - -.keyboard-subkeys { - color: #BAC3CF; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: #040406; - -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; - padding: 10px; - transition-duration: 300; - background-color: #0D0E16; - border: 1px solid rgba(25, 26, 34, 0.9); } -.menu-favorites-button { - padding: 10px; - border: 1px solid rgba(0, 0, 0, 0); } -.menu-places-box { - margin: auto; - padding: 10px; - border: 0px solid red; } -.menu-places-button { - padding: 10px; } -.menu-categories-box { - padding: 10px 30px 10px 30px; } -.menu-applications-inner-box, .menu-applications-outer-box { - padding: 10px 10px 0 10px; } -.menu-application-button { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0); } - .menu-application-button:highlighted { - font-weight: bold; } - .menu-application-button-selected { - padding: 7px; } - .menu-application-button-selected:highlighted { - font-weight: bold; } - .menu-application-button-label:ltr { - padding-left: 5px; } - .menu-application-button-label:rtl { - padding-right: 5px; } -.menu-category-button { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0); } - .menu-category-button-selected { - padding: 7px; } - .menu-category-button-hover { - background-color: red; - border-radius: 2px; } - .menu-category-button-greyed { - padding: 7px; - color: rgba(111, 118, 120, 0.45); - border: 1px solid rgba(0, 0, 0, 0); } - .menu-category-button-label:ltr { - padding-left: 5px; } - .menu-category-button-label:rtl { - padding-right: 5px; } -.menu-selected-app-box { - padding-right: 30px; - padding-left: 28px; - text-align: right; - height: 30px; } - .menu-selected-app-box:rtl { - padding-top: 10px; - height: 30px; } -.menu-selected-app-title { - font-weight: bold; } -.menu-selected-app-description { - max-width: 150px; } -.menu-search-box:ltr { - padding-left: 30px; } -.menu-search-box-rtl { - padding-right: 30px; } - -#menu-search-entry { - width: 250px; - min-height: 15px; - font-weight: normal; - caret-color: #6F7678; } - -.menu-search-entry-icon { - icon-size: 1em; - color: #6F7678; } - -/* Context menu (at the moment only for favorites) */ -.info-osd { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 16px; - color: #6F7678; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: #6F7678; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #00A9A5; } - .osd-window .level-bar { - background-color: #00A9A5; } - -.window-list-box { - spacing: 6px; - padding-left: 10px; - padding-top: 1px; } - .window-list-box.vertical { - spacing: 2px; - padding-left: 0px; - padding-right: 0px; - padding-top: 10px; - padding-bottom: 10px; } - .window-list-box:highlight { - background-color: rgba(252, 65, 56, 0.5); } -.window-list-item-label { - font-weight: bold; - width: 15em; - min-width: 5px; } -.window-list-item-box { - font-weight: bold; - background-image: none; - padding-top: 0; - padding-left: 8px; - padding-right: 8px; - transition-duration: 100; - color: rgba(254, 254, 254, 0.6); } - .window-list-item-box.top, .window-list-item-box.bottom { - border-bottom-width: 2px; } - .window-list-item-box.top StLabel, .window-list-item-box.bottom StLabel { - padding-left: 2px; } - .window-list-item-box.right { - padding-left: 0px; - padding-right: 0px; - border-right-width: 2px; } - .window-list-item-box.right StBin { - padding-right: 0; } - .window-list-item-box.left { - padding-left: 0px; - padding-right: 0px; - border-left-width: 2px; } - .window-list-item-box.left StBin { - padding-left: 1px; } - .window-list-item-box:hover, .window-list-item-box:groupFocus { - color: #fefefe; - background-color: rgba(254, 254, 254, 0.1); } - .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus, .window-list-item-box:running { - color: #fefefe; - border-color: #00A9A5; } - .window-list-item-box .progress { - background-color: rgba(0, 169, 165, 0.8); } -.window-list-item-demands-attention { - background-gradient-direction: vertical; - background-gradient-start: #F04A50; - background-gradient-end: #F04A50; } -.window-list-preview { - spacing: 6px; - color: #6F7678; - border: 1px solid rgba(25, 26, 34, 0.9); - background-color: #0D0E16; - border-radius: 3px; - padding: 6px 12px 12px 12px; - font-size: 1em; } - -.grouped-window-list-item-label { - font-weight: bold; - width: 15em; - min-width: 5px; } -.grouped-window-list-item-box { - text-align: left; - font-weight: bold; - background-image: none; - padding-top: 0; - padding-left: 8px; - padding-right: 8px; - transition-duration: 100; - color: rgba(254, 254, 254, 0.6); } - .grouped-window-list-item-box.top, .grouped-window-list-item-box.bottom { - border-bottom-width: 2px; } - .grouped-window-list-item-box.top StLabel, .grouped-window-list-item-box.bottom StLabel { - padding-left: 2px; } - .grouped-window-list-item-box.right { - padding-left: 0px; - padding-right: 0px; - border-right-width: 2px; } - .grouped-window-list-item-box.right StBin { - padding-right: 0; } - .grouped-window-list-item-box.left { - padding-left: 0px; - padding-right: 0px; - border-left-width: 2px; } - .grouped-window-list-item-box.left StBin { - padding-left: 1px; } - .grouped-window-list-item-box:active, .grouped-window-list-item-box:checked { - color: #fefefe; - border-color: #333756; } - .grouped-window-list-item-box:hover, .grouped-window-list-item-box:active:hover, .grouped-window-list-item-box:focus, .grouped-window-list-item-box:active:focus, .grouped-window-list-item-box:focus:hover, .grouped-window-list-item-box:active:focus:hover { - color: #fefefe; - border-color: #00A9A5; } - .grouped-window-list-item-box .progress { - background-color: rgba(0, 169, 165, 0.8); } -.grouped-window-list-item-demands-attention { - background-gradient-direction: vertical; - background-gradient-start: #F04A50; - background-gradient-end: #F04A50; } -.grouped-window-list-thumbnail-label { - padding-left: 4px; } -.grouped-window-list-number-label { - z-index: 99; - color: #6F7678; } -.grouped-window-list-badge { - border-radius: 256px; - background-color: #0D0E16; } -.grouped-window-list-button-label { - padding-left: 4px; } -.grouped-window-list-thumbnail-alert { - background: rgba(255, 52, 52, 0.3); } -.grouped-window-list-thumbnail-menu { - color: #6F7678; - border: 1px solid rgba(25, 26, 34, 0.9); - background-color: #0D0E16; - border-radius: 3px; - padding: 0px; } - .grouped-window-list-thumbnail-menu > StBoxLayout { - padding: 4px; } - .grouped-window-list-thumbnail-menu .item-box { - padding: 10px; - border-radius: 2px; - spacing: 4px; } - .grouped-window-list-thumbnail-menu .item-box:outlined { - padding: 8px; - border: 1px solid #00A9A5; } - .grouped-window-list-thumbnail-menu .item-box:selected { - border: 1px solid #00A9A5; } - .grouped-window-list-thumbnail-menu .thumbnail { - width: 256px; } - .grouped-window-list-thumbnail-menu .separator { - width: 1px; - background: rgba(255, 255, 255, 0.2); } - -.sound-button { - width: 22px; - height: 13px; - padding: 8px; } - .sound-button-container { - padding-right: 3px; - padding-left: 3px; } - .sound-button StIcon { - icon-size: 1.4em; } - -.sound-track-infos { - padding: 5px; } -.sound-track-info { - padding-top: 2px; - padding-bottom: 2px; } - .sound-track-info StIcon { - icon-size: 16px; } - .sound-track-info StLabel { - padding-left: 5px; - padding-right: 5px; } -.sound-track-box { - padding-left: 15px; - padding-right: 15px; - max-width: 220px; } - -.sound-seek-box { - padding-left: 15px; } - .sound-seek-box StLabel { - padding-top: 2px; } - .sound-seek-box StIcon { - icon-size: 16px; } - -.sound-seek-slider { - width: 140px; } - -.sound-volume-menu-item { - padding: .4em 1.75em; } - .sound-volume-menu-item StIcon { - icon-size: 1.14em; - padding-left: 8px; - padding-right: 8px; } - -.sound-playback-control { - padding: 5px 10px 10px 10px; } - -.sound-player { - padding: 0 4px; } - .sound-player > StBoxLayout:first-child { - padding: 5px 10px 12px 10px; - spacing: 0.5em; } - .sound-player > StBoxLayout:first-child StButton:small { - width: 16px; - height: 8px; - padding: 1px; } - .sound-player > StBoxLayout:first-child StButton:small StIcon { - icon-size: 12px; } - .sound-player-generic-coverart { - background: rgba(0, 0, 0, 0.2); } - .sound-player-overlay { - width: 290px; - height: 70px; - padding: 15px; - spacing: 0.5em; - background: rgba(0, 0, 0, 0.9); - border: 0px solid black; - border-bottom: 1px; - color: #BAC3CF; } - .sound-player-overlay StButton { - width: 22px; - height: 13px; - padding: 5px; - color: #BAC3CF; - border-radius: 2px; - border: 1px solid rgba(4, 4, 6, 0); } - .sound-player-overlay StButton StIcon { - icon-size: 16px; } - .sound-player-overlay StButton:hover { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(58, 63, 99, 0.5); } - .sound-player-overlay StButton:active { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #fefefe; - background-color: #00A9A5; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px #00A9A5; } - .sound-player-overlay StBoxLayout { - padding-top: 2px; } - .sound-player .slider { - height: 0.5em; - padding: 0; - border: none; - -slider-height: 0.5em; - -slider-background-color: #040406; - -slider-border-color: rgba(0, 0, 0, 0); - -slider-active-background-color: #00A9A5; - -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: #fefefe; - padding: 3px; - padding-top: 4px; - transition-duration: 300; } - .workspace-button:outlined, .workspace-button:outlined:hover { - color: #00A9A5; } - .workspace-button:hover { - color: rgba(0, 169, 165, 0.5); } - -/* Controls the style when using the "Visual representation" option */ -.workspace-graph { - padding: 3px; - spacing: 3px; } - -.workspace-graph .workspace { - border: 1px solid rgba(0, 0, 0, 0.4); - background-gradient-direction: none; - background-color: rgba(0, 0, 0, 0.2); } - -.workspace-graph .workspace:active { - border: 1px solid #00A9A5; - background-gradient-direction: none; } - -.workspace-graph .workspace .windows { - -active-window-background: #292d46; - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: #292d46; - -inactive-window-border: rgba(0, 0, 0, 0.8); } - -.workspace-graph .workspace:active .windows { - -active-window-background: #333756; - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: #161826; - -inactive-window-border: rgba(0, 0, 0, 0.8); } - -#panel-launchers-box { - padding-left: 7px; } - #panel-launchers-box.vertical { - padding: 2px 0; } - -.panel-launcher, -.launcher { - margin: 1px; - padding: 1px; - transition-duration: 200; } - .panel-launcher:hover, .launcher:hover { - background-gradient-direction: none; - border: 0px solid #00A9A5; } - .panel-bottom .panel-launcher:hover, - .panel-bottom .launcher:hover { - border-bottom-width: 1px; } - .panel-top .panel-launcher:hover, .panel-top .launcher:hover { - border-top-width: 1px; } - .panel-left .panel-launcher:hover, .panel-left .launcher:hover { - border-left-width: 1px; - padding-left: 0; } - .panel-right .panel-launcher:hover, .panel-right .launcher:hover { - border-right-width: 1px; - padding-right: 0; } - -#overview-corner { - background-image: url("common-assets/misc/overview.png"); } - #overview-corner:hover { - background-image: url("common-assets/misc/overview-hover.png"); } - -.applet-separator { - padding: 1px 4px; } -.applet-separator-line { - width: 1px; - background: rgba(255, 255, 255, 0.12); } -.applet-box { - padding-left: 3px; - padding-right: 3px; - color: #6F7678; - text-shadow: none; - transition-duration: 100; } - .applet-box.vertical { - padding: 3px 0; } - .applet-box:hover { - color: #fefefe; - background-color: #00A9A5; } - .applet-box:highlight { - background-image: none; - border-image: none; - background-color: rgba(252, 65, 56, 0.5); } -.applet-label { - font-weight: bold; - color: #6F7678; } - .applet-label:hover, .applet-box:hover .applet-label { - color: #fefefe; - text-shadow: none; } -.applet-icon { - color: #6F7678; - icon-size: 22px; } - .applet-icon:hover, .applet-box:hover > .applet-icon { - color: #fefefe; - text-shadow: none; } - -.user-icon { - width: 32px; - height: 32px; - background-color: transparent; - border: none; - border-radius: 0; } - -.user-label { - color: #6F7678; - font-size: 1em; - font-weight: bold; - margin: 0px; } - -.desklet { - color: #BAC3CF; } - .desklet:highlight { - background-color: rgba(252, 65, 56, 0.5); } - .desklet-with-borders { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: #BAC3CF; - padding: 12px; - padding-bottom: 16px; } - .desklet-with-borders:highlight { - background-color: rgba(252, 65, 56, 0.5); } - .desklet-with-borders-and-header { - border-image: url("common-assets/misc/desklet.svg") 9 9 9 9; - color: #BAC3CF; - border-radius: 0; - border-radius-topleft: 0; - border-radius-topright: 0; - padding: 12px; - padding-bottom: 17px; } - .desklet-with-borders-and-header:highlight { - background-color: rgba(252, 65, 56, 0.5); } - .desklet-header { - border-image: url("common-assets/misc/desklet-header.svg") 9 9 9 9; - color: #BAC3CF; - font-size: 1em; - padding: 12px; - padding-bottom: 6px; } - .desklet-drag-placeholder { - border: 2px solid #00A9A5; - background-color: rgba(0, 169, 165, 0.3); } - -.photoframe-box { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: #BAC3CF; - padding: 12px; - padding-bottom: 16px; } - -/*FIXME*/ -.workspace-osd { - /*color: red;*/ - text-shadow: black 5px 5px 5px; - font-weight: bold; - font-size: 48pt; } - -.notification-applet-padding { - padding: .5em 1em; } - -.notification-applet-container { - max-height: 100px; } - -.tile-preview, .tile-preview.snap, -.tile-hud, .tile-hud.snap { - background-color: rgba(0, 169, 165, 0.3); - border: 1px solid #00A9A5; } - -.xkcd-box { - padding: 6px; - border: 0px; - background-color: rgba(0, 0, 0, 0); - border-radius: 0px; } - -.menu-category-button { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0); } - .menu-category-button-selected { - padding: 7px; - color: #fefefe; - background-color: #00A9A5; - border: 1px solid rgba(25, 26, 34, 0.9); } - .menu-category-button-hover { - background-color: rgba(0, 169, 165, 0.3); - border-radius: 2px; } - -/*# sourceMappingURL=cinnamon-dark.css.map */ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/cinnamon.css b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/cinnamon.css deleted file mode 100644 index 4d80233..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/cinnamon.css +++ /dev/null @@ -1,1445 +0,0 @@ -stage { - color: #6F7678; } - -.label-shadow { - color: rgba(0, 0, 0, 0); } - -.menu #notification .notification-button, .menu #notification .notification-icon-button, .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .sound-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #6F7678; - background-color: #131520; - border: 1px solid rgba(25, 26, 34, 0.9); - box-shadow: inset 0 2px 4px rgba(19, 21, 32, 0.05); } - .menu #notification .notification-button, .menu #notification .notification-icon-button, .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .sound-button, .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .sound-button:focus, .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus, .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { - border-radius: 2px; } - .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .sound-button:focus { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #6F7678; - background-color: #131520; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(19, 21, 32, 0.05); } - .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #6F7678; - background-color: #1c2031; - border: 1px solid rgba(25, 26, 34, 0.9); - box-shadow: inset 0 2px 4px rgba(28, 32, 49, 0.05); } - .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #6F7678; - background-color: #131520; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(19, 21, 32, 0.05); } - .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #fefefe; - background-color: #00A9A5; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px #00A9A5; } - .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: rgba(111, 118, 120, 0.45); - border: 1px solid rgba(25, 26, 34, 0.45); - background-color: rgba(19, 21, 32, 0.55); - box-shadow: inset 0 2px 4px rgba(19, 21, 32, 0.05); } - -.notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(45, 49, 76, 0.4); } - .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(58, 63, 99, 0.5); } - .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus { - color: #00A9A5; } - .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #fefefe; - border: 1px solid #00A9A5; - background-color: #00A9A5; } - .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #3b3d42; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(45, 49, 76, 0.25); } - -.menu #notification StEntry, .popup-menu #notification StEntry, #menu-search-entry { - padding: 7px; - caret-size: 1px; - selection-background-color: #00A9A5; - selected-color: #fefefe; - transition-duration: 300ms; - border-radius: 3px; - color: #6F7678; - background-color: #0f111a; - border: 1px solid rgba(25, 26, 34, 0.9); - box-shadow: inset 0 2px 4px rgba(15, 17, 26, 0.05); } - .menu #notification StEntry:focus, .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .menu #notification StEntry:hover, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { - color: #6F7678; - background-color: #0f111a; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(15, 17, 26, 0.05); } - .menu #notification StEntry:insensitive, .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { - color: rgba(111, 118, 120, 0.45); - background-color: #0e1018; - border-color: 1px solid rgba(19, 20, 28, 0.945); - box-shadow: inset 0 2px 4px rgba(14, 16, 24, 0.05); } - .menu #notification StEntry StIcon.capslock-warning, .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #F27835; - padding: 0 4px; } - -.notification StEntry { - padding: 7px; - caret-size: 1px; - caret-color: #BAC3CF; - selection-background-color: #00A9A5; - selected-color: #fefefe; - transition-duration: 300ms; - border-radius: 3px; - color: #BAC3CF; - background-color: rgba(45, 49, 76, 0.4); - border: 1px solid rgba(0, 0, 0, 0.4); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:focus { - color: #fefefe; - background-color: #00A9A5; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:insensitive { - color: rgba(186, 195, 207, 0.55); - background-color: rgba(45, 49, 76, 0.25); - border: 1px solid rgba(0, 0, 0, 0.4); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -StScrollView.vfade { - -st-vfade-offset: 0px; } -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(15, 17, 26, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 2px; - background-color: #34383d; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #2a2d33; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #00A9A5; } - -.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: 0.3em; - -slider-background-color: #181c2a; - -slider-border-color: rgba(13, 14, 22, 0.3); - -slider-active-background-color: #00A9A5; - -slider-active-border-color: rgba(13, 14, 22, 0.3); - -slider-border-width: 1px; - -slider-handle-radius: 0.5em; - height: 1em; - min-width: 15em; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; } - .popup-menu-item:active .popup-slider-menu-item, - .popup-menu-item:active .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fefefe; } - -.check-box CinnamonGenericContainer { - spacing: .2em; - min-height: 30px; - padding-top: 2px; } -.check-box StLabel { - font-weight: normal; } -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } -.check-box:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } -.check-box:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } -.check-box:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.radiobutton CinnamonGenericContainer { - spacing: .2em; - height: 26px; - padding-top: 2px; } -.radiobutton StLabel { - padding-top: 4px; - font-size: 0.9em; - box-shadow: none; } -.radiobutton StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } -.radiobutton:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } -.radiobutton:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } -.radiobutton:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("dark-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("dark-assets/switch/switch-on.svg"); } - .popup-menu-item:active .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item:active .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.cinnamon-link { - color: #82AAFF; - text-decoration: underline; } - .cinnamon-link:hover { - color: #b5cdff; } - -#Tooltip { - border-radius: 3px; - padding: 5px 12px; - background-color: #040406; - color: #BAC3CF; - font-size: 1em; - font-weight: normal; - text-align: center; } - -.menu, -.popup-menu, -.popup-combo-menu { - color: #6F7678; - border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } - .menu-arrow, - .popup-menu-arrow { - icon-size: 16px; } - .menu .popup-sub-menu, - .popup-menu .popup-sub-menu, - .popup-combo-menu .popup-sub-menu { - background-gradient-direction: none; - box-shadow: none; - border-image: url("dark-assets/menu/submenu.svg") 9 9 9 9; } - .menu .popup-sub-menu .popup-menu-item:ltr, - .popup-menu .popup-sub-menu .popup-menu-item:ltr, - .popup-combo-menu .popup-sub-menu .popup-menu-item:ltr { - padding-right: 0em; } - .menu .popup-sub-menu .popup-menu-item:rtl, - .popup-menu .popup-sub-menu .popup-menu-item:rtl, - .popup-combo-menu .popup-sub-menu .popup-menu-item:rtl { - padding-left: 0em; } - .menu .popup-sub-menu StScrollBar, - .popup-menu .popup-sub-menu StScrollBar, - .popup-combo-menu .popup-sub-menu StScrollBar { - padding: 4px; } - .menu .popup-sub-menu StScrollBar StBin#trough, .menu .popup-sub-menu StScrollBar StBin#vhandle, - .popup-menu .popup-sub-menu StScrollBar StBin#trough, - .popup-menu .popup-sub-menu StScrollBar StBin#vhandle, - .popup-combo-menu .popup-sub-menu StScrollBar StBin#trough, - .popup-combo-menu .popup-sub-menu StScrollBar StBin#vhandle { - border-width: 0; } - .menu .popup-menu-content, - .popup-menu .popup-menu-content, - .popup-combo-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .menu .popup-menu-item, - .popup-menu .popup-menu-item, - .popup-combo-menu .popup-menu-item { - padding: .4em 1.75em; - spacing: 1em; } - .menu .popup-menu-item:active, - .popup-menu .popup-menu-item:active, - .popup-combo-menu .popup-menu-item:active { - color: #fefefe; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .menu .popup-menu-item:insensitive, - .popup-menu .popup-menu-item:insensitive, - .popup-combo-menu .popup-menu-item:insensitive { - color: rgba(111, 118, 120, 0.5); - background: none; } - .menu .popup-inactive-menu-item, - .popup-menu .popup-inactive-menu-item, - .popup-combo-menu .popup-inactive-menu-item { - color: #6F7678; } - .menu .popup-inactive-menu-item:insensitive, - .popup-menu .popup-inactive-menu-item:insensitive, - .popup-combo-menu .popup-inactive-menu-item:insensitive { - color: rgba(111, 118, 120, 0.45); } - .menu .popup-menu-item:active .popup-inactive-menu-item, - .popup-menu .popup-menu-item:active .popup-inactive-menu-item, - .popup-combo-menu .popup-menu-item:active .popup-inactive-menu-item { - color: #fefefe; } - .menu-icon, - .popup-menu-icon { - icon-size: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 3px; - -arrow-background-color: rgba(0, 0, 0, 0); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0); - -arrow-base: 0; - -arrow-rise: 0; } - -.popup-combo-menu { - padding: 10px 1px; } - -.popup-combobox-item { - spacing: 1em; } - -.popup-separator-menu-item { - -gradient-height: 2px; - -gradient-start: transparent; - -gradient-end: transparent; - -margin-horizontal: 1.5em; - height: 1em; } - -.popup-alternating-menu-item:alternate { - font-weight: normal; } - -.popup-device-menu-item { - spacing: .5em; } - -.popup-subtitle-menu-item { - font-weight: normal; } - -.nm-menu-item-icons { - spacing: .5em; } - -#panel { - height: 28px; - width: 32px; - font-weight: 700; - background-color: #0D0E16; - color: #6F7678; } - #panel:highlight { - border-image: none; - background-color: rgba(252, 65, 56, 0.5); } - #panelLeft { - spacing: 4px; } - #panelLeft:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(255, 0, 0, 0.05); - background-gradient-end: rgba(255, 0, 0, 0.2); } - #panelLeft:ltr { - padding-right: 4px; } - #panelLeft:rtl { - padding-left: 4px; } - #panelLeft.vertical { - padding: 0; } - #panelLeft.vertical:ltr { - padding-right: 0px; } - #panelLeft.vertical:rtl { - padding-left: 0px; } - #panelRight:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0, 0, 255, 0.05); - background-gradient-end: rgba(0, 0, 255, 0.2); } - #panelRight:ltr { - padding-left: 4px; - spacing: 0px; } - #panelRight:rtl { - padding-right: 4px; - spacing: 0px; } - #panelRight.vertical { - padding: 0; } - #panelRight.vertical:ltr { - padding-right: 0px; } - #panelRight.vertical:rtl { - padding-left: 0px; } - #panelCenter { - spacing: 4px; } - #panelCenter:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0, 255, 0, 0.05); - background-gradient-end: rgba(0, 255, 0, 0.2); } - -.panel-top, .panel-bottom, .panel-left, .panel-right { - color: #6F7678; - font-size: 1em; - padding: 0px; } -.panel-dummy { - background-color: rgba(252, 65, 56, 0.5); } - .panel-dummy:entered { - background-color: rgba(252, 65, 56, 0.6); } -.panel-status-button { - border-width: 0; - -natural-hpadding: 3px; - -minimum-hpadding: 3px; - font-weight: bold; - color: white; - height: 22px; } -.panel-button { - -natural-hpadding: 6px; - -minimum-hpadding: 2px; - font-weight: bold; - color: green; - transition-duration: 100; } - -.system-status-icon { - icon-size: 16px; - padding: 0 1px; } - -#overview { - spacing: 12px; } - -.window-caption { - background-color: #040406; - border: 1px solid #040406; - color: #BAC3CF; - spacing: 25px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; } - .window-caption#selected { - background-color: #00A9A5; - color: #fefefe; - border: 1px solid #00A9A5; - spacing: 25px; } - -.expo-workspaces-name-entry, -.expo-workspaces-name-entry#selected { - height: 15px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; - color: #BAC3CF; - background-color: rgba(45, 49, 76, 0.4); - border: 1px solid rgba(0, 0, 0, 0.4); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .expo-workspaces-name-entry:focus, - .expo-workspaces-name-entry#selected:focus { - border: 1px solid #00A9A5; - background-color: #00A9A5; - color: #fefefe; - font-style: italic; - transition-duration: 300; - selection-background-color: #fefefe; - selected-color: #00A9A5; } - -.expo-workspace-thumbnail-frame { - border: 4px solid rgba(255, 255, 255, 0); - background-color: rgba(255, 255, 255, 0); - border-radius: 2px; } - .expo-workspace-thumbnail-frame#active { - border: 4px solid #00A9A5; - background-color: black; - border-radius: 2px; } - -.expo-background { - background-color: #040406; } - -.workspace-thumbnails { - spacing: 26px; } - .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { - padding: 8px; } -.workspace-add-button { - background-image: url("common-assets/misc/add-workspace.svg"); - height: 200px; - width: 35px; - transition-duration: 100; } - .workspace-add-button:hover { - background-image: url("common-assets/misc/add-workspace-hover.svg"); - transition-duration: 100; } - .workspace-add-button:active { - background-image: url("common-assets/misc/add-workspace-active.svg"); - transition-duration: 100; } -.workspace-overview-background-shade { - background-color: rgba(0, 0, 0, 0.5); } - -.workspace-close-button, -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - -cinnamon-close-overlap: 10px; } - .workspace-close-button:hover, - .window-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .workspace-close-button:active, - .window-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close-area { - background-image: url("common-assets/misc/trash-icon.svg"); - height: 120px; - width: 400px; } - -.about-content { - width: 550px; - height: 250px; - spacing: 8px; - padding-bottom: 10px; } -.about-title { - font-size: 2em; - font-weight: bold; } -.about-uuid { - font-size: 10px; - color: #888; } -.about-icon { - padding-right: 20px; - padding-bottom: 14px; } -.about-scrollBox { - border: 1px solid rgba(25, 26, 34, 0.9); - border-radius: 2px; - background-color: #0F111A; - padding: 4px; - padding-right: 0; - border-radius: 0; } - .about-scrollBox-innerBox { - padding: 1.2em; - spacing: 1.2em; } -.about-description { - padding-top: 4px; - padding-bottom: 16px; } -.about-version { - padding-left: 7px; - font-size: 10px; - color: #888; } - -.calendar { - padding: .4em 1.75em; - spacing-rows: 0px; - spacing-columns: 0px; } - -.calendar-month-label { - color: #6F7678; - font-weight: bold; - padding: 8px 0; } - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 16px; - height: 16px; } - -.calendar-change-month-back { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - -.datemenu-date-label { - padding: .4em 1.75em; - font-weight: bold; - text-align: center; - color: #6F7678; - border-radius: 2px; } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - -.calendar-day-heading { - color: rgba(111, 118, 120, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(111, 118, 120, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #6F7678; - background-color: transparent; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fefefe; - background-color: #00A9A5; - border-width: 0; } - -.calendar-other-month-day { - color: rgba(111, 118, 120, 0.3); - opacity: 1; } - -.calendar-week-number { - color: rgba(111, 118, 120, 0.7); - font-size: 80%; } - -#notification { - border-radius: 3px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - padding: 13px; - spacing-rows: 10px; - spacing-columns: 10px; - margin-from-right-edge-of-screen: 20px; - width: 34em; - color: #BAC3CF; } - .menu #notification, .popup-menu #notification { - border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } - .menu #notification, .menu #notification.multi-line-notification, .popup-menu #notification, .popup-menu #notification.multi-line-notification { - color: #6F7678; } - .menu #notification .notification-button, .menu #notification .notification-icon-button, .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { - padding: 5px; } - #notification.multi-line-notification { - padding-bottom: 13px; - color: #BAC3CF; } - #notification-scrollview { - max-height: 10em; } - #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { - height: 1em; } - #notification-scrollview:ltr > StScrollBar { - padding-left: 6px; } - #notification-scrollview:rtl > StScrollBar { - padding-right: 6px; } - #notification-body { - spacing: 5px; } - #notification-actions { - spacing: 10px; } - -.notification-with-image { - min-height: 159px; - color: #BAC3CF; } -.notification-button, .notification-icon-button { - padding: 5px; } -.notification-icon-button > StIcon { - icon-size: 36px; } - -#altTabPopup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - color: #BAC3CF; - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list > StBoxLayout { - padding: 4px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #00A9A5; } - .switcher-list .item-box:selected { - color: #fefefe; - background-color: #00A9A5; - border: 0px solid #00A9A5; } - .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: #BAC3CF; } - .switcher-arrow:highlighted { - border-color: rgba(0, 0, 0, 0); - color: #6F7678; } - -.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("common-assets/misc/corner-ripple.svg"); - background-size: contain; } - -.lightbox { - background-color: rgba(0, 0, 0, 0.4); } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #6F7678; - background-color: rgba(13, 14, 22, 0); - border: none; - border-image: url("dark-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; } - .modal-dialog-button-box { - spacing: 0; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("dark-assets/misc/button-box.svg") 9 9 9 9; } - .modal-dialog-button-box .modal-dialog-button { - padding-top: 0; - padding-bottom: 0; - height: 30px; } - -.run-dialog { - padding: 0px 15px 10px 15px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; } - .run-dialog > * { - padding: 0; } - .run-dialog-label { - font-size: 0; - font-weight: bold; - color: #BAC3CF; - padding-bottom: 0; } - .run-dialog-error-label { - color: #FC4138; } - .run-dialog-error-box { - padding-top: 15px; - spacing: 5px; } - .run-dialog-completion-box { - padding-left: 15px; - font-size: 10px; } - .run-dialog-entry { - width: 21em; - padding: 7px; - border-radius: 3px; - caret-color: #BAC3CF; - selected-color: #fefefe; - selection-background-color: #00A9A5; - color: #BAC3CF; - background-color: rgba(45, 49, 76, 0.4); - border: 1px solid rgba(0, 0, 0, 0.4); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .run-dialog-entry:focus { - color: #fefefe; - background-color: #00A9A5; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .run-dialog .modal-dialog-button-box { - border: none; - box-shadow: none; - background: none; - background-gradient-direction: none; } - -/* CinnamonMountOperation Dialogs */ -.cinnamon-mount-operation-icon { - icon-size: 48px; } - -.mount-password-reask { - color: #F27835; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - .show-processes-dialog-subject, - .mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - .show-processes-dialog-description, - .mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - .show-processes-dialog-app-list-item { - color: #ccc; } - .show-processes-dialog-app-list-item:hover { - color: white; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - .show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - .show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - .show-processes-dialog-app-list-item-name { - font-size: 1.1em; } - -.magnifier-zoom-region { - border: 2px solid maroon; } - .magnifier-zoom-region .full-screen { - border-width: 0px; } - -#keyboard { - background-color: #040406; - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.4); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(45, 49, 76, 0.4); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(58, 63, 99, 0.5); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #fefefe; - border: 1px solid #00A9A5; - background-color: #00A9A5; } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #3b3d42; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(45, 49, 76, 0.25); } - -.keyboard-subkeys { - color: #BAC3CF; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: #040406; - -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; - padding: 10px; - transition-duration: 300; - background-color: #0D0E16; - border: 1px solid rgba(25, 26, 34, 0.9); } -.menu-favorites-button { - padding: 10px; - border: 1px solid rgba(0, 0, 0, 0); } -.menu-places-box { - margin: auto; - padding: 10px; - border: 0px solid red; } -.menu-places-button { - padding: 10px; } -.menu-categories-box { - padding: 10px 30px 10px 30px; } -.menu-applications-inner-box, .menu-applications-outer-box { - padding: 10px 10px 0 10px; } -.menu-application-button { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0); } - .menu-application-button:highlighted { - font-weight: bold; } - .menu-application-button-selected { - padding: 7px; } - .menu-application-button-selected:highlighted { - font-weight: bold; } - .menu-application-button-label:ltr { - padding-left: 5px; } - .menu-application-button-label:rtl { - padding-right: 5px; } -.menu-category-button { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0); } - .menu-category-button-selected { - padding: 7px; } - .menu-category-button-hover { - background-color: red; - border-radius: 2px; } - .menu-category-button-greyed { - padding: 7px; - color: rgba(111, 118, 120, 0.45); - border: 1px solid rgba(0, 0, 0, 0); } - .menu-category-button-label:ltr { - padding-left: 5px; } - .menu-category-button-label:rtl { - padding-right: 5px; } -.menu-selected-app-box { - padding-right: 30px; - padding-left: 28px; - text-align: right; - height: 30px; } - .menu-selected-app-box:rtl { - padding-top: 10px; - height: 30px; } -.menu-selected-app-title { - font-weight: bold; } -.menu-selected-app-description { - max-width: 150px; } -.menu-search-box:ltr { - padding-left: 30px; } -.menu-search-box-rtl { - padding-right: 30px; } - -#menu-search-entry { - width: 250px; - min-height: 15px; - font-weight: normal; - caret-color: #6F7678; } - -.menu-search-entry-icon { - icon-size: 1em; - color: #6F7678; } - -/* Context menu (at the moment only for favorites) */ -.info-osd { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 16px; - color: #6F7678; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: #6F7678; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #00A9A5; } - .osd-window .level-bar { - background-color: #00A9A5; } - -.window-list-box { - spacing: 6px; - padding-left: 10px; - padding-top: 1px; } - .window-list-box.vertical { - spacing: 2px; - padding-left: 0px; - padding-right: 0px; - padding-top: 10px; - padding-bottom: 10px; } - .window-list-box:highlight { - background-color: rgba(252, 65, 56, 0.5); } -.window-list-item-label { - font-weight: bold; - width: 15em; - min-width: 5px; } -.window-list-item-box { - font-weight: bold; - background-image: none; - padding-top: 0; - padding-left: 8px; - padding-right: 8px; - transition-duration: 100; - color: rgba(254, 254, 254, 0.6); } - .window-list-item-box.top, .window-list-item-box.bottom { - border-bottom-width: 2px; } - .window-list-item-box.top StLabel, .window-list-item-box.bottom StLabel { - padding-left: 2px; } - .window-list-item-box.right { - padding-left: 0px; - padding-right: 0px; - border-right-width: 2px; } - .window-list-item-box.right StBin { - padding-right: 0; } - .window-list-item-box.left { - padding-left: 0px; - padding-right: 0px; - border-left-width: 2px; } - .window-list-item-box.left StBin { - padding-left: 1px; } - .window-list-item-box:hover, .window-list-item-box:groupFocus { - color: #fefefe; - background-color: rgba(254, 254, 254, 0.1); } - .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus, .window-list-item-box:running { - color: #fefefe; - border-color: #00A9A5; } - .window-list-item-box .progress { - background-color: rgba(0, 169, 165, 0.8); } -.window-list-item-demands-attention { - background-gradient-direction: vertical; - background-gradient-start: #F04A50; - background-gradient-end: #F04A50; } -.window-list-preview { - spacing: 6px; - color: #6F7678; - border: 1px solid rgba(25, 26, 34, 0.9); - background-color: #0D0E16; - border-radius: 3px; - padding: 6px 12px 12px 12px; - font-size: 1em; } - -.grouped-window-list-item-label { - font-weight: bold; - width: 15em; - min-width: 5px; } -.grouped-window-list-item-box { - text-align: left; - font-weight: bold; - background-image: none; - padding-top: 0; - padding-left: 8px; - padding-right: 8px; - transition-duration: 100; - color: rgba(254, 254, 254, 0.6); } - .grouped-window-list-item-box.top, .grouped-window-list-item-box.bottom { - border-bottom-width: 2px; } - .grouped-window-list-item-box.top StLabel, .grouped-window-list-item-box.bottom StLabel { - padding-left: 2px; } - .grouped-window-list-item-box.right { - padding-left: 0px; - padding-right: 0px; - border-right-width: 2px; } - .grouped-window-list-item-box.right StBin { - padding-right: 0; } - .grouped-window-list-item-box.left { - padding-left: 0px; - padding-right: 0px; - border-left-width: 2px; } - .grouped-window-list-item-box.left StBin { - padding-left: 1px; } - .grouped-window-list-item-box:active, .grouped-window-list-item-box:checked { - color: #fefefe; - border-color: #333756; } - .grouped-window-list-item-box:hover, .grouped-window-list-item-box:active:hover, .grouped-window-list-item-box:focus, .grouped-window-list-item-box:active:focus, .grouped-window-list-item-box:focus:hover, .grouped-window-list-item-box:active:focus:hover { - color: #fefefe; - border-color: #00A9A5; } - .grouped-window-list-item-box .progress { - background-color: rgba(0, 169, 165, 0.8); } -.grouped-window-list-item-demands-attention { - background-gradient-direction: vertical; - background-gradient-start: #F04A50; - background-gradient-end: #F04A50; } -.grouped-window-list-thumbnail-label { - padding-left: 4px; } -.grouped-window-list-number-label { - z-index: 99; - color: #6F7678; } -.grouped-window-list-badge { - border-radius: 256px; - background-color: #0D0E16; } -.grouped-window-list-button-label { - padding-left: 4px; } -.grouped-window-list-thumbnail-alert { - background: rgba(255, 52, 52, 0.3); } -.grouped-window-list-thumbnail-menu { - color: #6F7678; - border: 1px solid rgba(25, 26, 34, 0.9); - background-color: #0D0E16; - border-radius: 3px; - padding: 0px; } - .grouped-window-list-thumbnail-menu > StBoxLayout { - padding: 4px; } - .grouped-window-list-thumbnail-menu .item-box { - padding: 10px; - border-radius: 2px; - spacing: 4px; } - .grouped-window-list-thumbnail-menu .item-box:outlined { - padding: 8px; - border: 1px solid #00A9A5; } - .grouped-window-list-thumbnail-menu .item-box:selected { - border: 1px solid #00A9A5; } - .grouped-window-list-thumbnail-menu .thumbnail { - width: 256px; } - .grouped-window-list-thumbnail-menu .separator { - width: 1px; - background: rgba(255, 255, 255, 0.2); } - -.sound-button { - width: 22px; - height: 13px; - padding: 8px; } - .sound-button-container { - padding-right: 3px; - padding-left: 3px; } - .sound-button StIcon { - icon-size: 1.4em; } - -.sound-track-infos { - padding: 5px; } -.sound-track-info { - padding-top: 2px; - padding-bottom: 2px; } - .sound-track-info StIcon { - icon-size: 16px; } - .sound-track-info StLabel { - padding-left: 5px; - padding-right: 5px; } -.sound-track-box { - padding-left: 15px; - padding-right: 15px; - max-width: 220px; } - -.sound-seek-box { - padding-left: 15px; } - .sound-seek-box StLabel { - padding-top: 2px; } - .sound-seek-box StIcon { - icon-size: 16px; } - -.sound-seek-slider { - width: 140px; } - -.sound-volume-menu-item { - padding: .4em 1.75em; } - .sound-volume-menu-item StIcon { - icon-size: 1.14em; - padding-left: 8px; - padding-right: 8px; } - -.sound-playback-control { - padding: 5px 10px 10px 10px; } - -.sound-player { - padding: 0 4px; } - .sound-player > StBoxLayout:first-child { - padding: 5px 10px 12px 10px; - spacing: 0.5em; } - .sound-player > StBoxLayout:first-child StButton:small { - width: 16px; - height: 8px; - padding: 1px; } - .sound-player > StBoxLayout:first-child StButton:small StIcon { - icon-size: 12px; } - .sound-player-generic-coverart { - background: rgba(0, 0, 0, 0.2); } - .sound-player-overlay { - width: 290px; - height: 70px; - padding: 15px; - spacing: 0.5em; - background: rgba(0, 0, 0, 0.9); - border: 0px solid black; - border-bottom: 1px; - color: #BAC3CF; } - .sound-player-overlay StButton { - width: 22px; - height: 13px; - padding: 5px; - color: #BAC3CF; - border-radius: 2px; - border: 1px solid rgba(4, 4, 6, 0); } - .sound-player-overlay StButton StIcon { - icon-size: 16px; } - .sound-player-overlay StButton:hover { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #BAC3CF; - border: 1px solid rgba(0, 0, 0, 0.4); - background-color: rgba(58, 63, 99, 0.5); } - .sound-player-overlay StButton:active { - text-shadow: 0 1px rgba(15, 17, 26, 0); - color: #fefefe; - background-color: #00A9A5; - border: 1px solid #00A9A5; - box-shadow: inset 0 2px 4px #00A9A5; } - .sound-player-overlay StBoxLayout { - padding-top: 2px; } - .sound-player .slider { - height: 0.5em; - padding: 0; - border: none; - -slider-height: 0.5em; - -slider-background-color: #040406; - -slider-border-color: rgba(0, 0, 0, 0); - -slider-active-background-color: #00A9A5; - -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: #fefefe; - padding: 3px; - padding-top: 4px; - transition-duration: 300; } - .workspace-button:outlined, .workspace-button:outlined:hover { - color: #00A9A5; } - .workspace-button:hover { - color: rgba(0, 169, 165, 0.5); } - -/* Controls the style when using the "Visual representation" option */ -.workspace-graph { - padding: 3px; - spacing: 3px; } - -.workspace-graph .workspace { - border: 1px solid rgba(0, 0, 0, 0.4); - background-gradient-direction: none; - background-color: rgba(0, 0, 0, 0.2); } - -.workspace-graph .workspace:active { - border: 1px solid #00A9A5; - background-gradient-direction: none; } - -.workspace-graph .workspace .windows { - -active-window-background: #292d46; - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: #292d46; - -inactive-window-border: rgba(0, 0, 0, 0.8); } - -.workspace-graph .workspace:active .windows { - -active-window-background: #333756; - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: #161826; - -inactive-window-border: rgba(0, 0, 0, 0.8); } - -#panel-launchers-box { - padding-left: 7px; } - #panel-launchers-box.vertical { - padding: 2px 0; } - -.panel-launcher, -.launcher { - margin: 1px; - padding: 1px; - transition-duration: 200; } - .panel-launcher:hover, .launcher:hover { - background-gradient-direction: none; - border: 0px solid #00A9A5; } - .panel-bottom .panel-launcher:hover, - .panel-bottom .launcher:hover { - border-bottom-width: 1px; } - .panel-top .panel-launcher:hover, .panel-top .launcher:hover { - border-top-width: 1px; } - .panel-left .panel-launcher:hover, .panel-left .launcher:hover { - border-left-width: 1px; - padding-left: 0; } - .panel-right .panel-launcher:hover, .panel-right .launcher:hover { - border-right-width: 1px; - padding-right: 0; } - -#overview-corner { - background-image: url("common-assets/misc/overview.png"); } - #overview-corner:hover { - background-image: url("common-assets/misc/overview-hover.png"); } - -.applet-separator { - padding: 1px 4px; } -.applet-separator-line { - width: 1px; - background: rgba(255, 255, 255, 0.12); } -.applet-box { - padding-left: 3px; - padding-right: 3px; - color: #6F7678; - text-shadow: none; - transition-duration: 100; } - .applet-box.vertical { - padding: 3px 0; } - .applet-box:hover { - color: #fefefe; - background-color: #00A9A5; } - .applet-box:highlight { - background-image: none; - border-image: none; - background-color: rgba(252, 65, 56, 0.5); } -.applet-label { - font-weight: bold; - color: #6F7678; } - .applet-label:hover, .applet-box:hover .applet-label { - color: #fefefe; - text-shadow: none; } -.applet-icon { - color: #6F7678; - icon-size: 22px; } - .applet-icon:hover, .applet-box:hover > .applet-icon { - color: #fefefe; - text-shadow: none; } - -.user-icon { - width: 32px; - height: 32px; - background-color: transparent; - border: none; - border-radius: 0; } - -.user-label { - color: #6F7678; - font-size: 1em; - font-weight: bold; - margin: 0px; } - -.desklet { - color: #BAC3CF; } - .desklet:highlight { - background-color: rgba(252, 65, 56, 0.5); } - .desklet-with-borders { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: #BAC3CF; - padding: 12px; - padding-bottom: 16px; } - .desklet-with-borders:highlight { - background-color: rgba(252, 65, 56, 0.5); } - .desklet-with-borders-and-header { - border-image: url("common-assets/misc/desklet.svg") 9 9 9 9; - color: #BAC3CF; - border-radius: 0; - border-radius-topleft: 0; - border-radius-topright: 0; - padding: 12px; - padding-bottom: 17px; } - .desklet-with-borders-and-header:highlight { - background-color: rgba(252, 65, 56, 0.5); } - .desklet-header { - border-image: url("common-assets/misc/desklet-header.svg") 9 9 9 9; - color: #BAC3CF; - font-size: 1em; - padding: 12px; - padding-bottom: 6px; } - .desklet-drag-placeholder { - border: 2px solid #00A9A5; - background-color: rgba(0, 169, 165, 0.3); } - -.photoframe-box { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: #BAC3CF; - padding: 12px; - padding-bottom: 16px; } - -/*FIXME*/ -.workspace-osd { - /*color: red;*/ - text-shadow: black 5px 5px 5px; - font-weight: bold; - font-size: 48pt; } - -.notification-applet-padding { - padding: .5em 1em; } - -.notification-applet-container { - max-height: 100px; } - -.tile-preview, .tile-preview.snap, -.tile-hud, .tile-hud.snap { - background-color: rgba(0, 169, 165, 0.3); - border: 1px solid #00A9A5; } - -.xkcd-box { - padding: 6px; - border: 0px; - background-color: rgba(0, 0, 0, 0); - border-radius: 0px; } - -.menu-category-button { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0); } - .menu-category-button-selected { - padding: 7px; - color: #fefefe; - background-color: #00A9A5; - border: 1px solid rgba(25, 26, 34, 0.9); } - .menu-category-button-hover { - background-color: rgba(0, 169, 165, 0.3); - border-radius: 2px; } - -/*# sourceMappingURL=cinnamon.css.map */ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/menu/menu-hover.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/menu/menu-hover.svg deleted file mode 100644 index f130792..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/menu/menu-hover.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/menu/menu-separator.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/menu/menu-separator.svg deleted file mode 100644 index 4962ebc..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/menu/menu-separator.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace-active.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace-active.svg deleted file mode 100644 index f5c9c95..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace-active.svg +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace-hover.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace-hover.svg deleted file mode 100644 index e771e33..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace-hover.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace.svg deleted file mode 100644 index 65f5361..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/add-workspace.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/bg.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/bg.svg deleted file mode 100644 index 91c6f13..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/bg.svg +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 64c8782..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-left.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-left.svg deleted file mode 100644 index 2774254..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index 7886e1a..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-right.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-right.svg deleted file mode 100644 index 366e69b..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close-active.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close-active.svg deleted file mode 100644 index 95822bf..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close-active.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close-hover.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close-hover.svg deleted file mode 100644 index 7b52140..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close-hover.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close.svg deleted file mode 100644 index e221a33..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/close.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/corner-ripple.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/corner-ripple.svg deleted file mode 100644 index 05ef559..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/corner-ripple.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/desklet-header.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/desklet-header.svg deleted file mode 100644 index f98ea68..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/desklet-header.svg +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/desklet.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/desklet.svg deleted file mode 100644 index cfcb0ad..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/desklet.svg +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/osd.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/osd.svg deleted file mode 100644 index 536c27d..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/osd.svg +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/overview-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/overview-hover.png deleted file mode 100644 index 75673f9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/overview-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/overview.png b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/overview.png deleted file mode 100644 index 9eb4f87..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/overview.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/trash-icon.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/trash-icon.svg deleted file mode 100644 index 61097dd..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/misc/trash-icon.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/activities-active.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/activities-active.svg deleted file mode 100644 index c29a0f6..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/activities-active.svg +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/activities.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/activities.svg deleted file mode 100644 index b4a4b0d..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/activities.svg +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-bottom.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-bottom.svg deleted file mode 100644 index 89e3e26..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-bottom.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-left.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-left.svg deleted file mode 100644 index 8f91ed9..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-left.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-right.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-right.svg deleted file mode 100644 index 137673f..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-right.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-top.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-top.svg deleted file mode 100644 index ad26fc6..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/panel-top.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-bottom.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-bottom.svg deleted file mode 100644 index fae9826..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-bottom.svg +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-left.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-left.svg deleted file mode 100644 index 69444e5..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-left.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-right.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-right.svg deleted file mode 100644 index 5972e63..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-right.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-top.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-top.svg deleted file mode 100644 index 84fd36a..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/panel/window-list-active-top.svg +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/switch/switch-off-selected.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/switch/switch-off-selected.svg deleted file mode 100644 index 3b375c9..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/switch/switch-off-selected.svg +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/switch/switch-on-selected.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/switch/switch-on-selected.svg deleted file mode 100644 index 7766e06..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/common-assets/switch/switch-on-selected.svg +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index feaa09b..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-checked.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index eb23cc5..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 25e1958..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index 5b2fc58..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/menu/menu.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/menu/menu.svg deleted file mode 100644 index 295ac45..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/menu/menu.svg +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/menu/submenu.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/menu/submenu.svg deleted file mode 100644 index b1e3a14..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/menu/submenu.svg +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/button-box.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/button-box.svg deleted file mode 100644 index ef41e12..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/button-box.svg +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/message.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/message.svg deleted file mode 100644 index 597dae9..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/message.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/modal.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/modal.svg deleted file mode 100644 index 622cabb..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/misc/modal.svg +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/switch/switch-off.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/switch/switch-off.svg deleted file mode 100644 index 3b375c9..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/switch/switch-off.svg +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/switch/switch-on.svg b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/switch/switch-on.svg deleted file mode 100644 index 25ddb34..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/dark-assets/switch/switch-on.svg +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/thumbnail.png b/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/thumbnail.png deleted file mode 100644 index 998f7e9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/cinnamon/thumbnail.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-arrow-left.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-arrow-left.svg deleted file mode 100755 index deaa123..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-arrow-left.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-arrow-right.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-arrow-right.svg deleted file mode 100755 index 626ed7e..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-arrow-right.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-today.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-today.svg deleted file mode 100755 index 66cfc80..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/calendar-today.svg +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-focused.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-focused.svg deleted file mode 100755 index 490db59..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-focused.svg +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-off-focused.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-off-focused.svg deleted file mode 100755 index ec7d676..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-off-focused.svg +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-off.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-off.svg deleted file mode 100755 index 75ae6b8..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox-off.svg +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox.svg deleted file mode 100755 index 6664fec..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/checkbox.svg +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/close-window.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/close-window.svg deleted file mode 100644 index 081bba5..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/close-window.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/corner-ripple-ltr.png b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/corner-ripple-ltr.png deleted file mode 100755 index 32e14ca..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/corner-ripple-ltr.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/corner-ripple-rtl.png b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/corner-ripple-rtl.png deleted file mode 100755 index 1434e7c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/corner-ripple-rtl.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/dash-placeholder.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/dash-placeholder.svg deleted file mode 100755 index cbae148..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/dash-placeholder.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/logged-in-indicator.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/logged-in-indicator.svg deleted file mode 100755 index c0267ea..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/logged-in-indicator.svg +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/noise-texture.png b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/noise-texture.png deleted file mode 100755 index 6b70a2d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/noise-texture.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/process-working.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/process-working.svg deleted file mode 100755 index 920a67d..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/process-working.svg +++ /dev/null @@ -1,3084 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/running-indicator.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/running-indicator.svg deleted file mode 100755 index ebe7ecf..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/running-indicator.svg +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/source-button-border.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/source-button-border.svg deleted file mode 100755 index 6e5051e..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/source-button-border.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/toggle-off.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/toggle-off.svg deleted file mode 100755 index 4bb5210..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/toggle-off.svg +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/toggle-on.svg b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/toggle-on.svg deleted file mode 100755 index 707a039..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/toggle-on.svg +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/ws-switch-arrow-down.png b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/ws-switch-arrow-down.png deleted file mode 100644 index a674ad5..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/ws-switch-arrow-down.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/ws-switch-arrow-up.png b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/ws-switch-arrow-up.png deleted file mode 100644 index 1b6f611..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/assets/ws-switch-arrow-up.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/gnome-shell.css b/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/gnome-shell.css deleted file mode 100644 index 9b8f325..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gnome-shell/gnome-shell.css +++ /dev/null @@ -1,2110 +0,0 @@ -/***************** -* Drawing mixins * -*****************/ -/* GLOBALS */ -stage { - font-size: 10pt; - color: #BFC3C4; } - -/* WIDGETS */ -/* Buttons */ -.button { - color: #BFC3C4; - background-color: #131520; - box-shadow: none; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; - border: 1px solid #07080c; - border-radius: 4px; - border-width: 0; - padding: 4px 32px; } - .button:focus { - background-color: #1a1e2d; - color: #fefefe; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; - box-shadow: none !important; - border: 1px solid #07080c; } - .button:insensitive { - color: #66696d; - background-color: rgba(32, 34, 41, 0.66); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - border: none; - text-shadow: none; - icon-shadow: none; } - .button:active { - color: #00A9A5; - background-color: rgba(13, 14, 22, 0.95); - border: 1px solid #07080c; - text-shadow: none; - icon-shadow: none; } - .button:hover { - background-color: #181c2a; - color: #fefefe; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; } - -.modal-dialog-linked-button { - padding: 10px; - border: 1px solid #07080c; - color: #BFC3C4; - background: #040406; - text-shadow: none; - icon-shadow: none; - box-shadow: none; } - .modal-dialog-linked-button:insensitive { - color: #66696d; - background-color: rgba(32, 34, 41, 0.66); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - border: none; - text-shadow: none; - icon-shadow: none; } - .modal-dialog-linked-button:active { - color: #00A9A5; - background-color: rgba(13, 14, 22, 0.95); - border: 1px solid #07080c; - text-shadow: none; - icon-shadow: none; } - .modal-dialog-linked-button:focus { - background-color: #1a1e2d; - color: #fefefe; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; - box-shadow: none !important; - border: 1px solid #07080c; } - .modal-dialog-linked-button:focus:hover { - background-color: #1a1e2d; - color: #fefefe; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; - box-shadow: none !important; - border: 1px solid #07080c; } - .modal-dialog-linked-button:hover { - background-color: #181c2a; - color: #fefefe; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; } - .modal-dialog-linked-button:first-child { - border-radius: 0px 0px 0px 2px; } - .modal-dialog-linked-button:last-child { - border-radius: 0px 0px 2px 0px; } - .modal-dialog-linked-button:first-child:last-child { - border-radius: 0px 0px 2px 2px; } - -/* Entries */ -StEntry { - background-color: #161927; - border-color: #07080c; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); - border-radius: 2px; - padding: 4px; - border-width: 0; - color: #BFC3C4; - selection-background-color: #00A9A5; - selected-color: #fefefe; } - StEntry:focus { - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); - border: 1px solid rgba(0, 169, 165, 0.8); } - StEntry:insensitive { - color: #66696d; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } - StEntry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #f4663c; - padding: 0 4px; } - StEntry StLabel.hint-text { - color: rgba(191, 195, 196, 0.7); } - -/* Scrollbars */ -StScrollView.vfade { - -st-vfade-offset: 68px; } -StScrollView.hfade { - -st-hfade-offset: 68px; } - -StScrollBar { - padding: 0; } - StScrollView StScrollBar { - min-width: 14px; - min-height: 14px; } - StScrollBar StBin#trough { - border-radius: 0; - background-color: transparent; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 8px; - background-color: #313239; - margin: 3px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #9b9fa1; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #00A9A5; } - -/* Slider */ -.slider { - height: 1em; - color: #bebebe; - border-color: black; - -slider-height: 0.1em; - -slider-background-color: #292d46; - -slider-border-color: black; - -slider-active-background-color: #89DDFF; - -slider-active-border-color: #C3E88D; - -slider-border-width: 0; - -slider-handle-radius: 6px; - -barlevel-height: 0.1em; - -barlevel-background-color: #292d46; - -barlevel-border-color: black; - -barlevel-active-background-color: #89DDFF; - -barlevel-active-border-color: #C3E88D; - -barlevel-border-width: 0; - -barlevel-handle-radius: 6px; - -barlevel-overdrive-color: #89DDFF; - -barlevel-overdrive-border-color: transparent; - -barlevel-overdrive-separator-width: 0px; } - -/* Check Boxes */ -.check-box StBoxLayout { - spacing: .8em; } -.check-box StBin { - width: 24px; - height: 22px; - background-image: url("assets/checkbox-off.svg"); } -.check-box:focus, .check-box:hover StBin { - background-image: url("assets/checkbox-off-focused.svg"); } -.check-box:checked StBin { - background-image: url("assets/checkbox.svg"); } -.check-box:focus:checked StBin { - background-image: url("assets/checkbox-focused.svg"); } - -/* Switches */ -.toggle-switch { - width: 65px; - height: 22px; - background-size: contain; - background-image: url("assets/toggle-off.svg"); } - .toggle-switch:checked { - background-image: url("assets/toggle-on.svg"); } - -.toggle-switch-us { - background-image: url("assets/toggle-off.svg"); } - .toggle-switch-us:checked { - background-image: url("assets/toggle-on.svg"); } - -.toggle-switch-intl { - background-image: url("assets/toggle-off.svg"); } - .toggle-switch-intl:checked { - background-image: url("assets/toggle-on.svg"); } - -/* links */ -.shell-link { - color: #A0C1B9; } - .shell-link:hover { - color: #bfd5d0; } - -/* Modal Dialogs */ -.headline { - font-size: 110%; } - -.lightbox { - background-color: black; } - -.flashspot { - background-color: white; } - -.modal-dialog { - border: none; - border-radius: 2px; - color: #BFC3C4; - background-color: rgba(4, 4, 6, 0.95); - box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.2); } - .modal-dialog .modal-dialog-content-box { - padding: 24px; } - .modal-dialog .run-dialog-entry { - width: 20em; - margin-bottom: 6px; } - .modal-dialog .run-dialog-error-box { - color: #ff3a5b; - padding-top: 16px; - spacing: 6px; } - .modal-dialog .run-dialog-button-box { - padding-top: 1em; } - .modal-dialog .run-dialog-label { - font-size: 11pt; - font-weight: bold; - color: #a4aaac; - padding-bottom: .4em; } - .modal-dialog .run-dialog-description { - color: #BFC3C4; } - -.mount-dialog-subject, -.end-session-dialog-subject { - font-size: 13pt; } - -/* Message Dialog */ -.message-dialog-main-layout { - padding: 12px 20px 0; - spacing: 12px; } - -.message-dialog-content { - max-width: 28em; - spacing: 20px; } - -.message-dialog-icon { - min-width: 48px; - icon-size: 48px; } - -.message-dialog-title { - font-weight: bold; } - -.message-dialog-subtitle { - color: #585e5f; - font-weight: bold; } - -/* End Session Dialog */ -.end-session-dialog { - spacing: 42px; - border: none; } - .end-session-dialog .modal-dialog-linked-button:last-child { - background-gradient-start: #00A9A5; - background-gradient-end: #00A9A5; - background-gradient-direction: horizontal; - color: #fff; } - .end-session-dialog .modal-dialog-linked-button:last-child:hover, .end-session-dialog .modal-dialog-linked-button:last-child:focus { - background: #ff2a4e; - color: #fff; } - -.end-session-dialog-list { - padding-top: 20px; } - -.end-session-dialog-layout { - padding-left: 17px; } - .end-session-dialog-layout:rtl { - padding-right: 17px; } - -.end-session-dialog-description { - width: 28em; - padding-bottom: 10px; } - .end-session-dialog-description:rtl { - text-align: right; } - -.end-session-dialog-warning { - width: 28em; - color: #f4663c; - padding-top: 6px; } - .end-session-dialog-warning:rtl { - text-align: right; } - -.end-session-dialog-logout-icon { - border-radius: 3px; - width: 48px; - height: 48px; - background-size: contain; } - -.end-session-dialog-shutdown-icon { - color: #ff3a5b; - width: 48px; - height: 48px; } - -.end-session-dialog-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 65px; - padding-left: 65px; } - -.end-session-dialog-session-list, -.end-session-dialog-app-list { - spacing: 1em; } - -.end-session-dialog-list-header { - font-weight: bold; } - .end-session-dialog-list-header:rtl { - text-align: right; } - -.end-session-dialog-app-list-item, -.end-session-dialog-session-list-item { - spacing: 1em; } - -.end-session-dialog-app-list-item-name, -.end-session-dialog-session-list-item-name { - font-weight: bold; } - -.end-session-dialog-app-list-item-description { - color: #b2b7b8; - font-size: 10pt; } - -/* ShellMountOperation Dialogs */ -.shell-mount-operation-icon { - icon-size: 48px; } - -.mount-dialog { - spacing: 24px; } - .mount-dialog .message-dialog-title { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; - max-width: 34em; } - .mount-dialog .message-dialog-title:rtl { - padding-left: 0px; - padding-right: 17px; } - .mount-dialog .message-dialog-body { - padding-left: 17px; - width: 28em; } - .mount-dialog .message-dialog-body:rtl { - padding-left: 0px; - padding-right: 17px; } - -.mount-dialog-app-list { - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - -.mount-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - -.mount-dialog-app-list-item { - color: #a4aaac; } - .mount-dialog-app-list-item:hover { - color: #BFC3C4; } - .mount-dialog-app-list-item:ltr { - padding-right: 1em; } - .mount-dialog-app-list-item:rtl { - padding-left: 1em; } - -.mount-dialog-app-list-item-icon:ltr { - padding-right: 17px; } -.mount-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - -.mount-dialog-app-list-item-name { - font-size: 10pt; } - -/* Password or Authentication Dialog */ -.prompt-dialog { - width: 34em; - border: none; - border-radius: 2px; } - .prompt-dialog .message-dialog-main-layout { - spacing: 24px; - padding: 10px; } - .prompt-dialog .message-dialog-content { - spacing: 16px; } - .prompt-dialog .message-dialog-title { - color: #7d8587; } - -.prompt-dialog-description:rtl { - text-align: right; } - -.prompt-dialog-password-box { - spacing: 1em; - padding-bottom: 1em; } - -.prompt-dialog-error-label { - font-size: 10pt; - color: #ff3a5b; - padding-bottom: 8px; } - -.prompt-dialog-info-label { - font-size: 10pt; - padding-bottom: 8px; } - -.hidden { - color: rgba(0, 0, 0, 0); } - -.prompt-dialog-null-label { - font-size: 10pt; - padding-bottom: 8px; } - -/* Polkit Dialog */ -.polkit-dialog-user-layout { - padding-left: 10px; - spacing: 10px; } - .polkit-dialog-user-layout:rtl { - padding-left: 0px; - padding-right: 10px; } - -.polkit-dialog-user-root-label { - color: #f4663c; } - -.polkit-dialog-user-icon { - border-radius: 3px; - background-size: contain; - width: 48px; - height: 48px; } - -/* Audio selection dialog */ -.audio-device-selection-dialog { - spacing: 30px; } - -.audio-selection-content { - spacing: 20px; - padding: 24px; } - -.audio-selection-title { - font-weight: bold; - text-align: center; } - -.audio-selection-box { - spacing: 20px; } - -.audio-selection-device { - border: 1px solid #BFC3C4; - border-radius: 12px; } - .audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus { - background-color: #00A9A5; } - -.audio-selection-device-box { - padding: 20px; - spacing: 20px; } - -.audio-selection-device-icon { - icon-size: 64px; } - -/* Access Dialog */ -.access-dialog { - spacing: 30px; } - -/* Geolocation Dialog */ -.geolocation-dialog { - spacing: 30px; } - -/* Extension Dialog */ -.extension-dialog .message-dialog-main-layout { - spacing: 24px; - padding: 10px; } -.extension-dialog .message-dialog-title { - color: #7d8587; } - -/* Inhibit-Shortcuts Dialog */ -.inhibit-shortcuts-dialog { - spacing: 30px; } - -/* Network Agent Dialog */ -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -/* Popovers/Menus */ -.popup-menu { - min-width: 15em; - background-color: transparent; - color: #BFC3C4; } - .popup-menu .popup-sub-menu { - background-color: rgba(0, 0, 0, 0.2); - box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.2); } - .popup-menu .popup-menu-content { - padding: 16px 0; - background-color: #0D0E16; - border-radius: 7px; } - .popup-menu .popup-menu-item { - spacing: 6px; - padding: 6px; } - .popup-menu .popup-menu-item:ltr { - padding-right: 1.75em; - padding-left: 0; } - .popup-menu .popup-menu-item:rtl { - padding-right: 0; - padding-left: 1.75em; } - .popup-menu .popup-menu-item:checked { - background-color: rgba(5, 6, 9, 0.93); - color: #fefefe; - box-shadow: inset 1px 0px 0px #00c3be; - font-weight: normal; } - .popup-menu .popup-menu-item:checked:hover { - background-color: rgba(5, 6, 9, 0.93); - color: #00A9A5; } - .popup-menu .popup-menu-item.selected { - background-color: rgba(191, 195, 196, 0.1); - color: #BFC3C4; } - .popup-menu .popup-menu-item:active { - background-color: #00A9A5; - color: #fefefe; } - .popup-menu .popup-menu-item:insensitive { - color: rgba(191, 195, 196, 0.5); } - .popup-menu .popup-inactive-menu-item { - color: #BFC3C4; } - .popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(191, 195, 196, 0.5); } - .popup-menu.panel-menu { - -boxpointer-gap: 4px; - margin-bottom: 1.75em; } - -.popup-menu-ornament { - text-align: right; - width: 1.2em; } - -.popup-menu-boxpointer, -.candidate-popup-boxpointer { - -arrow-border-radius: 7px; - -arrow-background-color: #0D0E16; - -arrow-border-width: 1px; - -arrow-border-color: #07080c; - -arrow-base: 24px; - -arrow-rise: 11px; - -arrow-box-shadow: 0 1px 3px black; } - -.popup-separator-menu-item { - background-color: transparent; } - .popup-separator-menu-item-separator { - height: 1px; - margin: 6px 64px; - background-color: transparent; - border-color: transparent; - border-bottom-width: 1px; - border-bottom-style: solid; } - .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { - margin: 0 64px 0 32px; - background: transparent; } - -.background-menu { - -boxpointer-gap: 4px; - -arrow-rise: 0px; } - -/* fallback menu -- odd thing for styling App menu when apparently not running under shell. Light Adwaita styled - app menu inside the main app window itself rather than the top bar -*/ -/* OSD */ -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - margin: 32px; - min-width: 64px; - min-height: 64px; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - height: 0.4em; - border-radius: 0.3em; - color: #BFC3C4; - border: 1px solid #07080c; - -barlevel-height: 0.4em; - -barlevel-background-color: rgba(0, 0, 0, 0.5); - -barlevel-active-background-color: #00A9A5; - -barlevel-overdrive-color: #FF5370; - -barlevel-overdrive-separator-width: 0.2em; } - .osd-window .level-bar { - background-color: #00A9A5; - border-radius: 0.3em; } - -/* Pad OSD */ -.pad-osd-window { - padding: 32px; - background-color: rgba(0, 0, 0, 0.8); } - .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-item-container { - spacing: 8px; } - -.switcher-list .item-box { - padding: 8px; - border-radius: 4px; } - -.switcher-list .item-box:outlined { - padding: 6px; - border: 2px solid black; } - -.switcher-list .item-box:selected { - background-color: #00A9A5; - color: #fefefe; } - -.switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - -.switcher-list .thumbnail { - width: 256px; } - -.switcher-list .separator { - width: 1px; - background: #07080c; } - -.switcher-arrow { - border-color: rgba(0, 0, 0, 0); - color: rgba(191, 195, 196, 0.8); } - .switcher-arrow:highlighted { - color: #BFC3C4; } - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; } - -/* Window Cycler */ -.cycler-highlight { - border: 5px solid #00A9A5; } - -/* Workspace Switcher */ -.workspace-switcher-group { - padding: 12px; } - -.workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; } - -.ws-switcher-active-up, -.ws-switcher-active-down, -.ws-switcher-active-left, -.ws-switcher-active-right { - height: 50px; - background-color: #00A9A5; - color: #fefefe; - border: none; - background-size: 32px; - border-radius: 8px; } - -.ws-switcher-active-up { - background-image: url("assets/ws-switch-arrow-up.png"); } - -.ws-switcher-active-down { - background-image: url("assets/ws-switch-arrow-down.png"); } - -.ws-switcher-box { - height: 50px; - border: 1px solid rgba(191, 195, 196, 0.1); - background: rgba(0, 0, 0, 0.95); - border-radius: 8px; } - -.osd-window, -.resize-popup, -.switcher-list, .workspace-switcher-container { - color: #BFC3C4; - background-color: rgba(13, 14, 22, 0.95); - border: 1px solid #07080c; - border-radius: 5px; - box-shadow: 0px 0px 7px #07080c; - padding: 12px; } - -/* Tiled window previews */ -.tile-preview { - background-color: rgba(0, 169, 165, 0.5); - border: 1px solid #00A9A5; } - -.tile-preview-left.on-primary { - border-radius: 2px 2px 0 0; } - -.tile-preview-right.on-primary { - border-radius: 0 2px 0 0; } - -.tile-preview-left.tile-preview-right.on-primary { - border-radius: 2px 2px 0 0; } - -/* TOP BAR */ -#panel { - background-gradient-direction: none; - background-color: rgba(13, 14, 22, 0.93); - /* transition from solid to transparent */ - transition-duration: 500ms; - font-weight: bold; - height: 1.86em; - padding: 0px 0px; } - #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; } - #panel #panelLeft, #panel #panelCenter { - spacing: 4px; } - #panel .panel-corner { - -panel-corner-radius: 0px; - -panel-corner-background-color: rgba(0, 0, 0, 0.2); - -panel-corner-border-width: 2px; - -panel-corner-border-color: transparent; } - #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { - -panel-corner-border-color: #00c3be; } - #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-corner.unlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; } - #panel .panel-button { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #f4f5f5; - text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9); - transition-duration: 100ms; } - #panel .panel-button .app-menu-icon { - -st-icon-style: symbolic; - margin-left: 4px; - margin-right: 4px; } - #panel .panel-button .system-status-icon, - #panel .panel-button .app-menu-icon > StIcon, - #panel .panel-button .popup-menu-arrow { - icon-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9); } - #panel .panel-button:hover { - background: rgba(32, 34, 54, 0.93); - color: white; - transition-duration: 200ms; } - #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { - box-shadow: none; - background-gradient-start: #00A9A5; - background-gradient-end: #00A9A5; - background-gradient-direction: horizontal; - color: #fefefe; - text-shadow: 0px 0px 2px rgba(92, 92, 92, 0.9); - transition-duration: 200ms; } - #panel .panel-button:active .system-status-icon, - #panel .panel-button:active .app-menu-icon > StIcon, - #panel .panel-button:active .popup-menu-arrow, #panel .panel-button:overview .system-status-icon, - #panel .panel-button:overview .app-menu-icon > StIcon, - #panel .panel-button:overview .popup-menu-arrow, #panel .panel-button:focus .system-status-icon, - #panel .panel-button:focus .app-menu-icon > StIcon, - #panel .panel-button:focus .popup-menu-arrow, #panel .panel-button:checked .system-status-icon, - #panel .panel-button:checked .app-menu-icon > StIcon, - #panel .panel-button:checked .popup-menu-arrow { - icon-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9); } - #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: red 0 2px 2px; } - #panel .panel-button .system-status-icon { - icon-size: 1.09em; - padding: 0 5px; } - .unlock-screen #panel .panel-button, .login-screen #panel .panel-button, .lock-screen #panel .panel-button { - color: #dadcdc; } - .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: #dadcdc; } - #panel .panel-button.clock-display:active, #panel .panel-button.clock-display:overview, #panel .panel-button.clock-display:focus, #panel .panel-button.clock-display:checked { - box-shadow: none; } - #panel .panel-button.clock-display:active .clock, #panel .panel-button.clock-display:overview .clock, #panel .panel-button.clock-display:focus .clock, #panel .panel-button.clock-display:checked .clock { - box-shadow: none; } - #panel .panel-status-indicators-box, - #panel .panel-status-menu-box { - spacing: 2px; } - #panel .power-status.panel-status-indicators-box { - spacing: 0; } - #panel .screencast-indicator { - color: #f4663c; } - #panel.solid { - background-color: #0D0E16; - /* transition from transparent to solid */ - transition-duration: 300ms; } - #panel.solid .panel-corner { - -panel-corner-background-color: black; } - #panel.solid .system-status-icon, - #panel.solid .app-menu-icon > StIcon, - #panel.solid .popup-menu-arrow { - icon-shadow: none; } - -#calendarArea { - padding: 0.75em 1.0em; } - -.calendar { - margin-bottom: 1em; } - -.calendar, .world-clocks-button, .weather-button, .events-button { - background: transparent; - border: none; } - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 1.5em; } - -.datemenu-calendar-column { - spacing: 0.5em; } - -.datemenu-displays-section { - padding-bottom: 3em; } - -.datemenu-displays-box { - spacing: 1em; } - -.datemenu-calendar-column { - border: 0 solid transparent; - background: #0c0d14; } - .datemenu-calendar-column:ltr { - border-left-width: 1px; } - .datemenu-calendar-column:rtl { - border-right-width: 1px; } - -.datemenu-today-button, -.world-clocks-button, -.weather-button, -.events-section-title, -.message-list-section-title, -.events-button { - border-radius: 4px; - color: #BFC3C4; - padding: .4em; } - -.message-list-section-list:ltr { - padding-left: .4em; } - -.message-list-section-list:rtl { - padding-right: .4em; } - -.datemenu-today-button:hover, .datemenu-today-button:focus, -.world-clocks-button:hover, -.world-clocks-button:focus, -.weather-button:hover, -.weather-button:focus, -.events-section-title:hover, -.events-section-title:focus, -.message-list-section-title:hover, -.message-list-section-title:focus, -.events-button:hover, -.events-button:focus { - background-color: #161826; } -.datemenu-today-button:active, -.world-clocks-button:active, -.weather-button:active, -.events-section-title:active, -.message-list-section-title:active, -.events-button:active { - color: white; - background-color: #00A9A5; } - -.datemenu-today-button .date-label { - font-size: 1.5em; } - -.world-clocks-header, -.weather-header, -.events-section-title, -.message-list-section-title, -.events-title { - color: #a4aaac; - font-weight: bold; } - -.events-button .event-time { - color: #b4b9ba; } - -.world-clocks-grid { - spacing-rows: 0.4em; } - -.weather-box { - spacing: 0.4em; } - -.calendar-month-label { - color: #b2b7b8; - font-weight: bold; - padding: 8px 0; } - -.pager-button { - color: white; - background-color: transparent; - width: 32px; - border-radius: 4px; } - .pager-button:hover, .pager-button:focus { - background-color: rgba(191, 195, 196, 0.05); } - .pager-button:active { - background-color: rgba(13, 14, 22, 0.05); } - -.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-change-month-back StIcon, -.calendar-change-month-forward StIcon { - color: #b2b7b8; } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 2.4em; - height: 2.4em; - padding: 0.1em; - margin: 2px; - border-radius: 1.4em; - color: #BFC3C4; } - .calendar-day-base:hover, .calendar-day-base:focus { - background-color: #161826; } - .calendar-day-base:active, .calendar-day-base:selected { - color: #fefefe; - background-color: #00A9A5; - border-color: transparent; } - .calendar-day-base.calendar-day-heading { - color: #a4aaac; - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; } - -.calendar-day-top { - border-top-width: 1px; } - -.calendar-day-left { - border-left-width: 1px; } - -.calendar-nonwork-day { - color: #66696d; } - -.calendar-today { - font-weight: bold; - border: 1px solid rgba(7, 8, 12, 0.5); - border: 1px solid #00A9A5; - background-color: transparent; - color: #fefefe; } - .calendar-today:hover, .calendar-today:focus { - background-color: #00b8b4; - color: #fefefe; } - .calendar-today:active, .calendar-today:selected { - background-color: #00A9A5; - color: #fefefe; } - .calendar-today:active:hover, .calendar-today:active:focus, .calendar-today:selected:hover, .calendar-today:selected:focus { - background-color: #00b8b4; - color: #fefefe; } - -.calendar-day-with-events { - color: #dadcdc; - font-weight: bold; - background-image: url("assets/calendar-today.svg"); } - -.calendar-other-month-day { - color: #66696d; - opacity: 0.5; } - -.calendar-week-number { - font-size: 70%; - font-weight: bold; - width: 2.3em; - height: 1.8em; - border-radius: 2px; - padding: 0.5em 0 0; - margin: 6px; - background-color: #090a10; - color: #BFC3C4; } - -/* Message list */ -.message-list { - width: 31.5em; } - .message-list .message-title, .message-list .message-content, .message-list .message-body { - color: #b4b9ba; } - -.message-list-clear-button.button { - color: #BFC3C4; - background-color: #131520; - box-shadow: none; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; - border: 1px solid #07080c; - margin: 1.5em 1.5em 0; } - .message-list-clear-button.button:hover, .message-list-clear-button.button:focus { - background-color: #181c2a; - color: #fefefe; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; } - -.message-list-sections { - spacing: 1em; } - -.message-list-section, -.message-list-section-list { - spacing: 0.4em; } - -.message-list-section-close > StIcon { - icon-size: 16px; - border-radius: 16px; - padding: 8px; - color: #BFC3C4; - background-color: transparent; } -.message-list-section-close:hover > StIcon, .message-list-section-close:focus > StIcon -.message-list-section-close:active > StIcon { - color: #FF5370; - background: transparent; } - -.message { - background: #0c0d14; - border: 1px solid #07080c; - border-radius: 5px; } - .message:hover, .message:focus { - background-color: #0b0c13; - border-radius: 0px 5px 5px 0px; - box-shadow: 3px 0px 0px 0px #00A9A5 inset; } - -.message-icon-bin { - padding: 10px 3px 10px 10px; } - .message-icon-bin:rtl { - padding: 10px 10px 10px 3px; } - -.message-icon-bin > StIcon { - icon-size: 16px; - -st-icon-style: symbolic; } - -.message-secondary-bin { - padding: 0 12px; } - -.message-secondary-bin > .event-time { - color: #979e9f; - font-size: 0.7em; - /* HACK: the label should be baseline-aligned with a 1em label, - fake this with some bottom padding */ - padding-bottom: 0.13em; } - -.message-secondary-bin > StIcon { - icon-size: 16px; } - -.message-content { - padding: 10px; } - .message-content *:hover > StIcon, - .message-content *:focus > StIcon { - color: #FF5370; } - -.message-media-control { - padding: 12px; - color: #8a9193; } - .message-media-control:last-child:ltr { - padding-right: 18px; } - .message-media-control:last-child:rtl { - padding-left: 18px; } - .message-media-control:hover { - color: #BFC3C4; } - .message-media-control:insensitive { - color: #585e5f; } - -.media-message-cover-icon { - icon-size: 48px !important; } - .media-message-cover-icon.fallback { - color: #202236; - background-color: #0D0E16; - border: 2px solid #0D0E16; - border-radius: 2px; - icon-size: 16px; - padding: 8px; } - -/* World clocks */ -.world-clocks-button .world-clocks-city { - color: #BFC3C4; - font-weight: normal; } -.world-clocks-button .world-clocks-time { - font-weight: bold; - color: #BFC3C4; - font-feature-settings: "lnum"; - text-align: right; } -.world-clocks-button .world-clocks-timezone { - color: #8a9193; - font-feature-settings: "tnum"; } - -/* Weather */ -.weather-button .weather-header { - color: #a4aaac; - font-weight: bold; } - .weather-button .weather-header.location { - font-weight: normal; } -.weather-button .weather-forecast-time { - color: #a4aaac; - font-feature-settings: "tnum"; - font-weight: normal; - padding-top: 0.2em; - padding-bottom: 0.4em; } -.weather-button .weather-forecast-temp { - font-weight: bold; } - -.system-switch-user-submenu-icon.user-icon { - icon-size: 20px; - padding: 0 2px; } - -.system-switch-user-submenu-icon.default-icon { - icon-size: 16px; - padding: 0 4px; } - -#appMenu { - spinner-image: url("assets/process-working.svg"); - spacing: 4px; } - #appMenu .label-shadow { - color: transparent; } - -.aggregate-menu { - min-width: 21em; } - .aggregate-menu .popup-menu-icon { - padding: 0 4px; } - -.system-menu-action { - color: #BFC3C4; - border-radius: 32px; - /* wish we could do 50% */ - border: 1px solid #07080c; - background: #07080c; - padding: 13px; } - .system-menu-action:hover, .system-menu-action:focus { - border: 1px solid #00A9A5; - color: #00A9A5; - background: transparent; } - .system-menu-action:active { - background-color: #007673; - color: #fefefe; - border: 1px solid #007673; } - .system-menu-action > StIcon { - icon-size: 16px; } - -.ripple-box { - width: 52px; - height: 52px; - background-image: url("assets/corner-ripple-ltr.png"); - background-size: contain; } - -.ripple-box:rtl { - background-image: url("assets/corner-ripple-rtl.png"); } - -.popup-menu-arrow { - width: 16px; - height: 16px; } - -.popup-menu-icon { - icon-size: 1.09em; } - -.window-close { - background-color: rgba(13, 14, 22, 0.95); - color: white; - border-radius: 21px; - padding: 3px; - height: 30px; - width: 30px; - box-shadow: -1px 1px 5px 0px rgba(0, 0, 0, 0.5); - transition-duration: 300ms; } - .window-close StIcon { - icon-size: 22px; } - .window-close:hover { - background-color: rgba(41, 45, 70, 0.95); } - .window-close:active { - color: rgba(191, 195, 196, 0.8); - background-color: rgba(4, 4, 6, 0.95); } - -.window-close { - -shell-close-overlap: 16px; } - .window-close:rtl { - -st-background-image-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); } - -/* 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: #BFC3C4; } - -.nm-dialog-header-icon { - icon-size: 32px; } - -.nm-dialog-scroll-view { - border: 2px solid #07080c; - background: transparent; } - -.nm-dialog-header { - font-weight: bold; } - -.nm-dialog-item { - font-size: 110%; - border-bottom: 1px solid #07080c; - padding: 12px; - spacing: 20px; } - -.nm-dialog-item:selected { - background-color: #00A9A5; - color: #fefefe; } - -.nm-dialog-icons { - spacing: .5em; } - -.nm-dialog-icon { - icon-size: 16px; } - -.no-networks-label { - color: #999999; } - -.no-networks-box { - spacing: 12px; } - -/* OVERVIEW */ -#overview { - spacing: 24px; } - -#overview.cosmic-solid-bg { - background-color: #0F111A !important; } - -.overview-controls { - padding-bottom: 32px; } - -.window-picker { - -horizontal-spacing: 16px; - -vertical-spacing: 16px; - padding: 0 16px 16px; } - .window-picker.external-monitor { - padding: 16px; } - -.window-clone-border { - border: 1px solid rgba(255, 255, 255, 0); - border-radius: 0px; - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); } - -.window-caption { - spacing: 20px; - color: #f4f5f5; - background-color: rgba(13, 14, 22, 0.65); - border-radius: 2px; - padding: 4px 8px; } - -.search-entry { - width: 320px; - padding: 9px; - border-radius: 100px; - border: 1px solid #07080c; - color: #BFC3C4; - background-color: rgba(13, 14, 22, 0.6); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } - .search-entry:focus { - border: 1px solid rgba(191, 195, 196, 0.5); - color: #BFC3C4; - background-color: rgba(13, 14, 22, 0.8); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); } - .search-entry .search-entry-icon { - icon-size: 1em; - padding: 0 4px; - color: rgba(191, 195, 196, 0.7); } - .search-entry:hover, .search-entry:focus { - background-color: rgba(13, 14, 22, 0.8); } - .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { - color: #BFC3C4; } - -#searchResultsBin { - max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; } - -.search-section { - spacing: 16px; } - -.search-section-content { - background-color: transparent; - border-radius: 0; - border: none; - box-shadow: none; - spacing: 32px; } - -.search-provider-icon:focus, -.list-search-result:focus, .search-provider-icon:hover, -.list-search-result:hover, .search-provider-icon:selected, -.list-search-result:selected { - background-color: rgba(191, 195, 196, 0.1); - transition-duration: 200ms; } -.search-provider-icon:active, -.list-search-result:active, .search-provider-icon:checked, -.list-search-result:checked { - background-color: rgba(0, 0, 0, 0.85); } - -.list-search-results { - spacing: 3px; } - -.search-section-separator { - height: 2px; - background-color: #292d46; } - -.list-search-result-content { - spacing: 30px; } - -.list-search-result-title { - color: white; - spacing: 12px; } - -.list-search-result-description { - color: rgba(255, 255, 255, 0.5); } - -.list-search-provider-details { - width: 150px; - color: white; - margin-top: 0.24em; } - -.list-search-provider-content { - spacing: 20px; } - -.search-provider-icon { - padding: 15px; } - -/* DASHBOARD */ -#dash { - font-size: 9pt; - color: #f4f5f5; - background-color: rgba(13, 14, 22, 0.93); - padding: 6px 0; - border: 1px solid #07080c; - border-left: 0px; - border-radius: 0px 5px 5px 0px; } - #dash:rtl { - border-radius: 9px 0 0 9px; } - #dash .placeholder { - background-image: url("assets/dash-placeholder.svg"); - background-size: contain; - height: 24px; } - #dash .empty-dash-drop-target { - width: 24px; - height: 24px; } - -.dash-item-container > StWidget { - padding: 4px 8px; } - -.dash-label { - border-radius: 7px; - padding: 4px 12px; - color: #f4f5f5; - background-color: rgba(13, 14, 22, 0.93); - text-align: center; - -x-offset: 8px; } - -/* App Vault/Grid */ -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; } - .icon-grid .overview-icon { - icon-size: 96px; } - -.system-action-icon { - background-color: black; - color: white; - border-radius: 99px; - icon-size: 48px; } - -.app-view-controls { - padding-bottom: 32px; } - -.app-view-control { - padding: 4px 32px; } - .app-view-control:checked { - color: #00A9A5; - background-color: rgba(13, 14, 22, 0.95); - border: 1px solid #07080c; - text-shadow: none; - icon-shadow: none; } - .app-view-control:first-child { - border-right-width: 0; - border-radius: 3px 0 0 3px; } - .app-view-control:last-child { - border-radius: 0 3px 3px 0; } - -.app-well-app, -.app-well-app.app-folder, -.show-apps, -.grid-search-result { - border: none; } - .app-well-app:active .overview-icon, .app-well-app:checked .overview-icon, - .app-well-app.app-folder:active .overview-icon, - .app-well-app.app-folder:checked .overview-icon, - .show-apps:active .overview-icon, - .show-apps:checked .overview-icon, - .grid-search-result:active .overview-icon, - .grid-search-result:checked .overview-icon { - background-color: rgba(0, 0, 0, 0.85); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); - color: #BFC3C4; } - .app-well-app:hover .overview-icon, .app-well-app:focus .overview-icon, .app-well-app:selected .overview-icon, - .app-well-app.app-folder:hover .overview-icon, - .app-well-app.app-folder:focus .overview-icon, - .app-well-app.app-folder:selected .overview-icon, - .show-apps:hover .overview-icon, - .show-apps:focus .overview-icon, - .show-apps:selected .overview-icon, - .grid-search-result:hover .overview-icon, - .grid-search-result:focus .overview-icon, - .grid-search-result:selected .overview-icon { - background-color: rgba(13, 14, 22, 0.5); - transition-duration: 0ms; - border-image: none; - background-image: none; } - -.app-well-app-running-dot { - width: 4px; - height: 4px; - background-color: #00A9A5; - border-radius: 10px !important; - box-shadow: 0px 0px 5px 4px rgba(0, 169, 165, 0.8); - margin-bottom: 0px; } - -.app-well-app .overview-icon, -.app-well-app.app-folder .overview-icon, -.show-apps .overview-icon, -.grid-search-result .overview-icon { - color: #fefefe; - border-radius: 2px; - padding: 7px 6px; - border: none; - transition-duration: 100ms; - text-align: center; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } - -.app-well-app.app-folder > .overview-icon { - background-color: rgba(13, 14, 22, 0.35); } - -.show-apps .show-apps-icon { - color: #f4f5f5; } - -.show-apps:checked .show-apps-icon, -.show-apps:focus .show-apps-icon { - color: #BFC3C4; - transition-duration: 100ms; } - -.app-folder-popup { - -arrow-border-radius: 8px; - -arrow-background-color: rgba(13, 14, 22, 0.5); - -arrow-base: 24px; - -arrow-rise: 11px; } - -.app-folder-popup-bin { - padding: 5px; - background: rgba(13, 14, 22, 0.5); } - -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; } - -.page-indicator { - padding: 15px 20px; } - .page-indicator .page-indicator-icon { - width: 12px; - height: 12px; - border-radius: 12px; - background-image: none; - background-color: rgba(255, 255, 255, 0.3); - border: none; } - .page-indicator:hover .page-indicator-icon { - background-image: none; - background-color: rgba(255, 255, 255, 0.5); } - .page-indicator:active .page-indicator-icon { - background-image: none; - background-color: rgba(255, 255, 255, 0.7); - margin: 0; } - .page-indicator:checked .page-indicator-icon { - background-image: none; - background-color: #FFFFFF; - transition-duration: 0.3s; - transition-timing-function: ease-in-out; } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; } - -.workspace-thumbnails { - visible-width: 32px; - spacing: 11px; - padding: 8px; - border-radius: 0; } - .workspace-thumbnails:rtl { - border-radius: 0; } - -.workspace-thumbnail-indicator { - border: 4px solid rgba(0, 169, 165, 0.5); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); - padding: 0; } - -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - padding: 0px 88px 10px 88px; } - -.workspace-thumbnails { - color: #BFC3C4; - background-color: transparent; - border: none; } - -.search-statustext, .no-frequent-applications-label { - font-size: 2em; - font-weight: bold; - color: #BFC3C4; } - -/* NOTIFICATIONS & MESSAGE TRAY */ -.url-highlighter { - link-color: #00dcd7; } - -.notification-banner { - font-size: 11pt; - width: 34em; - margin: 5px; - border-radius: 3px; - color: #f4f5f5; - background-color: #0D0E16; - border: 1px solid #07080c; - box-shadow: 0 1px 4px black; } - .notification-banner:hover { - background-color: rgba(13, 14, 22, 0.96); } - .notification-banner:focus { - background-color: rgba(13, 14, 22, 0.96); } - .notification-banner * { - color: #fefefe; } - .notification-banner .notification-icon { - padding: 5px; } - .notification-banner .notification-content { - padding: 5px; - spacing: 5px; } - .notification-banner .secondary-icon { - icon-size: 1.09em; } - .notification-banner .notification-actions { - background-color: #090a10; - padding-top: 2px; - spacing: 1px; } - .notification-banner .notification-button { - padding: 5px; - background-color: #0D0E16; - box-shadow: none; - border: none; } - .notification-banner .notification-button:first-child { - border-radius: 0 0 0 3px; } - .notification-banner .notification-button:last-child { - border-radius: 0 0 3px 0; } - .notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus { - background-color: #090a10; - color: #00A9A5; } - -.summary-source-counter { - font-size: 10pt; - font-weight: bold; - height: 1.6em; - width: 1.6em; - -shell-counter-overlap-x: 3px; - -shell-counter-overlap-y: 3px; - background-color: #00A9A5; - color: #fefefe; - border: 2px solid #BFC3C4; - box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); - border-radius: 0.9em; } - -.secondary-icon { - icon-size: 1.09em; } - -.chat-body { - spacing: 5px; } - -.chat-response { - margin: 5px; } - -.chat-log-message { - color: #a4aaac; } - -.chat-new-group { - padding-top: 1em; } - -.chat-received { - padding-left: 4px; } - .chat-received:rtl { - padding-left: 0px; - padding-right: 4px; } - -.chat-sent { - padding-left: 18pt; - color: #979e9f; } - .chat-sent:rtl { - padding-left: 0; - padding-right: 18pt; } - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: #8a9193; } - .chat-meta-message:rtl { - padding-left: 0; - padding-right: 4px; } - -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; } - -.hotplug-notification-item { - padding: 2px 10px; } - .hotplug-notification-item:focus { - padding: 1px 71px 1px 11px; } - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; } - -.hotplug-resident-box { - spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; } - .hotplug-resident-mount:hover { - background-color: rgba(13, 14, 22, 0.3); } - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; } - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; } - -.hotplug-resident-eject-icon { - icon-size: 16px; } - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; } - -/* Eeeky things */ -.magnifier-zoom-region { - border: 2px solid #00A9A5; } - .magnifier-zoom-region.full-screen { - border-width: 0; } - -/* On-screen Keyboard */ -#keyboard { - background-color: rgba(13, 14, 22, 0.65); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - color: #BFC3C4; - background-color: #131520; - box-shadow: none; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; - border: 1px solid #07080c; - background-color: #0F111A; - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 5px; } - .keyboard-key:focus { - background-color: #1a1e2d; - color: #fefefe; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; - box-shadow: none !important; - border: 1px solid #07080c; } - .keyboard-key:hover, .keyboard-key:checked { - background-color: #181c2a; - color: #fefefe; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; } - .keyboard-key:active { - color: #00A9A5; - background-color: rgba(13, 14, 22, 0.95); - border: 1px solid #07080c; - text-shadow: none; - icon-shadow: none; } - .keyboard-key:grayed { - background-color: rgba(13, 14, 22, 0.95); - color: #BFC3C4; - border-color: rgba(0, 0, 0, 0.7); } - -.keyboard-subkeys { - color: white; - padding: 5px; - -arrow-border-radius: 10px; - -arrow-background-color: rgba(13, 14, 22, 0.65); - -arrow-border-width: 2px; - -arrow-border-color: #BFC3C4; - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; } - -.candidate-index { - padding: 0 0.5em 0 0; - color: #a4aaac; } - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 4px; } - .candidate-box:selected, .candidate-box:hover { - background-color: #00A9A5; - color: #fefefe; } - -.candidate-page-button-box { - height: 2em; } - .vertical .candidate-page-button-box { - padding-top: 0.5em; } - .horizontal .candidate-page-button-box { - padding-left: 0.5em; } - -.candidate-page-button { - padding: 4px; } - -.candidate-page-button-previous { - border-radius: 4px 0px 0px 4px; - border-right-width: 0; } - -.candidate-page-button-next { - border-radius: 0px 4px 4px 0px; } - -.candidate-page-button-icon { - icon-size: 1em; } - -/* Auth Dialogs & Screen Shield */ -.framed-user-icon { - background-size: contain; - border: 2px solid #BFC3C4; - color: #BFC3C4; - border-radius: 3px; } - .framed-user-icon:hover { - border-color: white; - color: white; } - -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; } - -.login-dialog { - border: none; - background-color: transparent; } - .login-dialog .modal-dialog-button-box { - spacing: 3px; } - .login-dialog .modal-dialog-button { - padding: 3px 18px; } - .login-dialog .modal-dialog-button:default { - color: #BFC3C4; - background-color: #131520; - box-shadow: none; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; - border: 1px solid #07080c; } - .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { - background-color: #181c2a; - color: #fefefe; - border: 1px solid #07080c; - text-shadow: 0 1px black; - icon-shadow: 0 1px black; } - .login-dialog .modal-dialog-button:default:active { - color: #00A9A5; - background-color: #00A9A5; - border: 1px solid #07080c; - text-shadow: none; - icon-shadow: none; } - .login-dialog .modal-dialog-button:default:insensitive { - color: #66696d; - background-color: rgba(32, 34, 41, 0.66); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - border: none; - text-shadow: none; - icon-shadow: none; } - -.login-dialog-logo-bin { - padding: 24px 0px; } - -.login-dialog-banner { - color: #a4aaac; } - -.login-dialog-button-box { - spacing: 5px; } - -.login-dialog-message-warning { - color: #f4663c; } - -.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: #BFC3C4; } - -.login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: #70787a; - padding-top: 1em; } - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; } - -.login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:selected { - background-color: #00A9A5; - color: #fefefe; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #00A9A5; } - -.login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: #70787a; } - .login-dialog-user-list-item:ltr { - padding-right: 1em; } - .login-dialog-user-list-item:rtl { - padding-left: 1em; } - .login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: #BFC3C4; } - .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { - background-color: #fefefe; } - -.login-dialog-username, -.user-widget-label { - color: #BFC3C4; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; } - -.user-widget-label:ltr { - padding-left: 18px; } -.user-widget-label:rtl { - padding-right: 18px; } - -.login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; } - -.login-dialog-prompt-label { - color: #8a9193; - font-size: 110%; - padding-top: 1em; } - -.login-dialog-session-list-button StIcon { - icon-size: 1.25em; } - -.login-dialog-session-list-button { - color: #70787a; } - .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { - color: #BFC3C4; } - .login-dialog-session-list-button:active { - color: #3f4445; } - -.screen-shield-arrows { - padding-bottom: 3em; } - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; } - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock-date { - font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; } - .screen-shield-notifications-container .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; } - .screen-shield-notifications-container .notification, - .screen-shield-notifications-container .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid #BFC3C4; - background-color: rgba(13, 14, 22, 0.45); - color: #BFC3C4; - border-radius: 4px; } - .screen-shield-notifications-container .notification { - margin-right: 15px; } - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; } - -.screen-shield-notification-count-text { - padding: 0px 0px 0px 12px; } - -#panel.lock-screen { - background-color: rgba(13, 14, 22, 0.45); } - -.screen-shield-background { - background: black; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } - -#lockDialogGroup { - background: #2e3436 url(resource:///org/gnome/shell/theme/noise-texture.png); - background-repeat: repeat; } - -#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { - background-color: rgba(13, 14, 22, 0.3); } - #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { - background-color: rgba(13, 14, 22, 0.5); } - #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { - background-color: rgba(0, 169, 165, 0.5); } - -#LookingGlassDialog { - background-color: rgba(0, 0, 0, 0.8); - spacing: 4px; - padding: 4px; - border: 2px solid grey; - border-radius: 4px; } - #LookingGlassDialog > #Toolbar { - border: 1px solid grey; - border-radius: 4px; } - #LookingGlassDialog .labels { - spacing: 4px; } - #LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #ccc; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; } - #LookingGlassDialog .notebook-tab:hover { - color: white; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog .notebook-tab:selected { - border-bottom-width: 2px; - border-color: #00c3be; - color: white; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 4px; } - #LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 4px; } - -.lg-dialog StEntry { - selection-background-color: #bbbbbb; - selected-color: #333333; } -.lg-dialog .shell-link { - color: #999999; } - .lg-dialog .shell-link:hover { - color: #dddddd; } - -.lg-completions-text { - font-size: .9em; - font-style: italic; } - -.lg-obj-inspector-title { - spacing: 4px; } - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; } - .lg-obj-inspector-button:hover { - border: 1px solid #ffffff; } - -#lookingGlassExtensions { - padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; } - -.lg-extension { - border: 1px solid #6f6f6f; - border-radius: 4px; - padding: 4px; } - -.lg-extension-name { - font-weight: bold; } - -.lg-extension-meta { - spacing: 6px; } - -#LookingGlassPropertyInspector { - background: rgba(0, 0, 0, 0.8); - border: 2px solid grey; - border-radius: 4px; - padding: 6px; } - -.openweather-current-summarybox, -.openweather-forecast-icon, -.openweather-current-databox-captions, -.openweather-current-databox-values, -.openweather-current-icon, -.openweather-forecast-summary, -.openweather-forecast-temperature { - background: transparent; } - -.openweather-current-databox-captions, .openweather-forecast-day { - color: #00A9A5; } - -/* Pop_OS COSMIC Dock styling, append !important to any changed rules */ -.cosmic-dock #dock { - border-radius: 12px 12px 12px 12px !important; - border: 0 !important; - background-color: #07080c; - margin: 4px !important; } - -.cosmic-dock.extended #dock { - border-radius: 0px !important; - margin: 0 !important; } - -.cosmic-dock.extended.side #dock { - border-top-width: 0 !important; - border-bottom-width: 0 !important; } - -.cosmic-dock.extended.side.left #dock { - border-left-width: 0 !important; } - -.cosmic-dock.extended.side.right #dock { - border-right-width: 0 !important; } - -.cosmic-dock.extended.bottom #dock { - border-bottom-width: 0 !important; - border-left-width: 0 !important; - border-right-width: 0 !important; } - -.cosmic-dock .app-well-app:hover .overview-icon, .cosmic-dock .app-well-app:focus .overview-icon, .cosmic-dock .app-well-app:selected .overview-icon { - border-radius: 11px; } - -/*# sourceMappingURL=gnome-shell.css.map */ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/chrome.rc b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/chrome.rc deleted file mode 100755 index 0c37ab3..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/chrome.rc +++ /dev/null @@ -1,50 +0,0 @@ -# ============================================================================== -# CHROME/-UIM SPECIFIC SETTINGS -# ============================================================================== - -# Chromium lets us define some colours and settings for better integration - -style "chrome-gtk-frame" -{ - ChromeGtkFrame::frame-color = @wm_color - ChromeGtkFrame::inactive-frame-color = @unfocused_wm_color - - ChromeGtkFrame::frame-gradient-size = 16 - ChromeGtkFrame::frame-gradient-color = shade(1.07, @wm_color) - - ChromeGtkFrame::incognito-frame-color = shade(0.85, @wm_color) - ChromeGtkFrame::incognito-inactive-frame-color = @wm_color - - ChromeGtkFrame::incognito-frame-gradient-color = @wm_color - - ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @wm_color) - ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @wm_color) - ChromeGtkFrame::scrollbar-slider-normal-color = @wm_color -} - -class "ChromeGtkFrame" style "chrome-gtk-frame" - -# 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 - -style "chrome_entry" { - base[NORMAL] = @base_color - base[INSENSITIVE] = @base_color -} - -widget_class "*Chrom*" style "chrome_entry" - -# Chrome Menu item background - -style "chrome_menu_item" -{ - bg[SELECTED] = @wm_color -} - -widget_class "***" style "chrome_menu_item" - - -# Chrome buttons - -widget_class "*Chrom*Button*" style "button" diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/gimp.rc b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/gimp.rc deleted file mode 100755 index 4908803..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/gimp.rc +++ /dev/null @@ -1,83 +0,0 @@ -# ============================================================================== -# GIMP SPECIFIC SETTINGS -# ============================================================================== - -# 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/spin-up.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - overlay_file = "assets/spin-up.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - overlay_file = "assets/spin-up.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - overlay_file = "assets/spin-up-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - overlay_file = "assets/spin-down-insensitive.png" - overlay_stretch = FALSE - } - - } - -} - - -# Disable spin button assets for GimpSpinScale -class "GimpSpinScale" style "gimp_spin_scale" \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/libreoffice.rc b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/libreoffice.rc deleted file mode 100755 index 6e976a2..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/libreoffice.rc +++ /dev/null @@ -1,12 +0,0 @@ -# ============================================================================== -# OPEN/LIBREOFFICE SPECIFIC SETTINGS -# ============================================================================== - -style "ooo_stepper_hack" -{ - GtkScrollbar::stepper-size = 13 - GtkScrollbar::has-backward-stepper = 1 - GtkScrollbar::has-forward-stepper = 1 -} - -widget "*openoffice-toplevel*" style "ooo_stepper_hack" \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/terminal.rc b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/terminal.rc deleted file mode 100755 index 07f4346..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/terminal.rc +++ /dev/null @@ -1,48 +0,0 @@ -# ============================================================================== -# GNOME TERMINAL SPECIFIC SETTINGS -# ============================================================================== - -style "terminal_window" = "dark" { -} - -style "terminal_menubar" -{ - - engine "murrine" { - } -} - -style "terminal_notebook" = "dark" -{ - fg[ACTIVE] = mix (0.8, "#DADBDB", "#DADBDB") - - engine "murrine" { - } -} - -style "terminal_scrollbar" = "scrollbar" -{ - bg[NORMAL] = "#263238" - bg[PRELIGHT] = shade(1.08, "#263238") - bg[ACTIVE] = shade(0.94, "#263238") - bg[SELECTED] = shade(1.0, @selected_bg_color) - bg[INSENSITIVE] = "#263238" - - engine "murrine" { - } -} - -style "terminal_screen" -{ - text[NORMAL] = "#DADBDB" - base[NORMAL] = "#384952" - - TerminalScreen::background-darkness = 0.95 -} - -widget "*TerminalWindow*" style "terminal_window" -#widget "*TerminalWindow.*.*enu?ar" style "terminal_menubar" -widget "*TerminalWindow.*.GtkNotebook*" style "terminal_notebook" -widget "*TerminalWindow.*.GtkNotebook.*.GtkVScrollbar*" style "terminal_scrollbar" -#widget "*TerminalWindow.*.GtkNotebook*utton*" style "terminal_button" -widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/thunar.rc b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/thunar.rc deleted file mode 100755 index 328ceb5..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/thunar.rc +++ /dev/null @@ -1,24 +0,0 @@ -# ============================================================================== -# THUNAR SPECIFIC SETTINGS -# ============================================================================== - -style "sidepane" { - - GtkTreeView::odd_row_color = @sidebar_bg - GtkTreeView::even_row_color = @sidebar_bg - base[NORMAL] = @bg_color - base[INSENSITIVE] = mix(0.4, shade(1.35, @selected_bg_color), shade(0.9, @base_color)) - bg[NORMAL] = @bg_color - text[NORMAL] = mix(0.9, @fg_color, @bg_color) -} - -style "thunar-frame" { - xthickness = 0 - ythickness = 0 -} -style "thunar-handle" { GtkPaned::handle-size = 2 } -widget_class "*ThunarWindow*." style "thunar-frame" -widget_class "*ThunarWindow*." style "thunar-handle" - -widget_class "*ThunarShortcutsView*" style "sidepane" -widget_class "*ThunarTreeView*" style "sidepane" diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/xfce.rc b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/xfce.rc deleted file mode 100755 index ecf2ce5..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/apps/xfce.rc +++ /dev/null @@ -1,91 +0,0 @@ -style "theme-panel" = "dark" { - xthickness = 1 - ythickness = 1 - bg[NORMAL] = @panel_bg_color - fg[NORMAL] = @panel_fg_color -} - -style "xfdesktop-icon-view" { - XfdesktopIconView::label-alpha = 0 - XfdesktopIconView::selected-label-alpha = 80 - XfdesktopIconView::shadow-x-offset = 0 - XfdesktopIconView::shadow-y-offset = 0 - XfdesktopIconView::selected-shadow-x-offset = 0 - XfdesktopIconView::selected-shadow-y-offset = 0 - XfdesktopIconView::shadow-color = @tooltip_bg_color - XfdesktopIconView::selected-shadow-color = @tooltip_bg_color - XfdesktopIconView::cell-spacing = 2 - XfdesktopIconView::cell-padding = 6 - XfdesktopIconView::cell-text-width-proportion = 1.9 - - fg[NORMAL] = shade (0.9, @selected_fg_color) - fg[ACTIVE] = @selected_fg_color - -} - -style "theme-panel-text" = "dark" { -} - -style "panel-entry" = "dark" { -} - -style "theme-main-menu-text" = "theme-panel-text" -{ - fg[PRELIGHT] = "#ffffff" - text[PRELIGHT] = "#ffffff" -} - -style "workspace-switcher" = "dark" -{ - bg[SELECTED] = shade (0.8, @selected_bg_color) -} - -style "window-buttons" = "dark" { - -} - -style "indicator" = "theme-panel" -{ - xthickness = 0 - ythickness = 0 -} - -widget "*PanelWidget*" style "theme-panel" -widget "*PanelApplet*" style "theme-panel" -widget "*fast-user-switch*" style "theme-panel" -widget "*CPUFreq*Applet*" style "theme-panel" -class "PanelApp*" style "theme-panel" -class "PanelToplevel*" style "theme-panel" -widget_class "*PanelToplevel*" style "theme-panel" -widget_class "*notif*" style "theme-panel" -widget_class "*Notif*" style "theme-panel" -widget_class "*Tray*" style "theme-panel" -widget_class "*tray*" style "theme-panel" -widget_class "*computertemp*" style "theme-panel" -widget_class "*Applet*Tomboy*" style "theme-panel" -widget_class "*Applet*Netstatus*" style "theme-panel" - -# Fixes for tooltip text in some apps. -widget_class "*Notif*Beagle*" style "theme-panel" -widget_class "*Notif*Brasero*" style "theme-panel" - -# XFCE panel theming. -widget "*Xfce*Panel*" style "theme-panel" -class "*Xfce*Panel*" style "theme-panel" -widget "*WnckPager*" style "workspace-switcher" -widget "*XfdesktopIconView*" style "xfdesktop-icon-view" - -# Fix gtk-entries in the panel -class "*SexyIconEntry*" style:highest "entry" # fixes dict-plugin -widget "*xfce4-verve-plugin*GtkEntry" style:highest "entry" # fixes verve-plugin - -# Make sure panel text color doesn't change -widget_class "*Panel*MenuBar*" style "theme-main-menu-text" -widget_class "*Panel**" style "theme-main-menu-text" -widget "*.clock-applet-button.*" style "theme-panel-text" -widget "*PanelApplet*" style "theme-panel-text" - -# Override general panel-style with specific plugin-styles -widget "*indicator-applet*" style "indicator" -widget "*indicator-button*" style "indicator" -#widget "*XfceTasklist*" style "dark_button" diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/border.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/border.png deleted file mode 100644 index 4ce34a2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/border.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-active.png deleted file mode 100644 index 11d746c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-hover.png deleted file mode 100644 index 4975e20..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-insensitive.png deleted file mode 100644 index e445004..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button.png deleted file mode 100644 index aec032e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/button.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-active.png deleted file mode 120000 index 358a499..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-active.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-checked-active-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-hover.png deleted file mode 120000 index e70f927..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-hover.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-checked-hover-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-insensitive.png deleted file mode 120000 index 09a0a7c..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked-insensitive.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-checked-insensitive-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked.png deleted file mode 120000 index b4e66c6..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-checked.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-checked-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-active.png deleted file mode 120000 index bdd98de..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-active.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-mixed-active-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-hover.png deleted file mode 120000 index 9645910..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-hover.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-mixed-hover-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-insensitive.png deleted file mode 120000 index becdb27..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed-insensitive.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-mixed-insensitive-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed.png deleted file mode 120000 index 329ae42..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-mixed.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-mixed-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-active.png deleted file mode 120000 index ea9bd36..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-active.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-unchecked-active-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-hover.png deleted file mode 120000 index 9cc8f13..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-hover.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-unchecked-hover-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-insensitive.png deleted file mode 120000 index afe2826..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked-insensitive.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-unchecked-insensitive-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked.png deleted file mode 120000 index 68f2c4b..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/checkbox-unchecked.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/checkbox-unchecked-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-active.png deleted file mode 100644 index c5348b3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-hover.png deleted file mode 100644 index 97c7afd..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png deleted file mode 100644 index d97befa..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button.png deleted file mode 100644 index a099b7f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-button.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry-active.png deleted file mode 100644 index de290b6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png deleted file mode 100644 index caeef49..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry.png deleted file mode 100644 index f223d4e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-ltr-entry.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-active.png deleted file mode 100644 index 0e82c35..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-hover.png deleted file mode 100644 index bcd80bb..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png deleted file mode 100644 index 932fd91..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button.png deleted file mode 100644 index 8dd9ab9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-button.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry-active.png deleted file mode 100644 index b8152f8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png deleted file mode 100644 index 8a10c3d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry.png deleted file mode 100644 index 83c0995..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/combo-entry-rtl-entry.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-active.png deleted file mode 100644 index f801f9a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-background-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-background-insensitive.png deleted file mode 100644 index 9860aa7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-background-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-background.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-background.png deleted file mode 100644 index 9860aa7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-background.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-insensitive.png deleted file mode 100644 index 2c23f27..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry.png deleted file mode 100644 index 9969179..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/entry.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/focus.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/focus.png deleted file mode 100644 index ba99343..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/focus.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame-inline.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame-inline.png deleted file mode 100644 index 20ef262..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame-inline.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame-notebook.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame-notebook.png deleted file mode 100644 index 042fe61..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame-notebook.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame.png deleted file mode 100644 index c163f74..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/frame.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle-horz.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle-horz.png deleted file mode 100644 index a9434ff..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle-horz.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle-vert.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle-vert.png deleted file mode 100644 index 979597d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle-vert.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle.png deleted file mode 100644 index 63471ee..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/handle.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/line.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/line.png deleted file mode 100644 index 41da5da..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/line.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-border.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-border.png deleted file mode 100644 index 490cabb..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-border.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked-hover.png deleted file mode 100644 index cc26fd8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked-insensitive.png deleted file mode 100644 index 8268000..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked.png deleted file mode 100644 index a32a99a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-hover.png deleted file mode 100644 index 22b7e11..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-insensitive.png deleted file mode 100644 index 6e99d7b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed-hover.png deleted file mode 100644 index 8b2112d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png deleted file mode 100644 index 5d0fc82..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed.png deleted file mode 100644 index 22c9a6e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox-mixed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox.png deleted file mode 100644 index 22b7e11..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-checkbox.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-down-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-down-insensitive.png deleted file mode 100644 index 51b13d8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-down-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-down.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-down.png deleted file mode 100644 index 764a622..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-down.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left-hover.png deleted file mode 100644 index ff896af..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left-insensitive.png deleted file mode 100644 index 8cf0701..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left.png deleted file mode 100644 index ff896af..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-left.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right-hover.png deleted file mode 100644 index 05be6c9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right-insensitive.png deleted file mode 100644 index 67bf814..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right.png deleted file mode 100644 index 05be6c9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-right.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-up-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-up-insensitive.png deleted file mode 100644 index 0fcf674..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-up-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-up.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-up.png deleted file mode 100644 index 6fe5ac1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-pan-up.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked-hover.png deleted file mode 100644 index 04d4de1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked-insensitive.png deleted file mode 100644 index fc206b2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked.png deleted file mode 100644 index 04d4de1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-checked.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-hover.png deleted file mode 100644 index ce63c9e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-insensitive.png deleted file mode 100644 index 09f6792..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed-hover.png deleted file mode 100644 index ffb9c92..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed-insensitive.png deleted file mode 100644 index aa29675..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed.png deleted file mode 100644 index ffb9c92..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio-mixed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio.png deleted file mode 100644 index ce63c9e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menu-radio.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menubar-item-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menubar-item-active.png deleted file mode 100644 index afd7724..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/menubar-item-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png deleted file mode 100644 index 836bd44..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png deleted file mode 100644 index 50be5ed..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png deleted file mode 100644 index 56f6e41..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png deleted file mode 100644 index d6e00fa..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png deleted file mode 100644 index a38eda2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png deleted file mode 100644 index ae04dee..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry-active.png deleted file mode 100644 index f801f9a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry-insensitive.png deleted file mode 100644 index 2c23f27..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry.png deleted file mode 100644 index 9969179..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/notebook-entry.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-down-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-down-insensitive.png deleted file mode 100644 index 51b13d8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-down-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-down.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-down.png deleted file mode 100644 index 764a622..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-down.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left-insensitive.png deleted file mode 100644 index d34fbd0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left-semi.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left-semi.png deleted file mode 100644 index 869e96d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left-semi.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left.png deleted file mode 100644 index 6b947f1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-left.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right-insensitive.png deleted file mode 100644 index d25b91a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right-semi.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right-semi.png deleted file mode 100644 index 0fc295c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right-semi.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right.png deleted file mode 100644 index a2ef254..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-right.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-up-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-up-insensitive.png deleted file mode 100644 index 0fcf674..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-up-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-up.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-up.png deleted file mode 100644 index 6fe5ac1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/pan-up.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-horz-trough.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-horz-trough.png deleted file mode 100644 index 238b2ac..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-horz-trough.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-horz.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-horz.png deleted file mode 100644 index 2c08488..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-horz.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-vert-trough.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-vert-trough.png deleted file mode 100644 index 3dc31a8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-vert-trough.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-vert.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-vert.png deleted file mode 100644 index cbb38b4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/progressbar-vert.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-active.png deleted file mode 120000 index a5e69ca..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-active.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-checked-active-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-hover.png deleted file mode 120000 index 3664209..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-hover.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-checked-hover-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-insensitive.png deleted file mode 120000 index dbcab75..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked-insensitive.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-checked-insensitive-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked.png deleted file mode 120000 index d7b9278..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-checked.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-checked-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-active.png deleted file mode 120000 index 6a3722a..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-active.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-mixed-active-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-hover.png deleted file mode 120000 index 74082a8..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-hover.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-mixed-hover-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-insensitive.png deleted file mode 120000 index ccf299b..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed-insensitive.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-mixed-insensitive-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed.png deleted file mode 120000 index 587128b..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-mixed.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-mixed-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-active.png deleted file mode 120000 index 9703525..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-active.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-unchecked-active-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-hover.png deleted file mode 120000 index 71695dc..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-hover.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-unchecked-hover-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-insensitive.png deleted file mode 120000 index aa4322c..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked-insensitive.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-unchecked-insensitive-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked.png deleted file mode 120000 index 483d717..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/radio-unchecked.png +++ /dev/null @@ -1 +0,0 @@ -../../assets/radio-unchecked-dark.png \ No newline at end of file diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-focus.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-focus.png deleted file mode 100644 index 803c04f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-focus.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-trough-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-trough-active.png deleted file mode 100644 index 1e8acd9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-trough-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-trough.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-trough.png deleted file mode 100644 index 1a95a63..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-horz-trough.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-active.png deleted file mode 100644 index 225ae59..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-hover.png deleted file mode 100644 index fd17bbc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-insensitive.png deleted file mode 100644 index f0b177c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider.png deleted file mode 100644 index f0b177c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-slider.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-vert-trough-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-vert-trough-active.png deleted file mode 100644 index ea3a891..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-vert-trough-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-vert-trough.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-vert-trough.png deleted file mode 100644 index eaeb632..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scale-vert-trough.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider-active.png deleted file mode 100644 index 8c39181..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider-hover.png deleted file mode 100644 index 9da9598..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider.png deleted file mode 100644 index ff1f104..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-slider.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-trough.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-trough.png deleted file mode 100644 index abf8cf1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-horz-trough.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png deleted file mode 100644 index d70f75b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-active.png deleted file mode 100644 index ea586fa..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png deleted file mode 100644 index 0f5eeae..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-hover.png deleted file mode 100644 index 89d295a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-rtl.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-rtl.png deleted file mode 100644 index 32d3fd8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider-rtl.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider.png deleted file mode 100644 index 5dddc0b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-slider.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-trough-rtl.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-trough-rtl.png deleted file mode 100644 index 217239f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-trough-rtl.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-trough.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-trough.png deleted file mode 100644 index 217239f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/scrollbar-vert-trough.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-down-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-down-insensitive.png deleted file mode 100644 index 7b8d0b6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-down-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-down.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-down.png deleted file mode 100644 index 8d769fa..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-down.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-active.png deleted file mode 100644 index e62c223..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-hover.png deleted file mode 100644 index b511c18..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-insensitive.png deleted file mode 100644 index 3eff489..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down.png deleted file mode 100644 index 6fddaf5..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-down.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-active.png deleted file mode 100644 index eb0ffb2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-hover.png deleted file mode 100644 index 2304436..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-insensitive.png deleted file mode 100644 index f1e9b4b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up.png deleted file mode 100644 index f1e9b4b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-ltr-up.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-active.png deleted file mode 100644 index bc06b82..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-hover.png deleted file mode 100644 index 14c992e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-insensitive.png deleted file mode 100644 index 26e6929..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down.png deleted file mode 100644 index 6a170b0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-down.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-active.png deleted file mode 100644 index 3d73c45..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-hover.png deleted file mode 100644 index f6d1a2a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-insensitive.png deleted file mode 100644 index fd93f45..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up.png deleted file mode 100644 index af6a635..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-rtl-up.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-up-insensitive.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-up-insensitive.png deleted file mode 100644 index 407a7d2..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-up-insensitive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-up.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-up.png deleted file mode 100644 index 85d98d9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/spin-up.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-down-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-down-active.png deleted file mode 100644 index 99472fc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-down-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-down.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-down.png deleted file mode 100644 index 083fe5c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-down.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-horz-gap.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-horz-gap.png deleted file mode 100644 index e4a2741..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-horz-gap.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-left-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-left-active.png deleted file mode 100644 index 395d89a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-left-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-left.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-left.png deleted file mode 100644 index 083fe5c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-left.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-right-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-right-active.png deleted file mode 100644 index 65fe106..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-right-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-right.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-right.png deleted file mode 100644 index 083fe5c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-right.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-up-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-up-active.png deleted file mode 100644 index 78af711..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-up-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-up.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-up.png deleted file mode 100644 index 083fe5c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-up.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-vert-gap.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-vert-gap.png deleted file mode 100644 index 92dca98..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/tab-vert-gap.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/toolbar-button-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/toolbar-button-active.png deleted file mode 100644 index 3ef4789..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/toolbar-button-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/toolbar-button-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/toolbar-button-hover.png deleted file mode 100644 index 4400adc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/toolbar-button-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down-active.png deleted file mode 100644 index cc46d25..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down-hover.png deleted file mode 100644 index 7a1cb0f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down.png deleted file mode 100644 index 3662cd7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-down.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up-active.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up-active.png deleted file mode 100644 index aa79ad8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up-hover.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up-hover.png deleted file mode 100644 index 1cec340..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up-hover.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up.png deleted file mode 100644 index 69f6e69..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-pan-up.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-separator-ltr.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-separator-ltr.png deleted file mode 100644 index 32785d9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-separator-ltr.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-separator-rtl.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-separator-rtl.png deleted file mode 100644 index c380a53..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/assets/treeview-separator-rtl.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/gtkrc b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/gtkrc deleted file mode 100755 index 42eeab0..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/gtkrc +++ /dev/null @@ -1,31 +0,0 @@ -# Text/base colors -gtk-color-scheme = "text_color:#6F7678\nbase_color:#131520" -# Foreground/background colors -gtk-color-scheme = "fg_color:#6F7678\nbg_color:#0F111A" -# Selection colors -gtk-color-scheme = "selected_fg_color:#fefefe\nselected_bg_color:#00A9A5" -# Tooltip colors -gtk-color-scheme = "tooltip_fg_color:#f8f8f2\ntooltip_bg_color:#46474F" -# Window colors -gtk-color-scheme = "wm_color:#31363d\nunfocused_wm_color:#31363d" -# Panel colors -gtk-color-scheme = "panel_bg_color:#131520\npanel_fg_color:#ffffff" -# Dark Theme - Text/base colors -gtk-color-scheme = "dark_text_color:#6F7678\ndark_base_color:#131520" -# Dark Theme - Foreground/background colors -gtk-color-scheme = "dark_fg_color:#6F7678\ndark_bg_color:#0F111A" -gtk-color-scheme = "sidebar_bg:#2e3440" -gtk-color-scheme = "sidebar_fg:#6F7678" - -gtk-auto-mnemonics = 1 -gtk-primary-button-warps-slider = 1 - -include "main.rc" - -# App stylings -include "apps/chrome.rc" -include "apps/gimp.rc" -include "apps/libreoffice.rc" -include "apps/terminal.rc" -include "apps/thunar.rc" -include "apps/xfce.rc" diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/main.rc b/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/main.rc deleted file mode 100755 index 507eb4e..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-2.0/main.rc +++ /dev/null @@ -1,2627 +0,0 @@ -style "default" { - - xthickness = 1 - ythickness = 1 - - #################### - # Style Properties # - #################### - - GtkWidget::focus-line-width = 1 - GtkWidget::focus-line-pattern = "\2\1" - - GtkToolbar::internal-padding = 4 - GtkToolButton::icon-spacing = 4 - - GtkWidget::tooltip-radius = 3 - GtkWidget::tooltip-alpha = 235 - GtkWidget::new-tooltip-style = 1 #for compatibility - - GtkWidget::link-color = shade(0.9, @selected_bg_color) - GtkWidget::visited-link-color = shade(0.8, @selected_bg_color) - GnomeHRef::link_color = shade(0.9, @selected_bg_color) - GtkHTML::link-color = shade(0.9, @selected_bg_color) - GtkHTML::vlink-color = shade(0.8, @selected_bg_color) - GtkIMHtml::hyperlink-color = shade(0.9, @selected_bg_color) - GtkIMHtml::hyperlink-visited-color = shade(0.8, @selected_bg_color) - - GtkSeparatorMenuItem::horizontal-padding = 0 - GtkSeparatorMenuItem::wide-separators = 1 - GtkSeparatorMenuItem::separator-height = 1 - - GtkButton::child-displacement-y = 0 - - GtkButton::default-border = {0, 0, 0, 0} - GtkButton::default-outside-border = {0, 0, 0, 0} - GtkButton::inner-border = {4, 4, 4, 4} - - GtkEntry::state-hint = 1 - GtkEntry::inner-border = {7, 7, 4, 5} - - GtkPaned::handle-size = 2 - GtkHPaned::handle-size = 2 - GtkVPaned::handle-size = 2 - - GtkScrollbar::trough-border = 0 - GtkRange::trough-border = 0 - GtkRange::slider-width = 13 - 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 = 48 # 42 + 2*3 (margins) - GtkScrolledWindow::scrollbar-spacing = 0 - GtkScrolledWindow::scrollbars-within-bevel = 1 - - GtkScale::slider_length = 26 - GtkScale::slider_width = 26 - GtkScale::trough-side-details = 1 - - GtkProgressBar::min-horizontal-bar-height = 6 - GtkProgressBar::min-vertical-bar-width = 6 - # Making this bigger than the min[height,width]-2*[y,x]spacing makes the - # whole progressbar thicker, so by setting it to the exact above value - # we get the maximum spacing between the text and the edges without - # doing so. - GtkProgressBar::xspacing = 4 - GtkProgressBar::yspacing = 4 - - GtkStatusbar::shadow_type = GTK_SHADOW_NONE - GtkSpinButton::shadow_type = GTK_SHADOW_NONE - GtkMenuBar::shadow-type = GTK_SHADOW_NONE - GtkToolbar::shadow-type = GTK_SHADOW_NONE - # TODO: find out what this comment means: - # ( every window is misaligned for the sake of menus ): - GtkMenuBar::internal-padding = 0 - GtkMenu::horizontal-padding = 0 - GtkMenu::vertical-padding = 2 - GtkMenu::double-arrows = 0 - GtkMenuItem::arrow-scaling = 1 - GtkMenuItem::toggle-spacing = 10 - - GtkCheckButton::indicator_spacing = 3 - GtkOptionMenu::indicator_spacing = {13, 13, 5, 8} - - GtkTreeView::expander-size = 16 - GtkTreeView::vertical-separator = 0 - GtkTreeView::horizontal-separator = 4 - GtkTreeView::allow-rules = 1 - # Set this because some apps read it - GtkTreeView::odd-row-color = @base_color - GtkTreeView::even-row-color = @base_color - GtkTreeView::odd_row_color = shade(0.90, @base_color) - - GtkExpander::expander-size = 16 - - GtkNotebook::tab-overlap = 4 - - ########## - # Colors # - ########## - - bg[NORMAL] = @bg_color - bg[PRELIGHT] = @bg_color - bg[SELECTED] = @selected_bg_color - bg[INSENSITIVE] = mix (0.6, @bg_color, @base_color) - bg[ACTIVE] = @bg_color - - fg[NORMAL] = @fg_color - fg[PRELIGHT] = @fg_color - fg[SELECTED] = @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] = @selected_fg_color - text[INSENSITIVE] = darker (@bg_color) - text[ACTIVE] = @selected_fg_color - - base[NORMAL] = @base_color - base[PRELIGHT] = shade (0.95, @bg_color) - base[SELECTED] = @selected_bg_color - base[INSENSITIVE] = mix (0.5, @fg_color, @bg_color) - base[ACTIVE] = @selected_bg_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-insensitive.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-insensitive.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-insensitive.png" - overlay_stretch = FALSE - } - - ################# - # Radio Buttons # - ################# - - image { - function = OPTION - state = NORMAL - shadow = OUT - overlay_file = "assets/radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = OUT - overlay_file = "assets/radio-unchecked-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-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = NORMAL - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = IN - overlay_file = "assets/radio-checked-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-insensitive.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-insensitive.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/menu-pan-left.png" - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state = PRELIGHT - detail = "menuitem" - overlay_file = "assets/menu-pan-left-hover.png" - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state = INSENSITIVE - detail = "menuitem" - overlay_file = "assets/menu-pan-left-insensitive.png" - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state = NORMAL - detail = "menuitem" - overlay_file = "assets/menu-pan-right.png" - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = PRELIGHT - detail = "menuitem" - overlay_file = "assets/menu-pan-right-hover.png" - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = INSENSITIVE - detail = "menuitem" - overlay_file = "assets/menu-pan-right-insensitive.png" - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = INSENSITIVE - detail = "menu_scroll_arrow_up" - overlay_file = "assets/menu-pan-up-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = ARROW - detail = "menu_scroll_arrow_up" - overlay_file = "assets/menu-pan-up.png" - overlay_stretch = FALSE - } - - image { - function = ARROW - state = INSENSITIVE - detail = "menu_scroll_arrow_down" - overlay_file = "assets/menu-pan-down-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = ARROW - detail = "menu_scroll_arrow_down" - overlay_file = "assets/menu-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-insensitive.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-insensitive.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-insensitive.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-insensitive.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-insensitive.png" - overlay_stretch = FALSE - } - - ######### - # Lines # - ######### - - image { - function = VLINE - file = "assets/line.png" - border = {1, 0, 0, 0} - } - - image { - function = HLINE - file = "assets/line.png" - border = {0, 0, 1, 0} - } - - ######### - # Focus # - ######### - - image { - function = FOCUS - file = "assets/focus.png" - border = {1, 1, 1, 1} - stretch = TRUE - } - - ########### - # Handles # - ########### - - image { - function = HANDLE - detail = "handlebox" - overlay_file = "assets/handle.png" - overlay_stretch = FALSE - } - - image { - function = HANDLE - overlay_file = "assets/handle-horz.png" - #border = {0, 0, 4, 4} - orientation = HORIZONTAL - overlay_stretch = FALSE - } - - image { - function = HANDLE - overlay_file = "assets/handle-vert.png" - #border = {4, 4, 0, 0} - orientation = VERTICAL - overlay_stretch = FALSE - } - - image { - function = RESIZE_GRIP - } - - ############# - # Expanders # - ############# - - image { - function = EXPANDER - expander_style = EXPANDED - file = "assets/pan-down.png" - } - - # LTR - - image { - function = EXPANDER - expander_style = COLLAPSED - file = "assets/pan-right.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 - file = "assets/pan-left.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-left-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = RIGHT - } - - image { - function = EXTENSION - file = "assets/tab-left.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = RIGHT - } - - # Right - - image { - function = EXTENSION - state = NORMAL - file = "assets/tab-right-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = LEFT - } - - image { - function = EXTENSION - file = "assets/tab-right.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = LEFT - } - - # Up - - image { - function = EXTENSION - state = NORMAL - file = "assets/tab-up-active.png" - border = { 3,3,5,3 } - stretch = TRUE - gap_side = BOTTOM - } - - image { - function = EXTENSION - file = "assets/tab-up.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = BOTTOM - } - - # Down - - image { - function = EXTENSION - state = NORMAL - file = "assets/tab-down-active.png" - border = { 3,3,3,5 } - stretch = TRUE - gap_side = TOP - } - - image { - function = EXTENSION - file = "assets/tab-down.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = TOP - } - - # Inner frame - - image { - function = BOX_GAP - detail = "notebook" - file = "assets/frame-notebook.png" - border = {1, 1, 1, 1} - stretch = TRUE - gap_file = "assets/tab-vert-gap.png" - gap_border = {1, 0, 1, 1} - gap_side = LEFT - } - - image { - function = BOX_GAP - detail = "notebook" - file = "assets/frame-notebook.png" - border = {1, 1, 1, 1} - stretch = TRUE - gap_file = "assets/tab-vert-gap.png" - gap_border = {0, 1, 1, 1} - gap_side = RIGHT - } - - image { - function = BOX_GAP - detail = "notebook" - file = "assets/frame-notebook.png" - border = {1, 1, 1, 1} - stretch = TRUE - gap_file = "assets/tab-horz-gap.png" - gap_border = {1, 1, 1, 0} - gap_side = TOP - } - - image { - function = BOX_GAP - detail = "notebook" - file = "assets/frame-notebook.png" - border = {1, 1, 1, 1} - stretch = TRUE - gap_file = "assets/tab-horz-gap.png" - gap_border = {1, 1, 0, 1} - gap_side = BOTTOM - } - - # Standalone frame - image { - function = BOX - detail = "notebook" - file = "assets/frame-notebook.png" - border = {1, 1, 1, 1} - stretch = TRUE - } - - ############## - # Scrollbars # - ############## - - image { - function = BOX - detail = "trough" - file = "assets/scrollbar-horz-trough.png" - border = {0, 0, 1, 0} - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough" - file = "assets/scrollbar-vert-trough.png" - border = {1, 0, 0, 0} - orientation = VERTICAL - direction = LTR - } - - image { - function = BOX - detail = "trough" - file = "assets/scrollbar-vert-trough-rtl.png" - border = {0, 1, 0, 0} - orientation = VERTICAL - direction = RTL - } - - - # Disable insensitive sliders - - image { - function = SLIDER - state = INSENSITIVE - detail = "slider" - } - - # Horizontal sliders - - image { - function = SLIDER - state = NORMAL - detail = "slider" - file = "assets/scrollbar-horz-slider.png" - border = {6, 6, 7, 6 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = PRELIGHT - detail = "slider" - file = "assets/scrollbar-horz-slider-hover.png" - border = {6, 6, 7, 6 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = ACTIVE - detail = "slider" - file = "assets/scrollbar-horz-slider-active.png" - border = {6, 6, 7, 6 } - stretch = TRUE - orientation = HORIZONTAL - } - - # Vertical sliders - - image { - function = SLIDER - state = NORMAL - detail = "slider" - file = "assets/scrollbar-vert-slider.png" - border = {7, 6, 6, 6} - stretch = TRUE - orientation = VERTICAL - direction = LTR - } - - image { - function = SLIDER - state = PRELIGHT - detail = "slider" - file = "assets/scrollbar-vert-slider-hover.png" - border = {7, 6, 6, 6} - stretch = TRUE - orientation = VERTICAL - direction = LTR - } - - image { - function = SLIDER - state = ACTIVE - detail = "slider" - file = "assets/scrollbar-vert-slider-active.png" - border = {7, 6, 6, 6} - stretch = TRUE - orientation = VERTICAL - direction = LTR - } - - # RTL - - image { - function = SLIDER - state = NORMAL - detail = "slider" - file = "assets/scrollbar-vert-slider-rtl.png" - border = {6, 7, 6, 6} - stretch = TRUE - orientation = VERTICAL - direction = RTL - } - - image { - function = SLIDER - state = PRELIGHT - detail = "slider" - file = "assets/scrollbar-vert-slider-hover-rtl.png" - border = {6, 7, 6, 6} - stretch = TRUE - orientation = VERTICAL - direction = RTL - } - - image { - function = SLIDER - state = ACTIVE - detail = "slider" - file = "assets/scrollbar-vert-slider-active-rtl.png" - border = {6, 7, 6, 6} - stretch = TRUE - orientation = VERTICAL - direction = RTL - } - - ########## - # Scales # - ########## - - # Troughs - # They are 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 = {10, 10, 0, 0} - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough-lower" - file = "assets/scale-horz-trough-active.png" - border = {10, 10, 0, 0} - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough-upper" - file = "assets/scale-vert-trough.png" - border = {0, 0, 10, 10} - stretch = TRUE - orientation = VERTICAL - } - - image { - function = BOX - detail = "trough-lower" - file = "assets/scale-vert-trough-active.png" - border = {0, 0, 10, 10} - 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-insensitive.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-insensitive.png" - } - - ########### - # Menubar # - ########### - - image { - function = BOX - detail = "menubar" - file = "assets/line.png" - border = {0, 0, 0, 1} - } - - ######### - # Menus # - ######### - - image { - function = BOX - state = PRELIGHT - detail = "menu_scroll_arrow_up" - file = "assets/line.png" - } - - image { - function = BOX - detail = "menu_scroll_arrow_up" - file = "assets/line.png" - border = {0, 0, 0, 1} - } - - image { - function = BOX - state = PRELIGHT - detail = "menu_scroll_arrow_down" - file = "assets/line.png" - } - - image { - function = BOX - detail = "menu_scroll_arrow_down" - file = "assets/line.png" - border = {0, 0, 1, 0} - } - - ########### - # Entries # - ########### - - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/entry-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/entry-insensitive.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - file = "assets/entry.png" - border = {4, 4, 4, 4} - 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-insensitive.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 = {1, 4, 4, 0} - stretch = TRUE - overlay_file = "assets/spin-up.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - file = "assets/spin-ltr-up-hover.png" - border = {1, 4, 4, 0} - stretch = TRUE - overlay_file = "assets/spin-up.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - file = "assets/spin-ltr-up-active.png" - border = {1, 4, 4, 0} - stretch = TRUE - overlay_file = "assets/spin-up.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - file = "assets/spin-ltr-up-insensitive.png" - border = {1, 4, 4, 0} - stretch = TRUE - overlay_file = "assets/spin-up-insensitive.png" - overlay_stretch = FALSE - direction = LTR - } - - # Spin-Up RTL - - image { - function = BOX - state = NORMAL - detail = "spinbutton_up" - file = "assets/spin-rtl-up.png" - border = {4, 1, 4, 0} - stretch = TRUE - overlay_file = "assets/spin-up.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - file = "assets/spin-rtl-up-hover.png" - border = {4, 1, 4, 0} - stretch = TRUE - overlay_file = "assets/spin-up.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - file = "assets/spin-rtl-up-hover.png" - border = {4, 1, 4, 0} - stretch = TRUE - overlay_file = "assets/spin-up.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - file = "assets/spin-rtl-up-insensitive.png" - border = {4, 1, 4, 0} - stretch = TRUE - overlay_file = "assets/spin-up-insensitive.png" - overlay_stretch = FALSE - direction = RTL - } - - # Spin-Down LTR - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - file = "assets/spin-ltr-down.png" - border = {1, 4, 1, 4} - stretch = TRUE - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - file = "assets/spin-ltr-down-hover.png" - border = {1, 4, 1, 4} - stretch = TRUE - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - file = "assets/spin-ltr-down-active.png" - border = {1, 4, 1, 4} - stretch = TRUE - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - file = "assets/spin-ltr-down-insensitive.png" - border = {1, 4, 1, 4} - stretch = TRUE - overlay_file = "assets/spin-down-insensitive.png" - overlay_stretch = FALSE - direction = LTR - } - - # Spin-Down RTL - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - file = "assets/spin-rtl-down.png" - border = {4, 1, 1, 4} - stretch = TRUE - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - file = "assets/spin-rtl-down-hover.png" - border = {4, 1, 1, 4} - stretch = TRUE - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - file = "assets/spin-rtl-down-active.png" - border = {4, 1, 1, 4} - stretch = TRUE - overlay_file = "assets/spin-down.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - file = "assets/spin-rtl-down-insensitive.png" - border = {4, 1, 1, 4} - stretch = TRUE - overlay_file = "assets/spin-down-insensitive.png" - overlay_stretch = FALSE - direction = RTL - } - - ############## - # Scrollbars # - ############## - - image { - function = BOX - detail = "bar" - file = "assets/progressbar-horz.png" - stretch = TRUE - border = {2, 2, 1, 1} - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "bar" - file = "assets/progressbar-vert.png" - stretch = TRUE - border = {1, 1, 2, 2} - 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" { - - # Needed to fix Firefox's menubar text - bg[NORMAL] = @dark_bg_color - text[NORMAL] = @dark_fg_color - fg[NORMAL] = @dark_fg_color - bg[SELECTED] = @dark_bg_color - fg[SELECTED] = shade(0.9, @dark_fg_color) - -} - -style "menubar_item" { - - xthickness = 3 - ythickness = 4 - - fg[NORMAL] = @dark_fg_color - fg[PRELIGHT] = @dark_fg_color - text[NORMAL] = @dark_fg_color - - engine "pixmap" { - image { - function = BOX - state = PRELIGHT - file = "assets/menubar-item-active.png" - border = {0, 0, 0, 3} - } - } - -} - -style "menu" { - - xthickness = 0 - ythickness = 0 - - bg[NORMAL] = @base_color - bg[INSENSITIVE] = @base_color - bg[PRELIGHT] = @base_color - bg[SELECTED] = @selected_bg_color - -} - -style "menu_item" { - - xthickness = 3 - ythickness = 4 - - bg[PRELIGHT] = @selected_bg_color - # Chromium uses this setting - bg[SELECTED] = @selected_bg_color - - fg[PRELIGHT] = @selected_fg_color - # Some widgets use text, we need to handle that - text[NORMAL] = @fg_color - text[PRELIGHT] = @selected_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.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - state = PRELIGHT - shadow = OUT - overlay_file = "assets/menu-checkbox-hover.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - state = ACTIVE - shadow = OUT - overlay_file = "assets/menu-checkbox.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/menu-checkbox-insensitive.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-hover.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-insensitive.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-hover.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-insensitive.png" - overlay_stretch = FALSE - } - - ################# - # Radio Buttons # - ################# - - image { - function = OPTION - state = NORMAL - shadow = OUT - overlay_file = "assets/menu-radio.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = OUT - overlay_file = "assets/menu-radio-hover.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = OUT - overlay_file = "assets/menu-radio.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/menu-radio-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = NORMAL - shadow = IN - overlay_file = "assets/menu-radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = IN - overlay_file = "assets/menu-radio-checked-hover.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = IN - overlay_file = "assets/menu-radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = INSENSITIVE - shadow = IN - overlay_file = "assets/menu-radio-checked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = 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-hover.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-insensitive.png" - overlay_stretch = FALSE - } - - - - } - -} - -style "separator_menu_item" { - - xthickness = 0 - ythickness = 0 - - engine "pixmap" { - image { - function = BOX - file = "assets/line.png" - } - } - -} - -style "button_label" { - fg[PRELIGHT] = @selected_fg_color - fg[ACTIVE] = @selected_fg_color -} - -style "misc_button_label" { - fg[PRELIGHT] = @fg_color - fg[ACTIVE] = @fg_color -} - -style "button" { - - xthickness = 2 - ythickness = 2 - - fg[PRELIGHT] = @selected_fg_color - fg[ACTIVE] = @selected_fg_color - font_name = "Bold" - - # For the sake of sanity style buttons this way - engine "pixmap" { - - ########### - # Buttons # - ########### - - image { - function = BOX - state = NORMAL - file = "assets/button.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = BOX - state = PRELIGHT - shadow = OUT - file = "assets/button-hover.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - # Don't add hover effect on pressed buttons - image { - function = BOX - state = PRELIGHT - shadow = IN - file = "assets/button-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = BOX - state = ACTIVE - file = "assets/button-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = BOX - state = INSENSITIVE - file = "assets/button-insensitive.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - } -} - -style "link_button" { - - # Disable the button effect, leave just the link - engine "pixmap" { - image { - function = BOX - } - } - -} - -style "entry" { - - # We set this same as the border of the border of the entry - # This way theres no overlap - xthickness = 4 - ythickness = 4 - -} - -style "combobox" { - - xthickness = 6 - ythickness = 4 - - # This affects only the button beside an entry - GtkButton::inner-border = {0, 0, 0, 0} - -} - -style "combobox_cellview" { - text[NORMAL] = @fg_color - text[PRELIGHT] = @fg_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, 1, 0, 0} - - engine "pixmap" { - - ############# - # LTR entry # - ############# - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "assets/combo-entry-ltr-entry.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/combo-entry-ltr-entry-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/combo-entry-ltr-entry-insensitive.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - ############# - # RTL entry # - ############# - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "assets/combo-entry-rtl-entry.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/combo-entry-rtl-entry-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/combo-entry-rtl-entry-insensitive.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = RTL - } - - ############## - # LTR button # - ############## - - image { - function = BOX - state = NORMAL - detail = "button" - file = "assets/combo-entry-ltr-button.png" - border = {0, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - detail = "button" - file = "assets/combo-entry-ltr-button-hover.png" - border = {0, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - detail = "button" - file = "assets/combo-entry-ltr-button-active.png" - border = {0, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - detail = "button" - file = "assets/combo-entry-ltr-button-insensitive.png" - border = {0, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - ############## - # RTL button # - ############## - - image { - function = BOX - state = NORMAL - detail = "button" - file = "assets/combo-entry-rtl-button.png" - border = {4, 0, 4, 4} - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - detail = "button" - file = "assets/combo-entry-rtl-button-hover.png" - border = {4, 0, 4, 4} - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - detail = "button" - file = "assets/combo-entry-rtl-button-active.png" - border = {4, 0, 4, 4} - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - detail = "button" - file = "assets/combo-entry-rtl-button-insensitive.png" - border = {4, 0, 4, 4} - 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, 8, 4, 4} - -} - -style "notebook" { - - xthickness = 5 - ythickness = 2 - -} - -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" { - - engine "pixmap" { - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/notebook-entry-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/notebook-entry-insensitive.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - file = "assets/notebook-entry.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - } -} - -style "normal_bg" { - bg[NORMAL] = @bg_color - bg[PRELIGHT] = @bg_color - bg[INSENSITIVE] = mix (0.6, @bg_color, @base_color) -} - -style "normal_entry" { - - engine "pixmap" { - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/entry-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/entry-insensitive.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - file = "assets/entry.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - } -} - -style "notebook_combo" { - - engine "pixmap" { - - ############# - # LTR entry # - ############# - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "assets/notebook-combo-entry-ltr-entry.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/notebook-combo-entry-ltr-entry-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/notebook-combo-entry-ltr-entry-insensitive.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = LTR - } - - ############# - # RTL entry # - ############# - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "assets/notebook-combo-entry-rtl-entry.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/notebook-combo-entry-rtl-entry-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/notebook-combo-entry-rtl-entry-insensitive.png" - border = {4, 4, 4, 4} - stretch = TRUE - direction = RTL - } - - } - -} - -style "textview" { - bg[NORMAL] = @base_color -} - -style "scale_horz" { - - engine "pixmap" { - - image { - function = BOX - detail = "trough-upper" - file = "assets/scale-horz-trough.png" - border = {10, 10, 0, 0} - stretch = TRUE - } - - image { - function = BOX - detail = "trough-lower" - file = "assets/scale-horz-trough-active.png" - border = {10, 10, 0, 0} - stretch = TRUE - } - - } - -} - -style "scale_vert" { - - engine "pixmap" { - - image { - function = BOX - detail = "trough-upper" - file = "assets/scale-vert-trough.png" - border = {0, 0, 10, 10} - stretch = TRUE - } - - image { - function = BOX - detail = "trough-lower" - file = "assets/scale-vert-trough-active.png" - border = {0, 0, 10, 10} - stretch = TRUE - } - - } - -} - -style "progressbar" { - - xthickness = 1 - ythickness = 1 - - fg[PRELIGHT] = @selected_fg_color - - engine "pixmap" { - - image { - function = BOX - detail = "trough" - file = "assets/progressbar-horz-trough.png" - border = {3, 3, 2, 2} - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough" - file = "assets/progressbar-vert-trough.png" - border = {2, 2, 3, 3} - stretch = TRUE - orientation = VERTICAL - } - - } - -} - -style "treeview_header" { - - xthickness = 1 - ythickness = 0 - - fg[NORMAL] = mix(0.5, @fg_color, @base_color) - fg[PRELIGHT] = mix(0.5, mix(0.5, @fg_color, @base_color), @fg_color) - - font_name = "Bold" - - GtkButton::inner-border = {5, 5, 0, 1} - - engine "pixmap" { - - image { - function = BOX - file = "assets/treeview-separator-ltr.png" - border = {0, 1, 0, 1} - stretch = TRUE - direction = LTR - } - - image { - function = BOX - file = "assets/treeview-separator-rtl.png" - border = {1, 0, 0, 1} - stretch = TRUE - direction = RTL - } - - image { - function = ARROW - state = NORMAL - overlay_file = "assets/treeview-pan-up.png" - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/treeview-pan-up-hover.png" - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/treeview-pan-up-active.png" - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = NORMAL - overlay_file = "assets/treeview-pan-down.png" - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/treeview-pan-down-hover.png" - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/treeview-pan-down-active.png" - overlay_stretch = FALSE - arrow_direction = DOWN - } - - } - -} - -style "scrolled_window" { - - engine "pixmap" { - image { - function = SHADOW - file = "assets/frame.png" - border = {1, 1, 1, 1} - stretch = TRUE - } - } - -} - -style "frame" { - - engine "pixmap" { - - image { - function = SHADOW - file = "assets/frame.png" - border = {0, 0, 0, 0} - stretch = TRUE - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = {0, 0, 0, 0} - stretch = TRUE - gap_start_file = "assets/border.png" - gap_end_file = "assets/border.png" - } - - } - -} - -style "toolbar_button" { - - xthickness = 2 - ythickness = 2 - - GtkButton::inner-border = {2, 2, 2, 2} - - engine "pixmap" { - image { - function = BOX - state = PRELIGHT - shadow = OUT - file = "assets/toolbar-button-hover.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - # Don't add hover effect on pressed buttons - image { - function = BOX - state = PRELIGHT - shadow = IN - file = "assets/toolbar-button-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - - image { - function = BOX - state = ACTIVE - file = "assets/toolbar-button-active.png" - border = {4, 4, 4, 4} - stretch = TRUE - } - } -} - -style "toolbar_separator" { - - GtkWidget::wide-separators = 1 - GtkWidget::separator-width = 1 - GtkWidget::separator-height = 1 - - engine "pixmap" { - image { - function = BOX - file = "assets/line.png" - } - } - -} - -style "inline_toolbar" { - - GtkToolbar::button-relief = GTK_RELIEF_NORMAL - - engine "pixmap" { - image { - function = SHADOW - file = "assets/frame-inline.png" - border = {1, 1, 0, 1} - stretch = TRUE - } - } - -} - -style "tooltip" { - - xthickness = 13 - ythickness = 13 - - bg[NORMAL] = @tooltip_bg_color - fg[NORMAL] = @tooltip_fg_color - bg[SELECTED] = @tooltip_bg_color - -} - - -style "disable_shadow" { - - engine "pixmap" { - image { - function = SHADOW - } - } - -} - -style "disable_separator" { - - xthickness = 0 - ythickness = 0 - - GtkWidget::wide-separators = 1 - -} - -# Text Style -style "text" = "default" { - engine "murrine" { textstyle = 0 } -} - -style "menu_text" = "menu_item" { - engine "murrine" { textstyle = 0 } -} - -# Default style, containing most of the stuff -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" - -widget_class "**" style "button_label" -widget_class "**" style "misc_button_label" - -# Menu and menubar items -widget_class "**" style "menu_item" -widget_class "*.*" style "menubar_item" -widget_class "**" style "separator_menu_item" - -# Frames in statusbars look ugly, let's disable them -widget_class "**" style "disable_shadow" -# Disable the frame around poor Wilbert too -widget_class "**" style "disable_shadow" - -# 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" -# And disable separators on them -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 - -# Toolbar buttons have different paddings -widget_class "**" style "toolbar_button" - -# 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" -widget_class "***" style "notebook_combo" -widget_class "***" style "notebook_combo" - -# 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" -widget_class "****" style "combobox_entry" -widget_class "****" style "combobox_entry" -widget_class "***." style "combo_button_padding" - -# ComboBoxes tend to draw the button label with text[] instead of fg[], we need to fix that -widget_class "**" style "combobox_cellview" - -# GTK tooltips -widget "gtk-tooltip*" style "tooltip" -widget_class "***" style "normal_bg" -widget_class "***" style "normal_bg" -widget_class "****" style "combobox_entry" -widget_class "****" style "combobox_entry" -widget_class "***." style "combo_button_padding" - -# ComboBoxes tend to draw the button label with text[] instead of fg[], we need to fix that -widget_class "**" style "combobox_cellview" - -# GTK tooltips -widget "gtk-tooltip*" style "tooltip" - -# Fixes ugly text shadows for insensitive text -widget_class "*" style "text" -widget_class "**" style "menu_text" -widget_class "**" style "text" -widget_class "**" style "text" -widget_class "**" style "text" diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/gtk-dark.css b/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/gtk-dark.css deleted file mode 100755 index faed3f7..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/gtk-dark.css +++ /dev/null @@ -1,6321 +0,0 @@ -/*$selected_bg_color: #00e8c6;06d6a0*/ -/* GTK NAMED COLORS - ---------------- - use responsibly! */ -/* widget text/foreground color */ -@define-color theme_fg_color #BFC3C4; -/* text color for entries, views and content in general */ -@define-color theme_text_color #BFC3C4; -/* widget base background color */ -@define-color theme_bg_color #0F111A; -/* text widgets and the like base background color */ -@define-color theme_base_color #131520; -/* base background color of selections */ -@define-color theme_selected_bg_color #00A9A5; -/* text/foreground color of selections */ -@define-color theme_selected_fg_color #fefefe; -/* base background color of disabled widgets */ -@define-color insensitive_bg_color #151722; -/* text foreground color of disabled widgets */ -@define-color insensitive_fg_color #676a6f; -/* disabled text widgets and the like base background color */ -@define-color insensitive_base_color #131520; -/* widget text/foreground color on backdrop windows */ -@define-color theme_unfocused_fg_color #676a6f; -/* text color for entries, views and content in general on backdrop windows */ -@define-color theme_unfocused_text_color #BFC3C4; -/* widget base background color on backdrop windows */ -@define-color theme_unfocused_bg_color #0F111A; -/* text widgets and the like base background color on backdrop windows */ -@define-color theme_unfocused_base_color #151724; -/* base background color of selections on backdrop windows */ -@define-color theme_unfocused_selected_bg_color #00A9A5; -/* text/foreground color of selections on backdrop windows */ -@define-color theme_unfocused_selected_fg_color #fefefe; -/* widgets main borders color */ -@define-color borders #040407; -/* widgets main borders color on backdrop windows */ -@define-color unfocused_borders #050509; -/* these are pretty self explicative */ -@define-color warning_color #f4663c; -@define-color error_color #ff3a5b; -@define-color success_color #56ceff; -@define-color fg_color #BFC3C4; -@define-color text_color #BFC3C4; -@define-color bg_color #0F111A; -@define-color base_color #131520; -@define-color selected_bg_color #00A9A5; -@define-color selected_fg_color #fefefe; -@define-color unfocused_fg_color #676a6f; -@define-color unfocused_text_color #BFC3C4; -@define-color unfocused_bg_color #0F111A; -@define-color unfocused_base_color #151724; -@define-color unfocused_selected_bg_color #00A9A5; -@define-color unfocused_selected_fg_color #fefefe; -/* 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 shade(#BFC3C4, 1.8); -@define-color wm_unfocused_title #676a6f; -@define-color wm_highlight rgba(0, 0, 0, 0); -@define-color wm_borders_edge rgba(255, 255, 255, 0.1); -@define-color wm_bg_a shade(#0F111A, 1.2); -@define-color wm_bg_b #0F111A; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_border alpha(black, 0.18); -@define-color wm_button_hover_color_a shade(#0F111A, 1.3); -@define-color wm_button_hover_color_b #0F111A; -@define-color wm_button_active_color_a shade(#0F111A, 0.85); -@define-color wm_button_active_color_b shade(#0F111A, 0.89); -@define-color wm_button_active_color_c shade(#0F111A, 0.9); -@define-color content_view_bg #131520; -@define-color text_view_bg #131520; -@define-color budgie_tasklist_indicator_color #00A9A5; -@define-color budgie_tasklist_indicator_color_active #00A9A5; -@define-color placeholder_text_color #9da1a4; -@define-color STRAWBERRY_100 #ff8c82; -@define-color STRAWBERRY_300 #ed5353; -@define-color STRAWBERRY_500 #c6262e; -@define-color STRAWBERRY_700 #a10705; -@define-color STRAWBERRY_900 #7a0000; -@define-color ORANGE_100 #ffc27d; -@define-color ORANGE_300 #ffa154; -@define-color ORANGE_500 #f37329; -@define-color ORANGE_700 #cc3b02; -@define-color ORANGE_900 #a62100; -@define-color BANANA_100 #fff394; -@define-color BANANA_300 #ffe16b; -@define-color BANANA_500 #f9c440; -@define-color BANANA_700 #d48e15; -@define-color BANANA_900 #ad5f00; -@define-color LIME_100 #d1ff82; -@define-color LIME_300 #9bdb4d; -@define-color LIME_500 #68b723; -@define-color LIME_700 #3a9104; -@define-color LIME_900 #206b00; -@define-color MINT_100 #89ffdd; -@define-color MINT_300 #43d6b5; -@define-color MINT_500 #28bca3; -@define-color MINT_700 #0e9a83; -@define-color MINT_900 #007367; -@define-color BLUEBERRY_100 #8cd5ff; -@define-color BLUEBERRY_300 #64baff; -@define-color BLUEBERRY_500 #3689e6; -@define-color BLUEBERRY_700 #0d52bf; -@define-color BLUEBERRY_900 #002e99; -@define-color BUBBLEGUM_100 #fe9ab8; -@define-color BUBBLEGUM_300 #f4679d; -@define-color BUBBLEGUM_500 #de3e80; -@define-color BUBBLEGUM_700 #bc245d; -@define-color BUBBLEGUM_900 #910e38; -@define-color GRAPE_100 #e4c6fa; -@define-color GRAPE_300 #cd9ef7; -@define-color GRAPE_500 #a56de2; -@define-color GRAPE_700 #7239b3; -@define-color GRAPE_900 #452981; -@define-color COCOA_100 #a3907c; -@define-color COCOA_300 #8a715e; -@define-color COCOA_500 #715344; -@define-color COCOA_700 #57392d; -@define-color COCOA_900 #3d211b; -@define-color SILVER_100 #fafafa; -@define-color SILVER_300 #d4d4d4; -@define-color SILVER_500 #abacae; -@define-color SILVER_700 #7e8087; -@define-color SILVER_900 #555761; -@define-color SLATE_100 #95a3ab; -@define-color SLATE_300 #667885; -@define-color SLATE_500 #485a6c; -@define-color SLATE_700 #273445; -@define-color SLATE_900 #0e141f; -@define-color BLACK_100 #666; -@define-color BLACK_300 #4d4d4d; -@define-color BLACK_500 #333; -@define-color BLACK_700 #1a1a1a; -@define-color BLACK_900 #000; -/***************** -* Drawing mixins * -*****************/ -/********* -* Common * -*********/ -* { - padding: 0; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #ff3a5b; - -GtkScrolledWindow-scrollbar-spacing: 0; - -GtkToolItemGroup-expander-size: 11; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 24; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - outline-color: rgba(191, 195, 196, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - -gtk-outline-radius: 2px; - -gtk-secondary-caret-color: #00A9A5; } - -/*********** - * Widgets * - ***********/ -/*************** -* Action bars * -***************/ -.action-bar { - background-color: black; - border: solid #040407; - border-width: 1px 0 0 0; - color: #BFC3C4; - box-shadow: none; } - .action-bar:backdrop { - background-color: black; - box-shadow: none; - -gtk-icon-effect: dim; } - .action-bar:first-child { - border-radius: 6px 6px 0px 0px; - border-width: 1px 1px 0px 1px; } - .action-bar:last-child { - border-radius: 0 0 6px 6px; - border-width: 0px 1px 1px 1px; } - -/********************* - * App Notifications * - *********************/ -.app-notification, -.app-notification.frame { - padding: 10px; - border-radius: 0 0 5px 5px; - background-color: rgba(8, 9, 13, 0.93); - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 2px); - background-clip: padding-box; } - .app-notification:backdrop, - .app-notification.frame:backdrop { - background-image: none; - transition: 200ms ease-out; } - .app-notification border, - .app-notification.frame border { - border: none; } - -/*************** - * Base States * - ***************/ -.background { - color: #BFC3C4; - background-color: #0F111A; } - .background:backdrop { - color: #676a6f; - background-color: #0F111A; - text-shadow: none; - -gtk-icon-shadow: none; } - -/* - 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. -*/ -selection { - background-color: #00A9A5; - color: #fefefe; } - -*:disabled { - -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - color: #BFC3C4; - background-color: #0F111A; } - .gtkstyle-fallback:hover { - color: #BFC3C4; - background-color: #22263a; } - .gtkstyle-fallback:active { - color: #BFC3C4; - background-color: black; } - .gtkstyle-fallback:disabled { - color: #676a6f; - background-color: #151722; } - .gtkstyle-fallback:selected { - color: #fefefe; - background-color: #00A9A5; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #BFC3C4; - background-color: #131520; } - .view:backdrop, iconview:backdrop, - .view text:backdrop, - iconview text:backdrop, - textview text:backdrop { - color: #9da1a4; - background-color: #151724; } - .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected { - border-radius: 3px; } - -textview border { - background-color: #11131d; } - -.rubberband, -rubberband, -flowbox rubberband, -.content-view rubberband, -treeview.view rubberband { - border: 1px solid #007673; - background-color: rgba(0, 118, 115, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 3px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label { - caret-color: currentColor; } - label.separator { - color: #BFC3C4; } - label.separator:backdrop { - color: #676a6f; } - label selection { - background-color: #00A9A5; - color: #fefefe; } - label:disabled { - color: #676a6f; } - label:disabled:backdrop { - color: #2b314b; } - label:backdrop { - color: #676a6f; } - -.dim-label, label.separator, .titlebar .subtitle, -headerbar .subtitle { - opacity: 0.55; - text-shadow: none; } - -assistant .sidebar { - background-color: #131520; - border-top: 1px solid #040407; } - assistant .sidebar:backdrop { - background-color: #151724; - border-color: #050509; } -assistant.csd .sidebar { - border-top-style: none; } -assistant .sidebar label { - padding: 6px 12px; } -assistant .sidebar label.highlight { - background-color: #32353c; } - -.app-notification, -.app-notification.frame, .osd .scale-popup, .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier, .csd popover.background.osd, popover.background.osd, .osd { - color: #BFC3C4; - border: none; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - outline-color: rgba(191, 195, 196, 0.3); - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .app-notification:backdrop, .osd .scale-popup:backdrop, popover.background.touch-selection:backdrop, popover.background.magnifier:backdrop, popover.background.osd:backdrop, .osd:backdrop { - text-shadow: none; - -gtk-icon-shadow: none; } - -*:selected { - background: #00A9A5; - color: #fefefe; } - -/*********** - * Buttons * - ***********/ -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#00f6f0), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#00A9A5), to(transparent)); } } -notebook > header > tabs > arrow, -button { - min-height: 20px; - min-width: 16px; - padding: 2px 6px; - border: 1px solid #040407; - border-radius: 4px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - notebook > header > tabs > arrow, - button.flat { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - transition: none; } - notebook > header > tabs > arrow:hover, - button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 500ms; - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:hover:active, - button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - notebook > header > tabs > arrow:hover, - button:hover { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; - -gtk-icon-effect: highlight; } - notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, - button:active, - button:checked { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background: #00908c; - text-shadow: none; - transition-duration: 50ms; } - notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:backdrop, - button:backdrop.flat, - button:backdrop { - color: #9da1a4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #151724; - text-shadow: none; - transition: 200ms ease-out; - -gtk-icon-effect: none; } - notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, - button:backdrop.flat:active, - button:backdrop.flat:checked, - button:backdrop:active, - button:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, - button:backdrop.flat:active label, - button:backdrop.flat:checked label, - button:backdrop:active label, - button:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - notebook > header > tabs > arrow:backdrop:disabled, notebook > header > tabs > arrow:backdrop:disabled, - button:backdrop.flat:disabled, - button:backdrop:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, - button:backdrop.flat:disabled:active, - button:backdrop.flat:disabled:checked, - button:backdrop:disabled:active, - button:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:disabled, notebook > header > tabs > arrow:backdrop:disabled, - button.flat:backdrop, - button.flat:disabled, - button.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - notebook > header > tabs > arrow:disabled, - button:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - notebook > header > tabs > arrow:disabled:active, notebook > header > tabs > arrow:disabled:checked, - button:disabled:active, - button:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:disabled:active label, notebook > header > tabs > arrow:disabled:checked label, - button:disabled:active label, - button:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - notebook > header > tabs > arrow.image-button, - button.image-button { - min-width: 24px; - padding-left: 4px; - padding-right: 4px; } - notebook > header > tabs > arrow.image-button.circular, notebook > header > tabs > arrow.image-button.sidebar-button, - button.image-button.circular, - button.image-button.sidebar-button { - padding: 6px 4px; - border-radius: 50px; - box-shadow: none; } - notebook > header > tabs > arrow.text-button, - button.text-button { - padding-left: 16px; - padding-right: 16px; } - notebook > header > tabs > arrow.text-button.image-button, - button.text-button.image-button { - padding-left: 8px; - padding-right: 8px; - border-radius: 2px; } - notebook > header > tabs > arrow.text-button.image-button label, - button.text-button.image-button label { - padding-left: 8px; - padding-right: 8px; } - combobox:drop(active) button.combo, notebook > header > tabs > arrow:drop(active), - button:drop(active) { - color: #00A9A5; - border-color: #00A9A5; - box-shadow: inset 0 0 0 1px #00A9A5; } -row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled) { - color: #fefefe; - border-color: transparent; } - row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop { - color: #676a6f; } -button.osd { - min-width: 24px; - min-height: 20px; - color: #BFC3C4; - border-radius: 5px; - outline-color: rgba(191, 195, 196, 0.3); - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd.image-button { - min-width: 32px; } - button.osd:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd:active, - button.osd:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd:disabled:backdrop, - button.osd:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - border: none; } - button.osd:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - border: none; } -.app-notification button, -.app-notification.frame button, .csd popover.background.touch-selection button, .csd popover.background.magnifier button, popover.background.touch-selection button, popover.background.magnifier button, -.osd button { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, - .osd button:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:active:backdrop, popover.background.touch-selection button:active:backdrop, popover.background.magnifier button:active:backdrop, .app-notification button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .app-notification button:checked:backdrop, popover.background.touch-selection button:checked:backdrop, popover.background.magnifier button:checked:backdrop, .app-notification button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, - .osd button:active:backdrop, - .osd button:active, - .osd button:checked:backdrop, - .osd button:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:disabled:backdrop, popover.background.touch-selection button:disabled:backdrop, popover.background.magnifier button:disabled:backdrop, .app-notification button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, - .osd button:disabled:backdrop, - .osd button:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button:backdrop, popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop, - .osd button:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button.flat, popover.background.touch-selection button.flat, popover.background.magnifier button.flat, - .osd button.flat { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - box-shadow: none; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .app-notification button.flat:hover, popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover, - .osd button.flat:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button.flat:disabled, popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled, - .osd button.flat:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - background-image: none; - border-color: transparent; - box-shadow: none; } - .app-notification button.flat:backdrop, popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop, - .osd button.flat:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button.flat:active, popover.background.touch-selection button.flat:active, popover.background.magnifier button.flat:active, .app-notification button.flat:checked, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked, - .osd button.flat:active, - .osd button.flat:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } -button.suggested-action { - border: none; - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .selection-mode button.titlebutton, button.suggested-action.flat { - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - button.suggested-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:active, button.suggested-action:checked { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #F78C6C; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop, button.suggested-action:backdrop, button.suggested-action.flat:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop label, button.suggested-action:backdrop label, button.suggested-action.flat:backdrop label { - color: rgba(255, 255, 255, 0.5); } - .selection-mode button.titlebutton:backdrop:active, .selection-mode button.titlebutton:backdrop:checked, button.suggested-action:backdrop:active, button.suggested-action:backdrop:checked, button.suggested-action.flat:backdrop:active, button.suggested-action.flat:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop:active label, .selection-mode button.titlebutton:backdrop:checked label, button.suggested-action:backdrop:active label, button.suggested-action:backdrop:checked label, button.suggested-action.flat:backdrop:active label, button.suggested-action.flat:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - .selection-mode button.titlebutton:backdrop:disabled, button.suggested-action:backdrop:disabled, button.suggested-action.flat:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop:disabled label, button.suggested-action:backdrop:disabled label, button.suggested-action.flat:backdrop:disabled label { - color: rgba(255, 255, 255, 0.5); } - .selection-mode button.titlebutton:backdrop:disabled:active, .selection-mode button.titlebutton:backdrop:disabled:checked, button.suggested-action:backdrop:disabled:active, button.suggested-action:backdrop:disabled:checked, button.suggested-action.flat:backdrop:disabled:active, button.suggested-action.flat:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop, .selection-mode button.titlebutton:disabled, .selection-mode button.titlebutton:backdrop:disabled, button.suggested-action.flat:backdrop, button.suggested-action.flat:disabled, button.suggested-action.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(247, 140, 108, 0.8); } - button.suggested-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:disabled:active, button.suggested-action:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:disabled:active label, button.suggested-action:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - .osd button.suggested-action { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(247, 140, 108, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(247, 140, 108, 0.7), rgba(247, 140, 108, 0.7)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:active:backdrop, .osd button.suggested-action:active, .osd button.suggested-action:checked:backdrop, .osd button.suggested-action:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, #F78C6C, #F78C6C); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:disabled:backdrop, .osd button.suggested-action:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd button.suggested-action:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(247, 140, 108, 0.5), rgba(247, 140, 108, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -button.destructive-action { - border: none; - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #FF5370, #FF5370); } - button.destructive-action.flat { - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - button.destructive-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:active, button.destructive-action:checked { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop, button.destructive-action.flat:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop label, button.destructive-action.flat:backdrop label { - color: rgba(255, 255, 255, 0.5); } - button.destructive-action:backdrop:active, button.destructive-action:backdrop:checked, button.destructive-action.flat:backdrop:active, button.destructive-action.flat:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - button.destructive-action:backdrop:active label, button.destructive-action:backdrop:checked label, button.destructive-action.flat:backdrop:active label, button.destructive-action.flat:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - button.destructive-action:backdrop:disabled, button.destructive-action.flat:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop:disabled label, button.destructive-action.flat:backdrop:disabled label { - color: rgba(255, 255, 255, 0.5); } - button.destructive-action:backdrop:disabled:active, button.destructive-action:backdrop:disabled:checked, button.destructive-action.flat:backdrop:disabled:active, button.destructive-action.flat:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - button.destructive-action.flat:backdrop, button.destructive-action.flat:disabled, button.destructive-action.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(255, 32, 70, 0.8); } - button.destructive-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:disabled:active, button.destructive-action:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:disabled:active label, button.destructive-action:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - .osd button.destructive-action { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(255, 32, 70, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(255, 32, 70, 0.7), rgba(255, 32, 70, 0.7)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:active:backdrop, .osd button.destructive-action:active, .osd button.destructive-action:checked:backdrop, .osd button.destructive-action:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, #ff2046, #ff2046); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:disabled:backdrop, .osd button.destructive-action:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd button.destructive-action:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(255, 32, 70, 0.5), rgba(255, 32, 70, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -.stack-switcher > button { - outline-offset: -3px; } - .stack-switcher > button > label { - padding-left: 6px; - padding-right: 6px; } - .stack-switcher > button > image { - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - padding-bottom: 3px; } - .stack-switcher > button.text-button { - padding-left: 10px; - padding-right: 10px; } - .stack-switcher > button.image-button { - padding-left: 2px; - padding-right: 2px; } - .stack-switcher > button.needs-attention:active > label, - .stack-switcher > button.needs-attention:active > image, .stack-switcher > button.needs-attention:checked > label, - .stack-switcher > button.needs-attention:checked > image { - animation: none; - background-image: none; } -.inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } -.primary-toolbar button, .primary-toolbar .raised button { - -gtk-icon-shadow: none; } - .primary-toolbar button:hover, .primary-toolbar button:focus, .primary-toolbar .raised button:hover, .primary-toolbar .raised button:focus { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; } - -.stack-switcher > button.needs-attention > label, -.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#00f6f0), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.45, to(rgba(0, 0, 0, 0.9356862745)), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > button.needs-attention > label:backdrop, - .stack-switcher > button.needs-attention > image:backdrop, stacksidebar row.needs-attention > label:backdrop { - background-size: 6px 6px, 0 0; } - .stack-switcher > button.needs-attention > label:dir(rtl), - .stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 2px; } - -toolbar button:hover { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } -toolbar button:active { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - -.inline-toolbar toolbutton > button { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .inline-toolbar toolbutton > button:hover { - color: #fefefe; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #f1f1f1; } - .inline-toolbar toolbutton > button:disabled { - color: #9da1a4; } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(241, 241, 241, 0.3); } - .inline-toolbar toolbutton > button:backdrop { - color: #9da1a4; } - .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked { - color: #f1f1f1; } - .inline-toolbar toolbutton > button:backdrop:disabled { - color: #9da1a4; } - .inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked { - color: rgba(241, 241, 241, 0.3); } - -toolbar.inline-toolbar toolbutton > button.flat:backdrop, -toolbar.inline-toolbar toolbutton:backdrop > button.flat:backdrop { - border-color: transparent; - box-shadow: none; } - -.inline-toolbar button, .inline-toolbar button:backdrop, .linked > button, .linked > button:hover, .linked > button:active, .linked > button:checked, .linked > button:backdrop, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > -entry, .linked > combobox > box > button.combo:dir(ltr), .linked > combobox > box > button.combo:dir(rtl) { - border: 1px solid #040407; - border-radius: 0; - border-right-style: none; - box-shadow: none; } - .inline-toolbar button:disabled, .linked > button:disabled, .linked:not(.vertical) > spinbutton:disabled:not(.vertical), .linked:not(.vertical) > - entry:disabled, .linked > combobox > box > button.combo:disabled:dir(ltr), .linked > combobox > box > button.combo:disabled:dir(rtl) { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; - color: #676a6f; } - -.inline-toolbar button:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > -entry:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } -.inline-toolbar button:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > -entry:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } -.inline-toolbar button:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > -entry:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > button, .linked.vertical > button:hover, .linked.vertical > button:active, .linked.vertical > button:checked, .linked.vertical > button:backdrop, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > -entry, .linked.vertical > combobox > box > button.combo { - border-style: solid solid none solid; - border-radius: 0; } - -.linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > -entry:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } -.linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > -entry:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-style: solid; } -.linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > -entry:only-child { - border-radius: 3px; - border-style: solid; } - -modelbutton.flat, popover.background checkbutton, -popover.background radiobutton, -.menuitem.button.flat, modelbutton.flat:backdrop, popover.background checkbutton:backdrop, -popover.background radiobutton:backdrop, modelbutton.flat:backdrop:hover, popover.background checkbutton:backdrop:hover, -popover.background radiobutton:backdrop:hover, -.menuitem.button.flat:backdrop, -.menuitem.button.flat:backdrop:hover, calendar.button, calendar.button:hover, calendar.button:backdrop, calendar.button:disabled, button:link, -button:visited, button:link:hover, button:link:active, button:link:checked, -button:visited:hover, -button:visited:active, -button:visited:checked, .scale-popup button:hover, .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - -/* menu buttons */ -modelbutton.flat, popover.background checkbutton, -popover.background radiobutton, -.menuitem.button.flat { - min-height: 26px; - padding-left: 5px; - padding-right: 5px; - border-radius: 3px; - outline-offset: -2px; } - modelbutton.flat:hover, popover.background checkbutton:hover, - popover.background radiobutton:hover, - .menuitem.button.flat:hover { - background-color: #181c2a; } - modelbutton.flat check:last-child, popover.background checkbutton check:last-child, - popover.background radiobutton check:last-child, - modelbutton.flat radio:last-child, - popover.background checkbutton radio:last-child, - popover.background radiobutton radio:last-child, - .menuitem.button.flat check:last-child, - .menuitem.button.flat radio:last-child { - margin-left: 8px; } - modelbutton.flat check:first-child, popover.background checkbutton check:first-child, - popover.background radiobutton check:first-child, - modelbutton.flat radio:first-child, - popover.background checkbutton radio:first-child, - popover.background radiobutton radio:first-child, - .menuitem.button.flat check:first-child, - .menuitem.button.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow, popover.background checkbutton arrow, -popover.background radiobutton arrow { - background: none; } - modelbutton.flat arrow:hover, popover.background checkbutton arrow:hover, - popover.background radiobutton arrow:hover { - background: none; } - modelbutton.flat arrow.left, popover.background checkbutton arrow.left, - popover.background radiobutton arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - modelbutton.flat arrow.right, popover.background checkbutton arrow.right, - popover.background radiobutton arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - -button.color { - padding: 4px; } - button.color colorswatch:only-child, button.color colorswatch:only-child overlay { - border-radius: 0; } - -notebook button, list button, .view button, iconview button, popover button { - box-shadow: none; } - notebook button:backdrop, list button:backdrop, .view button:backdrop, iconview button:backdrop, popover button:backdrop { - box-shadow: none; } -notebook .linked > button, list .linked > button, .view .linked > button, iconview .linked > button, popover .linked > button { - box-shadow: none; } - -/************ - * Calendar * - ***********/ -calendar { - color: #BFC3C4; - border: 1px solid #040407; } - calendar:selected { - border-radius: 3px; } - calendar.header { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0; } - calendar.header:backdrop { - border-color: rgba(0, 0, 0, 0.1); } - calendar.button { - color: rgba(191, 195, 196, 0.45); } - calendar.button:hover { - color: #BFC3C4; } - calendar.button:backdrop { - color: rgba(103, 106, 111, 0.45); } - calendar.button:disabled { - color: rgba(103, 106, 111, 0.45); } - calendar:indeterminate, calendar:indeterminate:backdrop { - color: alpha(currentColor,0.55); } - calendar.highlight, calendar.highlight:backdrop { - font-size: smaller; - color: #BFC3C4; } - calendar:backdrop { - color: #9da1a4; - border-color: #050509; } - -/************************* - * Check and Radio Items * - *************************/ -check { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-dark.png"), url("../assets/radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-hover-dark.png"), url("../assets/checkbox-unchecked-hover-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-hover-dark.png"), url("../assets/radio-unchecked-hover-dark@2.png")); - -gtk-icon-shadow: none; } - -check:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-active-dark.png"), url("../assets/checkbox-unchecked-active-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-active-dark.png"), url("../assets/radio-unchecked-active-dark@2.png")); - -gtk-icon-shadow: none; } - -check:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-backdrop-dark.png"), url("../assets/checkbox-unchecked-backdrop-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-backdrop-dark.png"), url("../assets/radio-unchecked-backdrop-dark@2.png")); - -gtk-icon-shadow: none; } - -check:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-dark.png"), url("../assets/radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-hover-dark.png"), url("../assets/checkbox-checked-hover-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-hover-dark.png"), url("../assets/radio-checked-hover-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-active-dark.png"), url("../assets/checkbox-checked-active-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active-dark.png"), url("../assets/radio-checked-active-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-backdrop-dark.png"), url("../assets/checkbox-checked-backdrop-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-backdrop-dark.png"), url("../assets/radio-checked-backdrop-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed.png"), url("../assets/checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed.png"), url("../assets/radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-hover.png"), url("../assets/checkbox-mixed-hover@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-hover.png"), url("../assets/radio-mixed-hover@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-active.png"), url("../assets/checkbox-mixed-active@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-backdrop.png"), url("../assets/checkbox-mixed-backdrop@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-backdrop.png"), url("../assets/radio-mixed-backdrop@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check, iconview.content-view check, -.view.content-view.check, -iconview.content-view.check { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio, iconview.content-view radio, -.view.content-view.radio, -iconview.content-view.radio { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked.png"), url("../assets/radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:hover, iconview.content-view check:hover, -.view.content-view.check:hover, -iconview.content-view.check:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-hover.png"), url("../assets/checkbox-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:hover, iconview.content-view radio:hover, -.view.content-view.radio:hover, -iconview.content-view.radio:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-hover.png"), url("../assets/radio-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:active, iconview.content-view check:active, -.view.content-view.check:active, -iconview.content-view.check:active { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-active.png"), url("../assets/checkbox-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:active, iconview.content-view radio:active, -.view.content-view.radio:active, -iconview.content-view.radio:active { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-active.png"), url("../assets/radio-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:backdrop, iconview.content-view check:backdrop, -.view.content-view.check:backdrop, -iconview.content-view.check:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop.png"), url("../assets/checkbox-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:backdrop, iconview.content-view radio:backdrop, -.view.content-view.radio:backdrop, -iconview.content-view.radio:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop.png"), url("../assets/radio-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:disabled, iconview.content-view check:disabled, -.view.content-view.check:disabled, -iconview.content-view.check:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-insensitive.png"), url("../assets/checkbox-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:disabled, iconview.content-view radio:disabled, -.view.content-view.radio:disabled, -iconview.content-view.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-insensitive.png"), url("../assets/radio-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:disabled:backdrop, iconview.content-view check:disabled:backdrop, -.view.content-view.check:disabled:backdrop, -iconview.content-view.check:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop-insensitive.png"), url("../assets/checkbox-unchecked-backdrop-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:disabled:backdrop, iconview.content-view radio:disabled:backdrop, -.view.content-view.radio:disabled:backdrop, -iconview.content-view.radio:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop-insensitive.png"), url("../assets/radio-unchecked-backdrop-insensitive@2.png")); - -gtk-icon-shadow: none; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child { - margin-left: 4px; } - checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - margin: 0 4px; - min-height: 16px; - min-width: 16px; - border: none; } - menu menuitem check, menu menuitem - radio { - margin: 0; } - menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem - radio, menu menuitem - radio:hover, menu menuitem - radio:disabled { - min-height: 14px; - min-width: 14px; - background-image: none; - background-color: transparent; - box-shadow: none; - -gtk-icon-shadow: none; - color: inherit; - border-color: currentColor; - animation: none; } - -/***************** - * Color Chooser * - *****************/ -colorswatch, colorswatch:drop(active) { - border-style: none; } -colorswatch.top { - border-top-left-radius: 5.5px; - border-top-right-radius: 5.5px; } - colorswatch.top overlay { - border-top-left-radius: 5px; - border-top-right-radius: 5px; } -colorswatch.bottom { - border-bottom-left-radius: 5.5px; - border-bottom-right-radius: 5.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 5.5px; - border-bottom-left-radius: 5.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 5px; - border-bottom-left-radius: 5px; } -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 5.5px; - border-bottom-right-radius: 5.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 5px; - border-bottom-right-radius: 5px; } -colorswatch.dark overlay { - color: #fefefe; } - colorswatch.dark overlay:hover { - border-color: #040407; } - colorswatch.dark overlay:backdrop { - color: rgba(254, 254, 254, 0.5); } -colorswatch.light overlay { - color: #BFC3C4; } - colorswatch.light overlay:hover { - border-color: #040407; } - colorswatch.light overlay:backdrop { - color: #9da1a4; } -colorswatch:drop(active) { - box-shadow: none; } - colorswatch:drop(active).light overlay { - border-color: #00A9A5; - box-shadow: inset 0 0 0 2px #040407, inset 0 0 0 1px #00A9A5; } - colorswatch:drop(active).dark overlay { - border-color: #00A9A5; - box-shadow: inset 0 0 0 2px #040407, inset 0 0 0 1px #00A9A5; } -colorswatch overlay { - box-shadow: inset 0 3px 2px -2px rgba(0, 0, 0, 0.5); - border: 1px solid #040407; } - colorswatch overlay:hover { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.3); } - colorswatch overlay:backdrop, colorswatch overlay:backdrop:hover { - border-color: #040407; - box-shadow: none; } -colorswatch#add-color-button { - border-radius: 5px 5px 0 0; } - colorswatch#add-color-button:only-child { - border-radius: 5px; } - colorswatch#add-color-button overlay { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - colorswatch#add-color-button overlay:hover { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #131520; - text-shadow: none; } - colorswatch#add-color-button overlay:backdrop { - color: #9da1a4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #151724; - text-shadow: none; } -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } -row:selected colorswatch { - box-shadow: 0 0 0 2px #fefefe; } -colorswatch#editor-color-sample { - border-radius: 4px; } - colorswatch#editor-color-sample overlay { - border-radius: 4.5px; } - -colorchooser .popover.osd { - border-radius: 5px; } - -/************** - * ComboBoxes * - **************/ -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } -combobox:drop(active) { - box-shadow: none; } - -/*********** - * Dialogs * - ***********/ -messagedialog .titlebar:not(headerbar) { - background-color: rgba(15, 17, 26, 0.95); } -messagedialog .titlebar { - min-height: 20px; - background-image: none; - background-color: rgba(15, 17, 26, 0.95); - border-style: none; - border-top-left-radius: 4px; - border-top-right-radius: 4px; } -messagedialog.csd.background { - background-color: rgba(15, 17, 26, 0.95); - color: #BFC3C4; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } -messagedialog.csd .dialog-action-area button { - padding: 10px 14px; - border-radius: 0; - border-left-style: solid; - border-right-style: none; - border-bottom-style: none; - background-color: transparent; - color: #BFC3C4; - box-shadow: none; } - messagedialog.csd .dialog-action-area button:hover { - background-color: rgba(0, 169, 165, 0.9); - color: white; } - messagedialog.csd .dialog-action-area button:first-child { - border-left-style: none; - border-bottom-left-radius: 4px; } - messagedialog.csd .dialog-action-area button:last-child { - border-bottom-right-radius: 4px; } - messagedialog.csd .dialog-action-area button.destructive-action, messagedialog.csd .dialog-action-area button.suggested-action { - color: white; } - -filechooser .dialog-action-box { - border-top: 1px solid #040407; } - filechooser .dialog-action-box:backdrop { - border-top-color: #050509; } -filechooser #pathbarbox { - border-bottom: 1px solid #0F111A; } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -/**************** - * Text Entries * - ****************/ -spinbutton:not(.vertical), entry { - min-height: 28px; - padding-left: 8px; - padding-right: 8px; - border: 1px solid; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; } - spinbutton:not(.vertical) image.left, - entry image.left { - padding-left: 0; - padding-right: 6px; } - spinbutton:not(.vertical) image.right, - entry image.right { - padding-left: 6px; - padding-right: 0; } - spinbutton:not(.vertical) undershoot.left, - entry undershoot.left { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-left: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: left center; - border: none; - box-shadow: none; } - spinbutton:not(.vertical) undershoot.right, - entry undershoot.right { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-right: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: right center; - border: none; - box-shadow: none; } - spinbutton.flat:focus:not(.vertical), spinbutton.flat:not(.vertical), - entry.flat:focus, - entry.flat { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - box-shadow: none; - border-radius: 0; } - spinbutton:focus:not(.vertical), - entry:focus { - border-color: #007673; } - spinbutton:disabled:not(.vertical), - entry:disabled { - color: #676a6f; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - box-shadow: none; } - spinbutton:backdrop:not(.vertical), - entry:backdrop { - color: #9da1a4; - border-color: #050509; - background-color: #151724; - box-shadow: none; - transition: 200ms ease-out; } - spinbutton:backdrop:disabled:not(.vertical), - entry:backdrop:disabled { - color: #2b314b; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - box-shadow: none; } - spinbutton.error:not(.vertical), - entry.error { - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; - color: #ff3a5b; - border-color: #860017; } - spinbutton.error:focus:not(.vertical), - entry.error:focus { - border-color: #860017; } - spinbutton.error:selected:focus:not(.vertical), spinbutton.error:selected:not(.vertical), - entry.error:selected:focus, - entry.error:selected { - background-color: #ff3a5b; } - spinbutton.warning:not(.vertical), - entry.warning { - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; - color: #f4663c; - border-color: #772006; } - spinbutton.warning:focus:not(.vertical), - entry.warning:focus { - border-color: #772006; } - spinbutton.warning:selected:focus:not(.vertical), spinbutton.warning:selected:not(.vertical), - entry.warning:selected:focus, - entry.warning:selected { - background-color: #f4663c; } - spinbutton:not(.vertical) image, - entry image { - color: #9da0a3; } - spinbutton:not(.vertical) image:hover, - entry image:hover { - color: #BFC3C4; } - spinbutton:not(.vertical) image:active, - entry image:active { - color: #00A9A5; } - spinbutton:not(.vertical) image:backdrop, - entry image:backdrop { - color: #575960; } - spinbutton:drop(active):focus:not(.vertical), spinbutton:drop(active):not(.vertical), - entry:drop(active):focus, - entry:drop(active) { - border-color: #00A9A5; - box-shadow: inset 0 0 0 1px #00A9A5; } - .osd spinbutton:not(.vertical), - .osd entry { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(4, 4, 7, 0.5); - box-shadow: none; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:focus:not(.vertical), - .osd entry:focus { - color: #BFC3C4; - border-color: #00A9A5; - background-color: rgba(4, 4, 7, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:backdrop:not(.vertical), - .osd entry:backdrop { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(4, 4, 7, 0.5); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd spinbutton:disabled:not(.vertical), - .osd entry:disabled { - color: #646669; - border-color: #040407; - background-color: rgba(26, 28, 31, 0.5); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -spinbutton:not(.vertical) progress, -entry progress { - margin: 2px -6px; - background-color: transparent; - background-image: none; - border-radius: 0; - border-width: 0 0 2px; - border-color: #00A9A5; - border-style: solid; - box-shadow: none; } - spinbutton:not(.vertical) progress:backdrop, - entry progress:backdrop { - background-color: transparent; } -.linked:not(.vertical) > spinbutton:focus:not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:focus:not(.vertical) + button, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > -entry:focus + spinbutton:not(.vertical), .linked:not(.vertical) > -entry:focus + button, .linked:not(.vertical) > -entry:focus + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + -entry, .linked:not(.vertical) > -entry:focus + -entry { - border-left-color: #007673; } -.linked:not(.vertical) > spinbutton:focus:not(.vertical), .linked:not(.vertical) > -entry:focus { - border-color: #007673; } -.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + button, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > -entry:drop(active) + spinbutton:not(.vertical), .linked:not(.vertical) > -entry:drop(active) + button, .linked:not(.vertical) > -entry:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + -entry, .linked:not(.vertical) > -entry:drop(active) + -entry { - border-left-color: #00A9A5; } -.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled), .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):not(.vertical), .linked.vertical > -entry:not(:disabled) + entry:not(:disabled), .linked.vertical > -entry:not(:disabled) + spinbutton:not(:disabled):not(.vertical) { - border-top-color: #0f1019; - background-image: linear-gradient(to bottom, #131520, #131520); } - .linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled):backdrop, .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):backdrop:not(.vertical), .linked.vertical > - entry:not(:disabled) + entry:not(:disabled):backdrop, .linked.vertical > - entry:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical) { - border-top-color: #10121c; - background-image: linear-gradient(to bottom, #151724, #151724); } -.linked.vertical > spinbutton:disabled:not(.vertical) + spinbutton:disabled:not(.vertical), .linked.vertical > spinbutton:disabled:not(.vertical) + entry:disabled, .linked.vertical > -entry:disabled + spinbutton:disabled:not(.vertical), .linked.vertical > -entry:disabled + entry:disabled { - border-top-color: #0f1019; } -.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus:not(:only-child):not(.vertical), -.linked.vertical > spinbutton:not(.vertical) + entry:focus:not(:only-child), .linked.vertical > -entry + spinbutton:focus:not(:only-child):not(.vertical), -.linked.vertical > -entry + entry:focus:not(:only-child) { - border-top-color: #007673; } -.linked.vertical > spinbutton:not(.vertical) + spinbutton:drop(active):not(:only-child):not(.vertical), -.linked.vertical > spinbutton:not(.vertical) + entry:drop(active):not(:only-child), .linked.vertical > -entry + spinbutton:drop(active):not(:only-child):not(.vertical), -.linked.vertical > -entry + entry:drop(active):not(:only-child) { - border-top-color: #00A9A5; } -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + spinbutton:not(.vertical), -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + entry, -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + button, -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > -entry:focus:not(:only-child) + spinbutton:not(.vertical), -.linked.vertical > -entry:focus:not(:only-child) + entry, -.linked.vertical > -entry:focus:not(:only-child) + button, -.linked.vertical > -entry:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #007673; } -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + spinbutton:not(.vertical), -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + entry, -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + button, -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > -entry:drop(active):not(:only-child) + spinbutton:not(.vertical), -.linked.vertical > -entry:drop(active):not(:only-child) + entry, -.linked.vertical > -entry:drop(active):not(:only-child) + button, -.linked.vertical > -entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-top-color: #00A9A5; } - -treeview entry:focus:dir(rtl), treeview entry:focus:dir(ltr) { - background-color: #131520; - transition-property: color, background; } -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #131520; } - treeview entry.flat:focus, treeview entry:focus { - border-color: #00A9A5; } - -/************* - * Expanders * - *************/ -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: white; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -/**************** - * Floating Bar * - ****************/ -.floating-bar { - background-color: #0F111A; - border-width: 1px; - border-style: solid solid none; - border-color: #040407; - border-radius: 3px 3px 0 0; - box-shadow: none; } - .floating-bar.bottom.left { - border-left-style: none; - border-top-left-radius: 0; } - .floating-bar.bottom.right { - border-right-style: none; - border-top-right-radius: 0; } - .floating-bar > button { - padding: 4px; } - .floating-bar:backdrop { - background-color: #0F111A; - border-color: #050509; } - -/********** - * Frames * - **********/ -frame > border, -.frame { - box-shadow: none; - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #040407; } - frame > border.flat, - .frame.flat { - border-style: none; } - frame > border:backdrop, - .frame:backdrop { - border-color: #050509; } - -actionbar > revealer > box { - padding: 6px; - border-top: 1px solid #040407; } - actionbar > revealer > box:backdrop { - border-color: #050509; } - -scrolledwindow viewport.frame { - border-style: none; } -scrolledwindow overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(black), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(191, 195, 196, 0.13)), to(rgba(191, 195, 196, 0))); - background-size: 100% 5%, 100% 100%; - background-repeat: no-repeat; - background-position: center top; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.top:backdrop { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(#050509), to(rgba(5, 5, 9, 0))); - background-size: 100% 5%; - background-repeat: no-repeat; - background-position: center top; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.bottom { - background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(black), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(191, 195, 196, 0.13)), to(rgba(191, 195, 196, 0))); - background-size: 100% 5%, 100% 100%; - background-repeat: no-repeat; - background-position: center bottom; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.bottom:backdrop { - background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#050509), to(rgba(5, 5, 9, 0))); - background-size: 100% 5%; - background-repeat: no-repeat; - background-position: center bottom; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.left { - background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(black), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(191, 195, 196, 0.13)), to(rgba(191, 195, 196, 0))); - background-size: 5% 100%, 100% 100%; - background-repeat: no-repeat; - background-position: left center; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.left:backdrop { - background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(#050509), to(rgba(5, 5, 9, 0))); - background-size: 5% 100%; - background-repeat: no-repeat; - background-position: left center; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.right { - background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(black), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(191, 195, 196, 0.13)), to(rgba(191, 195, 196, 0))); - background-size: 5% 100%, 100% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.right:backdrop { - background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(#050509), to(rgba(5, 5, 9, 0))); - background-size: 5% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow undershoot.top { - background-color: transparent; - background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-top: 1px; - background-size: 10px 1px; - background-repeat: repeat-x; - background-origin: content-box; - background-position: center top; - border: none; - box-shadow: none; } -scrolledwindow undershoot.bottom { - background-color: transparent; - background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-bottom: 1px; - background-size: 10px 1px; - background-repeat: repeat-x; - background-origin: content-box; - background-position: center bottom; - border: none; - box-shadow: none; } -scrolledwindow undershoot.left { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-left: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: left center; - border: none; - box-shadow: none; } -scrolledwindow undershoot.right { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-right: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: right center; - border: none; - box-shadow: none; } -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #040407 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #11131d; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - scrolledwindow junction:backdrop { - border-image-source: linear-gradient(to bottom, #050509 1px, transparent 1px); - background-color: #090b10; - transition: 200ms ease-out; } - -separator { - background: rgba(0, 0, 0, 0.1); } - -/************ - * Popovers * - ************/ -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 8px; - -GraniteWidgetsPopOver-border-width: 0; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid #131520; - background: #131520; - color: #BFC3C4; } - GraniteWidgetsPopOver .button { - background-image: none; - background: none; - border: none; } - GraniteWidgetsPopOver .button:active, GraniteWidgetsPopOver .button:active:hover { - color: #00A9A5; } - GraniteWidgetsPopOver > .frame { - border: none; } - GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar { - border: none; - background: none; } - -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.popover_bg { - background-color: #131520; - background-image: none; - border: 1px solid #131520; - color: #BFC3C4; } - -/*********** - * Welcome * - **********/ -GraniteWidgetsWelcome { - background-color: #131520; } - GraniteWidgetsWelcome GtkLabel { - color: #BFC3C4; } - GraniteWidgetsWelcome .h1, GraniteWidgetsWelcome .h3 { - color: rgba(191, 195, 196, 0.8); } - -/************** -* Source List * -***************/ -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; - background-color: #0F111A; - border: solid #040407; - color: #BFC3C4; - border-right-width: 1px; } - .source-list .category-expander { - color: transparent; } - .source-list .badge { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - color: #0F111A; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - .source-list .badge:selected:backdrop, .source-list .badge:selected:hover:backdrop { - background-color: rgba(0, 0, 0, 0.2); - color: #06060a; } - .source-list row, - .source-list .list-row { - border: none; - padding: 0; } - .source-list row > GtkLabel, - .source-list row > label, - .source-list .list-row > GtkLabel, - .source-list .list-row > label { - padding-left: 6px; - padding-right: 6px; } - -/************** -* Text Styles * -**************/ -.h1 { - font-size: 24px; } - -.h2 { - font-weight: 300; - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - font-size: 12px; - padding: 6px; - color: rgba(191, 195, 196, 0.3); - font-weight: bold; - text-shadow: 0 1px rgba(255, 255, 255, 0.2); } - -/************** -* Storage Bar * -**************/ -.storage-bar .trough { - border: none; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); - background-image: none; - background-color: transparent; - padding: 8px 6px; } -.storage-bar .fill-block { - background-color: #FFCB6B; - border: none; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); - transition: all 200ms ease-in-out; - padding: 8px 6px; } - .storage-bar .fill-block:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - border-left-width: 1px; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } - .storage-bar .fill-block:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset -1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } - .storage-bar .fill-block.empty-block { - background-color: #131520; } - .storage-bar .fill-block.app { - background-color: #82AAFF; } - .storage-bar .fill-block.audio { - background-color: #F78C6C; } - .storage-bar .fill-block.photo { - background-color: #FF5370; } - .storage-bar .fill-block.video { - background-color: #C792EA; } - .storage-bar .fill-block .legend { - padding: 12px; - border-radius: 4px; } - -/*************** - * Header bars * - ***************/ -.titlebar:not(headerbar), .titlebar, headerbar { - padding: 0 13px; - min-height: 34px; - background: #0a0b11; - color: #BFC3C4; - border-radius: 0; } - .titlebar:backdrop, - headerbar:backdrop { - border-color: #050509; - transition: 200ms ease-out; } - .titlebar .title, - headerbar .title { - font-weight: bold; - padding-left: 12px; - padding-right: 12px; } - .titlebar .subtitle, - headerbar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .titlebar entry, - headerbar entry { - min-height: 24px; } - .titlebar button, - headerbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - min-height: 20px; - margin-top: 5px; - margin-bottom: 5px; - box-shadow: none; } - .titlebar button.image-button, - headerbar button.image-button { - padding: 3px 4px; } - .titlebar button.suggested-action, - headerbar button.suggested-action { - box-shadow: none; - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.suggested-action:disabled, .titlebar button.suggested-action:disabled:backdrop, .titlebar button.suggested-action:backdrop, - headerbar button.suggested-action:disabled, - headerbar button.suggested-action:disabled:backdrop, - headerbar button.suggested-action:backdrop { - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.suggested-action:disabled:hover, .titlebar button.suggested-action:disabled:active, .titlebar button.suggested-action:disabled:checked, .titlebar button.suggested-action:disabled:backdrop:hover, .titlebar button.suggested-action:disabled:backdrop:active, .titlebar button.suggested-action:disabled:backdrop:checked, .titlebar button.suggested-action:backdrop:hover, .titlebar button.suggested-action:backdrop:active, .titlebar button.suggested-action:backdrop:checked, - headerbar button.suggested-action:disabled:hover, - headerbar button.suggested-action:disabled:active, - headerbar button.suggested-action:disabled:checked, - headerbar button.suggested-action:disabled:backdrop:hover, - headerbar button.suggested-action:disabled:backdrop:active, - headerbar button.suggested-action:disabled:backdrop:checked, - headerbar button.suggested-action:backdrop:hover, - headerbar button.suggested-action:backdrop:active, - headerbar button.suggested-action:backdrop:checked { - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.appmenu, - headerbar button.appmenu { - background: transparent; } - .titlebar button.appmenu:backdrop, - headerbar button.appmenu:backdrop { - background: transparent; } - .titlebar button:hover, .titlebar button:active, .titlebar button:checked, - headerbar button:hover, - headerbar button:active, - headerbar button:checked { - background-color: transparent; - color: #00A9A5; - box-shadow: none; } - .titlebar button:backdrop, .titlebar button:disabled, .titlebar button:backdrop:disabled, - headerbar button:backdrop, - headerbar button:disabled, - headerbar button:backdrop:disabled { - color: rgba(191, 195, 196, 0.2); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; - background-image: linear-gradient(to bottom, #0d0f17, #0d0f17); - border: 1px solid #040407; - border-radius: 4px; } - .titlebar button:backdrop:hover, .titlebar button:backdrop:active, .titlebar button:backdrop:checked, - headerbar button:backdrop:hover, - headerbar button:backdrop:active, - headerbar button:backdrop:checked { - background-color: transparent; - color: #00A9A5; - box-shadow: none; } - .titlebar button.suggested-action, - headerbar button.suggested-action { - font-weight: bold; - min-height: 14px; - margin-top: 5px; - margin-bottom: 5px; - border-radius: 4px; - font-weight: normal; - color: white; - background-color: #191c2c; - text-shadow: none; - box-shadow: none; } - .titlebar button.suggested-action:hover, - headerbar button.suggested-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:active, - headerbar button.suggested-action:active { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:disabled, - headerbar button.suggested-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:disabled label, - headerbar button.suggested-action:disabled label { - color: rgba(255, 255, 255, 0.5); } - .titlebar button.suggested-action:backdrop, - headerbar button.suggested-action:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; - border-radius: 3px; } - .titlebar button.suggested-action:backdrop:disabled, - headerbar button.suggested-action:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.destructive-action, - headerbar button.destructive-action { - font-weight: bold; - min-height: 14px; - margin-top: 5px; - margin-bottom: 5px; - border-radius: 4px; - font-weight: normal; - color: white; - background-color: #191c2c; - text-shadow: none; - box-shadow: none; } - .titlebar button.destructive-action:hover, - headerbar button.destructive-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:active, - headerbar button.destructive-action:active { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:disabled, - headerbar button.destructive-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:disabled label, - headerbar button.destructive-action:disabled label { - color: rgba(255, 255, 255, 0.5); } - .titlebar button.destructive-action:backdrop, - headerbar button.destructive-action:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; - border-radius: 3px; } - .titlebar button.destructive-action:backdrop:disabled, - headerbar button.destructive-action:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.titlebutton, - headerbar button.titlebutton { - color: transparent; - box-shadow: none; - border: none; - background-color: transparent; - background-repeat: no-repeat; } - .titlebar button.titlebutton:hover, .titlebar button.titlebutton:active, .titlebar button.titlebutton:checked, .titlebar button.titlebutton:backdrop, .titlebar button.titlebutton:backdrop:hover, .titlebar button.titlebutton *, - headerbar button.titlebutton:hover, - headerbar button.titlebutton:active, - headerbar button.titlebutton:checked, - headerbar button.titlebutton:backdrop, - headerbar button.titlebutton:backdrop:hover, - headerbar button.titlebutton * { - color: transparent; - box-shadow: none; - background-color: transparent; } - .titlebar .linked > button, .titlebar .path-bar-box button, - .titlebar headerbar .linked > button, - headerbar .path-bar-box .titlebar button, .titlebar .linked > button:hover, - .titlebar .linked > button:backdrop, - .titlebar headerbar .linked > button, - headerbar .path-bar-box .titlebar button, - headerbar .titlebar .linked > button, - headerbar .linked > button, - headerbar .titlebar .path-bar-box button, - .titlebar .path-bar-box headerbar button, - headerbar .path-bar-box button, - headerbar .titlebar .linked > button:hover, - .titlebar headerbar .linked > button:hover, - headerbar .titlebar .linked > button:backdrop, - .titlebar headerbar .linked > button:backdrop, - headerbar .linked > button:hover, - headerbar .linked > button:backdrop { - border-radius: 0; - border-right-style: none; - box-shadow: none; - margin: 5px 0px; - min-height: 20px; } - .titlebar .linked > button:first-child, .titlebar .path-bar-box button:first-child, - .titlebar headerbar .linked > button:first-child, - headerbar .path-bar-box .titlebar button:first-child, - headerbar .titlebar .linked > button:first-child, - headerbar .linked > button:first-child, - .titlebar .path-bar-box headerbar button:first-child, - headerbar .path-bar-box button:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - .titlebar .linked > button:last-child, .titlebar .path-bar-box button:last-child, - .titlebar headerbar .linked > button:last-child, - headerbar .path-bar-box .titlebar button:last-child, - headerbar .titlebar .linked > button:last-child, - headerbar .linked > button:last-child, - .titlebar .path-bar-box headerbar button:last-child, - headerbar .path-bar-box button:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-right-style: solid; } - .titlebar .linked > button:only-child, .titlebar .path-bar-box button:only-child, - .titlebar headerbar .linked > button:only-child, - headerbar .path-bar-box .titlebar button:only-child, - headerbar .titlebar .linked > button:only-child, - headerbar .linked > button:only-child, - .titlebar .path-bar-box headerbar button:only-child, - headerbar .path-bar-box button:only-child { - border-radius: 4px; - border-style: solid; } - .titlebar .linked > button:active, - .titlebar headerbar .linked > button:active, .titlebar .path-bar-box button:active, - headerbar .path-bar-box .titlebar button:active, .titlebar .linked > button:checked, - .titlebar headerbar .linked > button:checked, .titlebar .path-bar-box button:checked, - headerbar .path-bar-box .titlebar button:checked, - headerbar .titlebar .linked > button:active, - headerbar .linked > button:active, - .titlebar .path-bar-box headerbar button:active, - headerbar .path-bar-box button:active, - headerbar .titlebar .linked > button:checked, - headerbar .linked > button:checked, - .titlebar .path-bar-box headerbar button:checked, - headerbar .path-bar-box button:checked { - background: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .titlebar .linked > button:active:backdrop, - .titlebar headerbar .linked > button:active:backdrop, .titlebar .path-bar-box button:active:backdrop, - headerbar .path-bar-box .titlebar button:active:backdrop, .titlebar .linked > button:checked:backdrop, - .titlebar headerbar .linked > button:checked:backdrop, .titlebar .path-bar-box button:checked:backdrop, - headerbar .path-bar-box .titlebar button:checked:backdrop, - headerbar .titlebar .linked > button:active:backdrop, - headerbar .linked > button:active:backdrop, - .titlebar .path-bar-box headerbar button:active:backdrop, - headerbar .path-bar-box button:active:backdrop, - headerbar .titlebar .linked > button:checked:backdrop, - headerbar .linked > button:checked:backdrop, - .titlebar .path-bar-box headerbar button:checked:backdrop, - headerbar .path-bar-box button:checked:backdrop { - color: rgba(254, 254, 254, 0.5); } - .titlebar .linked > button:active:backdrop label, .titlebar .path-bar-box button:active:backdrop label, - headerbar .path-bar-box .titlebar button:active:backdrop label, .titlebar .linked > button:checked:backdrop label, .titlebar .path-bar-box button:checked:backdrop label, - headerbar .path-bar-box .titlebar button:checked:backdrop label, - headerbar .linked > button:active:backdrop label, - .titlebar .path-bar-box headerbar button:active:backdrop label, - headerbar .path-bar-box button:active:backdrop label, - headerbar .linked > button:checked:backdrop label, - .titlebar .path-bar-box headerbar button:checked:backdrop label, - headerbar .path-bar-box button:checked:backdrop label { - color: rgba(254, 254, 254, 0.5); } - .titlebar .path-bar-box .dim-label, .titlebar .path-bar-box label.separator, .titlebar .path-bar-box .subtitle, - headerbar .path-bar-box .dim-label, - headerbar .path-bar-box label.separator, - headerbar .path-bar-box .subtitle { - color: transparent; - margin-right: -6px; } - .titlebar .path-bar-box button:last-child, - headerbar .path-bar-box button:last-child { - margin-left: -1px; - border-radius: 0px; } - .titlebar .path-bar-box button:last-child:active, .titlebar .path-bar-box button:last-child:checked, - headerbar .path-bar-box button:last-child:active, - headerbar .path-bar-box button:last-child:checked { - border-radius: 0px 4px 4px 0px; } - .titlebar .path-bar-box button:first-child, - headerbar .path-bar-box button:first-child { - border-radius: 4px 0px 0px 4px; } - .titlebar .path-bar-box button:first-child:active, .titlebar .path-bar-box button:first-child:checked, - headerbar .path-bar-box button:first-child:active, - headerbar .path-bar-box button:first-child:checked { - border-radius: 4px; } - .titlebar .path-bar-box widget > .text-button:last-child, - headerbar .path-bar-box widget > .text-button:last-child { - border-radius: 0px 4px 4px 0px; - background: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .titlebar .path-bar-box widget > .text-button:last-child:backdrop, .titlebar .path-bar-box widget > .text-button:last-child:backdrop label, - headerbar .path-bar-box widget > .text-button:last-child:backdrop, - headerbar .path-bar-box widget > .text-button:last-child:backdrop label { - color: rgba(254, 254, 254, 0.5); } - .titlebar .path-bar-box widget > .text-button:last-child:only-child, - headerbar .path-bar-box widget > .text-button:last-child:only-child { - border-radius: 4px; } - .titlebar .path-buttons-box, - headerbar .path-buttons-box { - background-color: #0F111A; - border: 1px solid #040407; - min-height: 20px; - margin-top: 5px; - margin-bottom: 5px; } - .titlebar .path-buttons-box button > .horizontal > .dim-label, .titlebar .path-buttons-box button > .horizontal > label.separator, .titlebar .path-buttons-box button > .horizontal > .subtitle, - headerbar .path-buttons-box button > .horizontal > .dim-label, - headerbar .path-buttons-box button > .horizontal > label.separator, - headerbar .path-buttons-box button > .horizontal > .subtitle { - color: #BFC3C4; - padding: 3px 12px; - margin: 0; } - .titlebar .path-buttons-box button > .horizontal > image.dim-label, .titlebar .path-buttons-box button > .horizontal > image.subtitle, - headerbar .path-buttons-box button > .horizontal > image.dim-label, - headerbar .path-buttons-box button > .horizontal > image.subtitle { - padding: 3px 0px 3px 12px; } - .titlebar .path-buttons-box button, - headerbar .path-buttons-box button { - background: transparent; - border: none; - margin: 0; - padding: 0; } - .titlebar .path-buttons-box .current-dir label, - headerbar .path-buttons-box .current-dir label { - color: #cccfd0; - border-bottom: 1px solid #00A9A5; - padding: 3px 12px; } - .titlebar .path-buttons-box button.current-dir:only-child, - headerbar .path-buttons-box button.current-dir:only-child { - padding: 3px 12px 0px 12px; } - .titlebar .path-buttons-box button.current-dir:only-child label, - headerbar .path-buttons-box button.current-dir:only-child label { - padding: 0px 12px 3px 12px; } - .selection-mode.titlebar button:backdrop.flat:active, .selection-mode.titlebar button:backdrop.flat:checked, .selection-mode.titlebar button:backdrop:active, .selection-mode.titlebar button:backdrop:checked, - headerbar.selection-mode button:backdrop.flat:active, - headerbar.selection-mode button:backdrop.flat:checked, - headerbar.selection-mode button:backdrop:active, - headerbar.selection-mode button:backdrop:checked { - border-color: #007673; } - .selection-mode.titlebar button:backdrop.flat:active label, .selection-mode.titlebar button:backdrop.flat:checked label, .selection-mode.titlebar button:backdrop:active label, .selection-mode.titlebar button:backdrop:checked label, - headerbar.selection-mode button:backdrop.flat:active label, - headerbar.selection-mode button:backdrop.flat:checked label, - headerbar.selection-mode button:backdrop:active label, - headerbar.selection-mode button:backdrop:checked label { - color: rgba(0, 169, 165, 0.6); } - .tiled .titlebar, .maximized .titlebar, - .tiled headerbar.titlebar, .maximized headerbar.titlebar { - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } - .tiled .titlebar:backdrop, .tiled .titlebar, .maximized .titlebar:backdrop, .maximized .titlebar, - .tiled headerbar:backdrop, - .tiled headerbar, .maximized headerbar:backdrop, .maximized headerbar { - border-radius: 0; } - .default-decoration.titlebar, headerbar.default-decoration { - padding: 5px 4px; - min-height: 20px; } - .default-decoration.titlebar button.titlebutton, headerbar.default-decoration button.titlebutton { - min-height: 20px; - min-width: 20px; - margin: 0; - padding: 0; } - -headerbar entry, -headerbar spinbutton, -headerbar separator { - margin-top: 5px; - margin-bottom: 5px; } -headerbar switch { - margin-top: 10px; - margin-bottom: 10px; } -headerbar separator { - background: transparent; } -headerbar viewswitcher > box.horizontal > button.radio, headerbar switcher > box.horizontal > button.radio { - margin: 0; - padding: 0; - border-radius: 0; } - headerbar viewswitcher > box.horizontal > button.radio image, headerbar switcher > box.horizontal > button.radio image { - margin-left: 7px; } - headerbar viewswitcher > box.horizontal > button.radio label, headerbar switcher > box.horizontal > button.radio label { - margin-right: 7px; } - -.background:not(.tiled):not(.maximized) .titlebar { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px rgba(0, 0, 0, 0.1); } - .background:not(.tiled):not(.maximized) .titlebar:backdrop, .background:not(.tiled):not(.maximized) .titlebar { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - -window:not(.tiled):not(.maximized) separator:first-child + headerbar:backdrop, window:not(.tiled):not(.maximized) separator:first-child + headerbar, window:not(.tiled):not(.maximized) headerbar:first-child:backdrop, window:not(.tiled):not(.maximized) headerbar:first-child { - border-top-left-radius: 4px; } -window:not(.tiled):not(.maximized) headerbar:last-child:backdrop, window:not(.tiled):not(.maximized) headerbar:last-child { - border-top-right-radius: 4px; } - -window { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - -window.csd > .titlebar:not(headerbar) { - padding: 0; - background-color: transparent; - background-image: none; - border-style: none; - border-color: transparent; - box-shadow: none; } -.titlebar:not(headerbar) > separator, .titlebar:not(headerbar) > separator:backdrop { - background: #0a0b11; } - -/************** - * GtkInfoBar * - **************/ -.info, .warning, .question, .error, -infobar { - text-shadow: none; - color: #BFC3C4; - background-color: #0F111A; - border-bottom: 1px solid black; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.15); } - -.info, .warning, .question, .error { - text-shadow: none; - color: #fefefe; - border: none; } - .info .label, .warning .label, .question .label, .error .label { - color: #fefefe; } - .info .label:backdrop, .warning .label:backdrop, .question .label:backdrop, .error .label:backdrop { - color: rgba(254, 254, 254, 0.5); } - .info button, .warning button, .question button, .error button { - border-radius: 2px; - border: none; - background: rgba(19, 21, 32, 0.98); - color: #BFC3C4; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2); } - .info button .label, .warning button .label, .question button .label, .error button .label { - color: #BFC3C4; } - .info button:active, .warning button:active, .question button:active, .error button:active { - background: #131520; - color: #BFC3C4; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); } - .info button:active:backdrop, .warning button:active:backdrop, .question button:active:backdrop, .error button:active:backdrop { - background: rgba(19, 21, 32, 0.8); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:hover, .warning button:hover, .question button:hover, .error button:hover, .info button:focus, .warning button:focus, .question button:focus, .error button:focus { - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); } - .info button:disabled, .warning button:disabled, .question button:disabled, .error button:disabled { - background: rgba(19, 21, 32, 0.6); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:disabled:backdrop, .warning button:disabled:backdrop, .question button:disabled:backdrop, .error button:disabled:backdrop { - background: rgba(19, 21, 32, 0.5); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:backdrop, .warning button:backdrop, .question button:backdrop, .error button:backdrop { - background: rgba(19, 21, 32, 0.8); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - -.info { - background-color: #C3E88D; } - .info:backdrop { - background-color: #d9f1b7; - color: rgba(254, 254, 254, 0.5); } - -.warning { - background-color: #f4663c; } - .warning:backdrop { - background-color: #f78c6c; - color: rgba(254, 254, 254, 0.5); } - -.question { - background-color: #89DDFF; } - .question:backdrop { - background-color: #bcecff; - color: rgba(254, 254, 254, 0.5); } - -.error { - background-color: #ff3a5b; } - .error:backdrop { - background-color: #ff6d85; - color: rgba(254, 254, 254, 0.5); } - -/************* - * Level Bar * - *************/ -levelbar block { - min-width: 32px; - min-height: 6px; } -levelbar.vertical block { - min-width: 6px; - min-height: 32px; } -levelbar:backdrop { - transition: 200ms ease-out; } -levelbar trough { - padding: 3px; - border-radius: 3px; - background-color: rgba(255, 255, 255, 0.2); - box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - levelbar trough:backdrop { - background-color: rgba(255, 255, 255, 0.06); - box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } -levelbar.horizontal.discrete block { - margin: 0 1px; } -levelbar.vertical.discrete block { - margin: 1px 0; } -levelbar block { - border-radius: 2px; } - levelbar block:backdrop { - box-shadow: none; } - levelbar block.low { - background-color: #f4663c; } - levelbar block.low:backdrop { - border-color: #f4663c; } - levelbar block.high, levelbar block:not(.empty) { - background-color: #89DDFF; } - levelbar block.high:backdrop, levelbar block:not(.empty):backdrop { - border-color: #89DDFF; } - levelbar block.full { - background-color: #56ceff; } - levelbar block.full:backdrop { - border-color: #56ceff; } - levelbar block.empty { - background-color: rgba(0, 0, 0, 0.35); - box-shadow: none; } - -/********* - * Links * - *********/ -*:link, button:link, -button:visited { - color: #82AAFF; } - *:link:visited, - button:visited { - color: rgba(130, 170, 255, 0.5); } - *:selected *:link:visited, *:selected button:visited:link, - *:selected button:visited { - color: #98dcda; } - *:link:hover, button:hover:link, - button:hover:visited { - color: #b5cdff; } - *:selected *:link:hover, *:selected button:hover:link, - *:selected button:hover:visited { - color: #e5f6f5; } - *:link:active, button:active:link, - button:active:visited { - color: #82AAFF; } - *:selected *:link:active, *:selected button:active:link, - *:selected button:active:visited { - color: #cbedec; } - *:link:backdrop:backdrop:hover, button:backdrop:backdrop:hover:link, - button:backdrop:backdrop:hover:visited, *:link:backdrop:backdrop:hover:selected, button:backdrop:backdrop:hover:selected:link, - button:backdrop:backdrop:hover:selected:visited, *:link:backdrop, button:backdrop:link, - button:backdrop:visited { - color: #00A9A5; } - *:link:selected, button:selected:link, - button:selected:visited, *:selected *:link, *:selected button:link, - *:selected button:visited { - color: #cbedec; } - -button:link, -button:visited { - text-shadow: none; } - button:link:hover, button:link:active, button:link:checked, - button:visited:hover, - button:visited:active, - button:visited:checked { - text-shadow: none; } - button:link > label, - button:visited > label { - text-decoration-line: underline; } - -/********* - * Lists * - *********/ -list { - color: #BFC3C4; - background-color: #131520; - border-color: #040407; } - list:backdrop { - background-color: #151724; - border-color: #050509; } - -row { - padding: 1px 11px; - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - row label { - padding-left: 8px; } - row:hover { - transition: none; } - row:backdrop { - transition: 200ms ease-out; } - row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(191, 195, 196, 0.05); } - row.activatable:active { - box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } - row.activatable:backdrop:hover { - background-color: transparent; } - row.activatable button.flat { - background-color: transparent; } - row.activatable:selected:active { - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } - row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: rgba(0, 169, 165, 0.5); } - row.activatable:selected:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - -/********* - * Menus * - *********/ -menubar, -.menubar { - background-color: #0a0b11; - color: #BFC3C4; - -GtkWidget-window-dragging: true; - padding: 0px; - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } - menubar > menuitem, - .menubar > menuitem { - min-height: 16px; - padding: 4px 8px; } - menubar > menuitem:hover, - .menubar > menuitem:hover { - box-shadow: inset 0 -3px #00A9A5; } - menubar > menuitem:disabled, - .menubar > menuitem:disabled { - color: #676a6f; - box-shadow: none; } - -menu, .menu, .context-menu { - margin: 4px; - padding: 2px 0px; - background: #0d0f17; - border: 1px solid #040407; - border-radius: 5px; - font: initial; } - .csd menu, - .csd .menu, - .csd .context-menu { - border: none; } - menu:backdrop, .menu:backdrop, .context-menu:backdrop { - background-color: #141622; } - menu menuitem, .menu menuitem, .context-menu menuitem { - min-height: 17px; - min-width: 40px; - padding: 4px 6px; - text-shadow: none; } - menu menuitem:hover, .menu menuitem:hover, .context-menu menuitem:hover { - color: #fefefe; - background-color: #00A9A5; } - menu menuitem:disabled, .menu menuitem:disabled, .context-menu menuitem:disabled { - color: #676a6f; } - menu menuitem:disabled:backdrop, .menu menuitem:disabled:backdrop, .context-menu menuitem:disabled:backdrop { - color: #2b314b; } - menu menuitem:backdrop, menu menuitem:backdrop:hover, .menu menuitem:backdrop, .menu menuitem:backdrop:hover, .context-menu menuitem:backdrop, .context-menu menuitem:backdrop:hover { - color: #676a6f; - background-color: transparent; } - menu menuitem arrow, .menu menuitem arrow, .context-menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), .menu menuitem arrow:dir(ltr), .context-menu menuitem arrow:dir(ltr) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - margin-left: 10px; } - 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: 10px; } - menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), .menu menuitem label:dir(rtl), .menu menuitem label:dir(ltr), .context-menu menuitem label:dir(rtl), .context-menu menuitem label:dir(ltr) { - color: inherit; } - -menuitem accelerator { - color: alpha(currentColor,0.55); } -menuitem check, -menuitem radio { - min-height: 16px; - min-width: 16px; } - menuitem check:dir(ltr), - menuitem radio:dir(ltr) { - margin-right: 7px; } - menuitem check:dir(rtl), - menuitem radio:dir(rtl) { - margin-left: 7px; } - -.csd.popup { - background: transparent; } - -/******** - * Misc * - ********/ -.content-view { - background-color: #020203; } - .content-view:hover { - -gtk-icon-effect: highlight; } - .content-view:backdrop { - background-color: #020203; } - -.osd .scale-popup button.flat { - border-style: none; - border-radius: 5px; } -.scale-popup button:hover { - background-color: rgba(191, 195, 196, 0.1); - border-radius: 5px; } - -/************ -* Assistant * -*************/ -assistant { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; } - assistant .sidebar { - background-color: #131520; - border-top: 1px solid #040407; - border-bottom-left-radius: 4px; } - assistant .sidebar:backdrop { - background-color: #151724; - border-color: #050509; } - assistant.csd .sidebar { - border-top-style: none; } - assistant .sidebar GtkLabel, - assistant .sidebar label { - padding: 6px 12px; } - assistant .sidebar GtkLabel.highlight, - assistant .sidebar label.highlight { - background-color: #32353c; } - -/************* - * Notebooks * - *************/ -notebook > header { - padding: 1px; - border-color: #040407; - border-width: 1px; - background-color: #090b10; } - notebook > header:backdrop { - border-color: #050509; - background-color: #0F111A; } - notebook > header tabs { - margin: 0px; } - notebook > header.top { - border-bottom-style: solid; } - notebook > header.top > tabs { - margin-bottom: -2px; } - notebook > header.top > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.top > tabs > tab:checked { - background-color: #131520; } - notebook > header.top > tabs > tab:checked:hover { - background-color: #131520; } - notebook > header.bottom { - border-top-style: solid; } - notebook > header.bottom > tabs { - margin-top: -2px; } - notebook > header.bottom > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.bottom > tabs > tab:checked { - background-color: #131520; - box-shadow: -1px 0 0 #040407, 0px 1px 0 #040407, 1px 0 0 #040407; } - notebook > header.left { - border-right-style: solid; } - notebook > header.left > tabs { - margin-right: -2px; } - notebook > header.left > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.left > tabs > tab:checked { - background-color: #131520; - box-shadow: 0px 1px 0 #040407, 0px -1px 0 #040407, 0px 1px 0 #040407; } - notebook > header.right { - border-left-style: solid; } - notebook > header.right > tabs { - margin-left: -2px; } - notebook > header.right > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.right > tabs > tab:checked { - background-color: #131520; - box-shadow: 0px 1px 0 #040407, 0px -1px 0 #040407, 1px 0 0 #040407; } - 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 { - margin-left: -5px; - margin-right: -5px; - padding-left: 4px; - padding-right: 4px; } - 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 { - border-left-style: none; } - notebook > header.right > tabs > arrow { - border-right-style: none; } - notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { - margin-top: -5px; - margin-bottom: -5px; - padding-top: 4px; - padding-bottom: 4px; } - 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: 14px; - min-width: 14px; - border-radius: 0; } - notebook > header > tabs > arrow:hover:not(:active):not(:backdrop) { - background-clip: padding-box; - background-image: none; - background-color: rgba(255, 255, 255, 0.3); - border-color: transparent; - box-shadow: none; } - notebook > header > tabs > arrow:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - notebook > header tab { - min-height: 24px; - min-width: 24px; - padding: 1px 12px; - outline-offset: -5px; - color: #676a6f; - font-weight: normal; - border-width: 1px; - border-color: transparent; } - notebook > header tab:hover { - color: #93979a; } - notebook > header tab:hover.reorderable-page { - border-color: rgba(4, 4, 7, 0.3); - background-color: rgba(15, 17, 26, 0.2); } - notebook > header tab:backdrop { - color: #44464d; } - notebook > header tab:backdrop.reorderable-page { - border-color: transparent; - background-color: transparent; } - notebook > header tab:checked { - color: #BFC3C4; - box-shadow: -1px 0 0 #040407, 0px -1px 0 #040407, 1px 0 0 #040407; } - notebook > header tab:checked.reorderable-page { - border-color: rgba(4, 4, 7, 0.5); - background-color: rgba(15, 17, 26, 0.5); } - notebook > header tab:checked.reorderable-page:hover { - background-color: rgba(15, 17, 26, 0.7); } - notebook > header tab:hover button.flat, notebook > header tab:checked button.flat, notebook > header tab:backdrop:checked button.flat { - color: alpha(currentColor,0.3); } - notebook > header tab:backdrop:checked { - color: #676a6f; } - notebook > header tab:backdrop:checked.reorderable-page { - border-color: #050509; - background-color: #151724; } - notebook > header tab button.flat { - padding: 0; - margin-top: 4px; - margin-bottom: 4px; - border: none; - background: transparent; - min-width: 20px; - min-height: 20px; } - notebook > header tab button.flat:hover { - background: transparent; - box-shadow: none; - color: #FF5370; } - notebook > header tab button.flat, notebook > header tab button.flat:backdrop { - border: none; - background: transparent; - color: alpha(currentColor,0); } - notebook > header tab button.flat:last-child { - margin-left: 4px; - margin-right: -4px; } - notebook > header tab button.flat:first-child { - margin-left: -4px; - margin-right: 4px; } - notebook > header.top tabs, notebook > header.bottom tabs { - padding-left: 0px; - padding-right: 0px; } - notebook > header.top tabs:not(:only-child), notebook > header.bottom tabs:not(:only-child) { - margin-left: 0.5px; - margin-right: 0.5px; } - notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { - margin-left: -1px; } - notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { - margin-right: -1px; } - notebook > header.top tabs tab, notebook > header.bottom tabs tab { - margin-left: 0.5px; - margin-right: 0.5px; } - notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { - border-style: none solid; } - notebook > header.left tabs, notebook > header.right tabs { - padding-top: 4px; - padding-bottom: 4px; } - notebook > header.left tabs:not(:only-child), notebook > header.right tabs:not(:only-child) { - margin-top: 3px; - margin-bottom: 3px; } - notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { - margin-top: -1px; } - notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { - margin-bottom: -1px; } - notebook > header.left tabs tab, notebook > header.right tabs tab { - margin-top: 4px; - margin-bottom: 4px; } - notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { - border-style: solid none; } - notebook > header.top tab { - padding-bottom: 1px; } - notebook > header.bottom tab { - padding-top: 1px; } -notebook > stack:not(:only-child) { - background-color: #131520; } - notebook > stack:not(:only-child):backdrop { - background-color: #151724; } - -/********* - * Paned * - *********/ -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: image(#040407); - background-size: 1px 1px; } - paned > separator:selected { - background-image: image(#00A9A5); } - paned > separator:backdrop { - background-image: image(#050509); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #0F111A; - background-image: image(#040407), image(#040407); - background-size: 1px 1px, 1px 1px; } - paned > separator.wide:backdrop { - background-color: #0F111A; - background-image: image(#050509), image(#050509); } -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; } - -/************ - * Pathbars * - ************/ -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 4px; - padding-right: 4px; } -.path-bar button.text-button.image-button label { - padding-left: 0; - padding-right: 0; } -.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child { - padding-right: 8px; } -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 8px; } -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } -.path-bar button.slider-button { - padding-left: 0; - padding-right: 0; } - -/*************** - * Popovers * - ***************/ -popover.background { - padding: 2px; - border-radius: 5px; - background: #0d0f17; - box-shadow: 0 4px 6px #040407; } - .csd popover.background, popover.background { - border: 1px solid #040407; } - popover.background:backdrop { - background-color: #0F111A; - box-shadow: none; } - popover.background > list, - popover.background > .view, - popover.background > iconview, - popover.background > toolbar { - border-style: none; - background-color: transparent; } - .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier { - border: 1px solid rgba(255, 255, 255, 0.1); } - popover.background separator { - margin: 3px; } - popover.background list separator { - margin: 0px; } - -/***************** - * Progress bars * - *****************/ -progressbar { - font-size: smaller; - color: rgba(191, 195, 196, 0.4); } - progressbar.horizontal trough, - progressbar.horizontal progress { - min-height: 6px; } - progressbar.vertical trough, - progressbar.vertical progress { - min-width: 6px; } - progressbar.horizontal progress { - margin: 0; } - progressbar.vertical progress { - margin: 0; } - progressbar:backdrop { - box-shadow: none; - transition: 200ms ease-out; } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - border-radius: 0; - background-color: transparent; - box-shadow: none; } - progressbar.osd progress { - border-style: none; - border-radius: 0; } - -/************ - * GtkScale * - ************/ -progressbar trough, scale trough, scale fill { - background-color: rgba(255, 255, 255, 0.14); - border: none; - border-radius: 3px; - margin: 0; } - progressbar trough:disabled, scale trough:disabled, scale fill:disabled { - background-color: rgba(255, 255, 255, 0.06); } - progressbar trough:backdrop, progressbar:backdrop trough, scale trough:backdrop, scale fill:backdrop { - background-color: rgba(255, 255, 255, 0.06); - transition: 200ms ease-out; } - progressbar trough:backdrop:disabled, progressbar:backdrop trough:disabled, scale trough:backdrop:disabled, scale fill:backdrop:disabled { - background-color: rgba(255, 255, 255, 0.06); } - -progressbar progress, scale highlight { - border: none; - background-color: #00A9A5; - border-radius: 3px; - margin: 0; } - progressbar progress:disabled, scale highlight:disabled { - border: none; - background-color: rgba(255, 255, 255, 0.14); } - progressbar progress:backdrop, progressbar:backdrop progress, scale highlight:backdrop, progressbar progress:active:backdrop, progressbar:backdrop progress:active, scale highlight:active:backdrop { - border-color: #00c3be; - background-color: #00c3be; } - progressbar progress:backdrop:disabled, progressbar:backdrop progress:disabled, scale highlight:backdrop:disabled, progressbar progress:active:backdrop:disabled, progressbar:backdrop progress:active:disabled, scale highlight:active:backdrop:disabled { - background-color: rgba(255, 255, 255, 0.06); } - -scale { - min-height: 16px; - min-width: 16px; - padding: 8px; } - scale.horizontal trough, - scale.horizontal progress { - min-height: 6px; } - scale.vertical trough, - scale.vertical progress { - min-width: 6px; } - scale slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - background-color: #131520; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); - border-radius: 12px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border, box-shadow; } - scale slider:active { - background-color: #00A9A5; } - scale slider:active:disabled { - background-color: #151722; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.05); } - scale.fine-tune.horizontal { - padding-top: 9px; - padding-bottom: 9px; - min-height: 16px; } - scale.fine-tune.vertical { - padding-left: 9px; - padding-right: 9px; - min-width: 16px; } - scale.fine-tune slider { - margin: -6px; } - scale.fine-tune fill, - scale.fine-tune highlight, - scale.fine-tune trough { - border-radius: 5px; - -gtk-outline-radius: 7px; } - scale trough { - outline-offset: 2px; - -gtk-outline-radius: 5px; - outline-color: transparent; } - scale fill:backdrop, scale fill { - background-color: #040407; } - scale fill:disabled:backdrop, scale fill:disabled { - border-color: transparent; - background-color: transparent; } - .osd scale fill { - background-color: #333436; } - .osd scale fill:disabled:backdrop, .osd scale fill:disabled { - border-color: transparent; - background-color: transparent; } - scale slider { - border-color: #d1d1d1; - border: none; - border-radius: 12px; - background-color: #d1d1d1; } - scale slider:active { - border-color: #007673; } - scale slider:disabled { - background-color: #a5a5a5; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale slider:backdrop, scale slider:backdrop:disabled { - transition: 200ms ease-out; - background-color: #a5a5a5; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - row:selected scale slider:disabled, row:selected scale slider { - border-color: #007673; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 6px; - margin-top: -12px; } - scale marks.bottom { - margin-top: 6px; - margin-bottom: -12px; } - scale marks.top { - margin-right: 6px; - margin-left: -12px; } - scale marks.bottom { - margin-left: 6px; - margin-right: -12px; } - scale.fine-tune marks.top { - margin-bottom: 6px; - margin-top: -9px; } - scale.fine-tune marks.bottom { - margin-top: 6px; - margin-bottom: -9px; } - scale.fine-tune marks.top { - margin-right: 6px; - margin-left: -9px; } - scale.fine-tune marks.bottom { - margin-left: 6px; - margin-right: -9px; } - scale.horizontal indicator { - min-height: 6px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 3px; } - scale.vertical indicator { - min-height: 1px; - min-width: 6px; } - scale.vertical.fine-tune indicator { - min-width: 3px; } - scale.horizontal.marks-before:not(.marks-after) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.color { - min-height: 0; - min-width: 0; } - scale.color trough { - background-image: image(#040407); - background-repeat: no-repeat; } - scale.color.horizontal { - padding: 0 0 15px 0; } - scale.color.horizontal trough { - padding-bottom: 4px; - background-position: 0 -3px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - scale.color.horizontal slider:dir(ltr):hover, scale.color.horizontal slider:dir(ltr):backdrop, scale.color.horizontal slider:dir(ltr):disabled, scale.color.horizontal slider:dir(ltr):backdrop:disabled, scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl):hover, scale.color.horizontal slider:dir(rtl):backdrop, scale.color.horizontal slider:dir(rtl):disabled, scale.color.horizontal slider:dir(rtl):backdrop:disabled, scale.color.horizontal slider:dir(rtl) { - margin-bottom: -15px; - margin-top: 6px; } - scale.color.vertical:dir(ltr) { - padding: 0 0 0 15px; } - scale.color.vertical:dir(ltr) trough { - padding-left: 4px; - background-position: 3px 0; - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - scale.color.vertical:dir(ltr) slider:hover, scale.color.vertical:dir(ltr) slider:backdrop, scale.color.vertical:dir(ltr) slider:disabled, scale.color.vertical:dir(ltr) slider:backdrop:disabled, scale.color.vertical:dir(ltr) slider { - margin-left: -15px; - margin-right: 6px; } - scale.color.vertical:dir(rtl) { - padding: 0 15px 0 0; } - scale.color.vertical:dir(rtl) trough { - padding-right: 4px; - background-position: -3px 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - scale.color.vertical:dir(rtl) slider:hover, scale.color.vertical:dir(rtl) slider:backdrop, scale.color.vertical:dir(rtl) slider:disabled, scale.color.vertical:dir(rtl) slider:backdrop:disabled, scale.color.vertical:dir(rtl) slider { - margin-right: -15px; - margin-left: 6px; } - scale.color.fine-tune.horizontal:dir(ltr), scale.color.fine-tune.horizontal:dir(rtl) { - padding: 0 0 12px 0; } - scale.color.fine-tune.horizontal:dir(ltr) trough, scale.color.fine-tune.horizontal:dir(rtl) trough { - padding-bottom: 7px; - background-position: 0 -6px; } - scale.color.fine-tune.horizontal:dir(ltr) slider, scale.color.fine-tune.horizontal:dir(rtl) slider { - margin-bottom: -15px; - margin-top: 6px; } - scale.color.fine-tune.vertical:dir(ltr) { - padding: 0 0 0 12px; } - scale.color.fine-tune.vertical:dir(ltr) trough { - padding-left: 7px; - background-position: 6px 0; } - scale.color.fine-tune.vertical:dir(ltr) slider { - margin-left: -15px; - margin-right: 6px; } - scale.color.fine-tune.vertical:dir(rtl) { - padding: 0 12px 0 0; } - scale.color.fine-tune.vertical:dir(rtl) trough { - padding-right: 7px; - background-position: -6px 0; } - scale.color.fine-tune.vertical:dir(rtl) slider { - margin-right: -15px; - margin-left: 6px; } - -/************** - * Scrollbars * - **************/ -scrollbar { - background-color: #11131d; - transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - * { - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; } - scrollbar.top { - border-bottom: 1px solid #040407; } - scrollbar.bottom { - border-top: 1px solid #040407; } - scrollbar.left { - border-right: 1px solid #040407; } - scrollbar.right { - border-left: 1px solid #040407; } - scrollbar:backdrop { - background-color: #090b10; - border-color: #050509; - transition: 200ms ease-out; } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #797c80; } - scrollbar slider:hover { - background-color: #9c9fa2; } - scrollbar slider:hover:active { - background-color: #00dcd7; } - scrollbar slider:backdrop { - background-color: #32353c; } - scrollbar slider:disabled { - background-color: transparent; } - scrollbar.fine-tune slider { - min-width: 4px; - min-height: 4px; } - scrollbar.fine-tune.horizontal slider { - border-width: 5px 4px; } - scrollbar.fine-tune.vertical slider { - border-width: 4px 5px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) { - border-color: transparent; - opacity: 0.4; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 3px; - min-height: 3px; - background-color: #BFC3C4; - border: 1px solid black; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - min-width: 5px; - min-height: 5px; - background-color: #BFC3C4; - background-clip: padding-box; - border-radius: 100%; - border: 1px solid black; - -gtk-icon-source: none; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { - margin: 1px 2px; - min-width: 5px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { - margin: 2px 1px; - min-height: 5px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.8; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - scrollbar button { - padding: 0; - min-width: 12px; - min-height: 12px; - border-style: none; - border-radius: 0; - transition-property: min-height, min-width, color; - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #797c80; } - scrollbar button:hover { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #9c9fa2; } - scrollbar button:active, scrollbar button:checked { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #00dcd7; } - scrollbar button:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(121, 124, 128, 0.2); } - scrollbar button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #32353c; } - scrollbar button:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(50, 53, 60, 0.2); } - scrollbar.vertical button.down { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - scrollbar.vertical button.up { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - scrollbar.horizontal button.down { - -gtk-icon-source: -gtk-icontheme("pan-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - -treeview ~ scrollbar.vertical { - border-top: 1px solid #040407; - margin-top: -1px; } - -/*********** - * Sidebar * - ***********/ -.sidebar { - border-style: none; - border-width: 0; - background-color: #11131d; } - .sidebar .frame { - border: none; } - stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: none; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list - .sidebar:dir(rtl), stacksidebar.sidebar.right list - .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #040407; - border-right-style: none; } - .sidebar:backdrop { - background-color: #12141f; - border-color: #050509; - transition: 200ms ease-out; } - .sidebar row { - padding: 8px 12px; - transition: all .12s ease-in; } - .sidebar row label { - color: #98abb2; } - .sidebar row:selected { - color: #fefefe; } - .sidebar row:selected:backdrop { - color: rgba(254, 254, 254, 0.5); - background: rgba(0, 169, 165, 0.6); } - .sidebar row:selected:backdrop label { - color: #fefefe; } - .sidebar row:selected label { - color: #fefefe; } - .sidebar.source-list { - background: #0d0f17; - padding: 4px 0px; } - .sidebar.source-list.view, iconview.sidebar.source-list { - transition: all .12s ease-in; } - .sidebar.source-list.view:selected, iconview.sidebar.source-list:selected { - background: rgba(8, 9, 13, 0.93); - color: #98abb2; } - .sidebar.source-list.view:selected:active, iconview.sidebar.source-list:selected:active { - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } - .sidebar.source-list.view:selected.has-open-popup, iconview.sidebar.source-list:selected.has-open-popup, .sidebar.source-list.view:selected:hover, iconview.sidebar.source-list:selected:hover { - background: rgba(8, 9, 13, 0.93); - color: #fff; } - .sidebar.source-list.view:selected:backdrop, iconview.sidebar.source-list:selected:backdrop { - background: rgba(8, 9, 13, 0.93); } - .sidebar.source-list.view:hover, iconview.sidebar.source-list:hover, .sidebar.source-list.view iconview.source-list:hover, iconview.sidebar.source-list iconview.source-list:hover { - background-color: rgba(15, 17, 26, 0.4); } - paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { - border-style: none; - border-color: #040407; } - -stacksidebar row { - padding: 10px 4px; } - stacksidebar row > label { - padding-left: 6px; - padding-right: 6px; } - stacksidebar row.needs-attention > label { - background-size: 6px 6px, 0 0; } - -/*******************************************************************/ -/* PLACESSIDEBAR */ -/*******************************************************************/ -/*--*/ -placessidebar.sidebar { - background-color: transparent; - background-image: linear-gradient(to right, #0d0f17 40px, #0d0f17 35px, #0d0f17 36px, #0d0f17 36px, #0d0f17 99%, #0d0f17 100%); } - placessidebar.sidebar row.sidebar-row.sidebar-row .sidebar-icon { - margin-left: -14px; - margin-right: 5px; - padding-left: 14px; - padding-right: 5px; - color: #98abb2; } - placessidebar.sidebar row.sidebar-row:hover, placessidebar.sidebar row.sidebar-row:active, placessidebar.sidebar row.sidebar-row:selected { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - background-color: transparent; - /*rgba(65,67,75,0.4); */ - background-image: linear-gradient(to right, #1a1e2d); } - placessidebar.sidebar row.sidebar-row:hover, placessidebar.sidebar row.sidebar-row:hover label, placessidebar.sidebar row.sidebar-row:active, placessidebar.sidebar row.sidebar-row:active label, placessidebar.sidebar row.sidebar-row:selected, placessidebar.sidebar row.sidebar-row:selected label { - color: #fefefe; - font-weight: normal; } - placessidebar.sidebar row.sidebar-row:selected:backdrop { - color: #9da1a4; - background-color: transparent; - background-image: linear-gradient(to right, rgba(8, 9, 13, 0.93) 40px, rgba(8, 9, 13, 0.93) 36px, rgba(8, 9, 13, 0.93) 97%); } - placessidebar.sidebar row.sidebar-row:selected:backdrop label { - color: #9da1a4; } - placessidebar.sidebar row.sidebar-row:selected .sidebar-icon { - color: inherit; } - placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row label, placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: #FFCB6B; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #00A9A5, inset 0 -1px #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) image { - color: #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background: #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected image { - color: #fefefe; } -placessidebar list { - background-color: transparent; } - placessidebar list:backdrop { - background-color: transparent; } - -/***************** - * GtkSpinButton * - *****************/ -spinbutton:not(.vertical) { - padding: 0; } - spinbutton:not(.vertical) entry { - min-width: 28px; - margin: 0; - background: none; - background-color: transparent; - border: none; - border-radius: 0; - box-shadow: none; } - spinbutton:not(.vertical) button { - min-height: 16px; - margin: 0; - padding-bottom: 0; - padding-top: 0; - color: #aeb2b4; - background-image: none; - border-style: none none none solid; - border-color: rgba(4, 4, 7, 0.3); - border-radius: 0; - box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); } - spinbutton:not(.vertical) button:dir(rtl) { - border-style: none solid none none; } - spinbutton:not(.vertical) button:hover { - color: #BFC3C4; - background-color: rgba(191, 195, 196, 0.05); } - spinbutton:not(.vertical) button:disabled { - color: rgba(103, 106, 111, 0.3); } - spinbutton:not(.vertical) button:active { - background-color: rgba(0, 0, 0, 0.1); - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } - spinbutton:not(.vertical) button:backdrop { - color: #5f6268; - background-color: transparent; - border-color: rgba(5, 5, 9, 0.3); - transition: 200ms ease-out; } - spinbutton:not(.vertical) button:backdrop:disabled { - color: rgba(43, 49, 75, 0.3); - background-image: none; - border-style: none none none solid; - box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); } - spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { - border-style: none solid none none; } - spinbutton:not(.vertical) button:last-child { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } -.osd spinbutton:not(.vertical) button { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-style: none none none solid; - border-color: rgba(4, 4, 7, 0.7); - border-radius: 0; - box-shadow: none; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:not(.vertical) button:dir(rtl) { - border-style: none solid none none; } - .osd spinbutton:not(.vertical) button:hover { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-color: rgba(4, 4, 7, 0.5); - background-color: rgba(191, 195, 196, 0.1); - -gtk-icon-shadow: 0 1px black; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-color: rgba(4, 4, 7, 0.5); - -gtk-icon-shadow: none; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #646669; - border-color: rgba(4, 4, 7, 0.5); - -gtk-icon-shadow: none; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:last-child { - border-radius: 0 3px 3px 0; } - .osd spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 3px 0 0 3px; } -spinbutton.vertical:disabled { - color: #676a6f; } -spinbutton.vertical:backdrop:disabled { - color: #2b314b; } -spinbutton.vertical:drop(active) { - border-color: transparent; - box-shadow: none; } -spinbutton.vertical entry { - min-height: 32px; - min-width: 32px; - padding: 0; - border-radius: 0; } -spinbutton.vertical button { - min-height: 32px; - min-width: 32px; - padding: 0; - border-width: 1px; - border-color: #040407; - box-shadow: 0 1px rgba(255, 255, 255, 0.1); } -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; - border-style: solid solid none solid; } -spinbutton.vertical button.down { - border-radius: 0 0 3px 3px; - border-style: none solid solid solid; } -.osd spinbutton.vertical button:first-child { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:active { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd spinbutton.vertical button:first-child:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -treeview spinbutton:not(.vertical) { - min-height: 0; - border-style: none; - border-radius: 0; } - treeview spinbutton:not(.vertical) entry { - min-height: 0; - padding: 1px 2px; } - -/*********** - * Spinner * - ***********/ -menu spinner { - color: #00A9A5; } - -/********************* - * 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; } - -/********** - * Switch * - **********/ -switch { - font-size: 1px; - font-weight: bold; - outline-offset: -4px; - transition: all 200ms ease-in; - border: none; - border-radius: 14px; - color: transparent; - padding: 2.3px 0px; - background-color: #2f3551; - box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 1px rgba(0, 0, 0, 0.1); } - switch:disabled { - background-color: #1e2234; } - switch:backdrop { - background-color: #22263a; - transition: 200ms ease-out; } - switch:backdrop:disabled { - background-color: #1a1e2d; } - switch:active, switch:checked { - background-color: #00A9A5; } - switch:active:backdrop, switch:checked:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - switch:active:backdrop slider:backdrop, switch:checked:backdrop slider:backdrop { - box-shadow: none; - background-color: rgba(19, 21, 32, 0.9); - border: none; } - switch slider { - padding: 2px; - margin: 0 2.3px; - min-width: 12px; - min-height: 12px; - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - background-color: #131520; - box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2); } - switch slider:backdrop { - padding: 2px; - box-shadow: none; - background-color: #131520; } - switch trough:active, switch trough:checked { - background-color: #00A9A5; } - switch trough:active:backdrop, switch trough:checked:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - -/************ - * Toolbars * - ************/ -toolbar, .inline-toolbar, searchbar, -.location-bar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #0F111A; } - -toolbar { - padding: 4px 3px 3px 4px; } - .osd toolbar { - background-color: transparent; } - toolbar.osd { - padding: 13px; - border: none; - border-radius: 5px; - background-color: rgba(8, 9, 13, 0.93); } - toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { - border-radius: 0; } - toolbar.horizontal separator { - margin: 0 7px 1px 6px; } - toolbar.vertical separator { - margin: 6px 1px 7px 0; } - toolbar:not(.inline-toolbar):not(.osd) switch, - 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-right: 1px; - margin-bottom: 1px; } - -.inline-toolbar { - padding: 3px; - border-width: 0 1px 1px; - border-radius: 0 0 5px 5px; } - -searchbar, -.location-bar { - border-width: 0 0 1px; - padding: 3px; } - -.inline-toolbar, searchbar, -.location-bar { - border-style: solid; - border-color: #040407; - background-color: #0c0d14; } - .inline-toolbar:backdrop, searchbar:backdrop, - .location-bar:backdrop { - border-color: #050509; - background-color: #0c0d14; - box-shadow: none; - transition: 200ms ease-out; } - -searchbar { - background: #131520; } - -/************ - * Tooltips * - ************/ -tooltip { - padding: 4px; - /* not working */ - border-radius: 5px; - box-shadow: none; - text-shadow: 0 1px black; } - tooltip.background { - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - border: 1px solid #040407; } - tooltip decoration { - background-color: transparent; } - tooltip * { - padding: 4px; - background-color: transparent; - color: white; } - -/************** - * Tree Views * - **************/ -treeview.view { - border-left-color: #696c72; - border-top-color: #0F111A; } - * { - -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:selected:focus, treeview.view:selected { - border-radius: 0; } - treeview.view:selected:backdrop, treeview.view:selected { - border-left-color: #7fd4d2; - border-top-color: rgba(191, 195, 196, 0.1); } - treeview.view:disabled { - color: #676a6f; } - treeview.view:disabled:selected { - color: #66cbc9; } - treeview.view:disabled:selected:backdrop { - color: rgba(32, 180, 176, 0.85); } - treeview.view:disabled:backdrop { - color: #2b314b; } - treeview.view.separator { - min-height: 2px; - color: #0F111A; } - treeview.view.separator:backdrop { - color: rgba(15, 17, 26, 0.1); } - treeview.view:backdrop { - border-left-color: #3b3e45; - border-top: #0F111A; } - treeview.view:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: #007673; } - treeview.view:drop(active).after { - border-top-style: none; } - treeview.view:drop(active).before { - border-bottom-style: none; } - treeview.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #8b8f93; } - treeview.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - treeview.view.expander:hover { - color: #BFC3C4; } - treeview.view.expander:selected { - color: #b2e5e3; } - treeview.view.expander:selected:hover { - color: #fefefe; } - treeview.view.expander:selected:backdrop { - color: rgba(111, 206, 204, 0.65); } - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - treeview.view.expander:backdrop { - color: #4e5159; } - treeview.view.progressbar { - border: 1px solid #007673; - border-radius: 4px; - background-color: #00A9A5; - background-image: linear-gradient(to bottom, #00A9A5, #007673); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.1); } - treeview.view.progressbar:selected:focus, treeview.view.progressbar:selected { - border-radius: 4px; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); - background-image: linear-gradient(to bottom, #131520, black); } - treeview.view.progressbar:selected:focus:backdrop, treeview.view.progressbar:selected:backdrop { - border-color: #151724; - background-color: #151724; } - treeview.view.progressbar:backdrop { - border-color: #151724; - background-image: none; - box-shadow: none; } - treeview.view.trough { - background-color: rgba(191, 195, 196, 0.1); - border-radius: 4px; } - treeview.view.trough:selected:focus, treeview.view.trough:selected { - background-color: #007673; - border-radius: 4px; } - treeview.view header button { - color: #696c72; - background-color: #131520; - font-weight: bold; - text-shadow: none; - box-shadow: none; } - treeview.view header button:hover { - color: #94989b; - box-shadow: none; - transition: none; } - treeview.view header button:active { - color: #BFC3C4; - transition: none; } - treeview.view header button:last-child:backdrop, treeview.view header button:last-child { - border-right-style: none; } - treeview.view button.dnd:active, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd, - treeview.view header.button.dnd:active, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd { - padding: 0 6px; - transition: none; - background-image: none; - background-color: #00A9A5; - color: #131520; - border-radius: 0; - border-style: none; - box-shadow: inset 0 0 0 1px #131520; - text-shadow: none; } - treeview.view acceleditor > label { - background-color: #00A9A5; } - -treeview.view header button, treeview.view header button:hover, treeview.view header button:active { - padding: 0 6px; - border-radius: 0; - background-image: none; - text-shadow: none; - border-width: 1px; - border-style: none solid solid none; - border-color: #0F111A; } - treeview.view header button:disabled { - border-color: #0F111A; - background-image: none; } - treeview.view header button:backdrop { - border-color: #0F111A; - border-style: none solid solid none; - color: #3b3e45; - background-image: none; - background-color: #151724; } - treeview.view header button:backdrop:disabled { - border-color: #0F111A; - background-image: none; } - -/********************** - * Window Decorations * - *********************/ -decoration { - border-radius: 4px 4px 0 0; - border-width: 0px; - border-width: 0px; - box-shadow: 0 4px 10px 2px rgba(4, 4, 7, 0.4); - margin: 10px; } - decoration:backdrop { - box-shadow: 0 4px 10px 2px rgba(4, 4, 7, 0.2); - transition: 200ms ease-out; } - .maximized decoration, .fullscreen decoration, .tiled decoration { - border-radius: 0; } - .popup decoration { - box-shadow: none; } - .ssd decoration { - box-shadow: none; } - .csd.popup decoration { - border-radius: 7px; - box-shadow: 0 4px 8px #040407; - border: 1px solid #040407; } - tooltip.csd decoration { - border-radius: 5px; - box-shadow: none; } - messagedialog.csd decoration { - border-radius: 7px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(4, 4, 7, 0.8); } - .solid-csd decoration { - border-radius: 0; - margin: 0px; - background-color: #0F111A; - border: solid 1px #050509; - box-shadow: none; } - -button.titlebutton { - background-repeat: no-repeat; - background-position: center; - min-height: 20px; - padding: 0 1px; - box-shadow: none; } - button.titlebutton.close { - background-image: -gtk-scaled(url("../assets/close.png"), url("../assets/close@2.png")); } - button.titlebutton.close:hover, button.titlebutton.close:active { - background-image: -gtk-scaled(url("../assets/close_prelight.png"), url("../assets/close_prelight@2.png")); } - button.titlebutton.maximize { - background-image: -gtk-scaled(url("../assets/maximize.png"), url("../assets/maximize@2.png")); } - button.titlebutton.maximize:hover, button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("../assets/maximize_prelight.png"), url("../assets/maximize_prelight@2.png")); } - button.titlebutton.minimize { - background-image: -gtk-scaled(url("../assets/min.png"), url("../assets/min@2.png")); } - button.titlebutton.minimize:hover, button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("../assets/min_prelight.png"), url("../assets/min_prelight@2.png")); } - button.titlebutton:backdrop { - -gtk-icon-shadow: none; - background-image: -gtk-scaled(url("../assets/close_unfocused.png"), url("../assets/close_unfocused@2.png")); } - -headerbar.selection-mode button.titlebutton, -.titlebar.selection-mode button.titlebutton { - text-shadow: 0 -1px rgba(0, 0, 0, 0.7349019608); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.7349019608); } - headerbar.selection-mode button.titlebutton:backdrop, - .titlebar.selection-mode button.titlebutton:backdrop { - -gtk-icon-shadow: none; } - -.view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, -.view text:selected:focus, -iconview text:selected:focus, -textview text:selected:focus, -.view text:selected, -iconview text:selected, -textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, popover.background checkbutton:selected, -popover.background radiobutton:selected, -.menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection, -entry selection:focus, -entry selection, row:selected, treeview.view:selected:focus, treeview.view:selected { - background-color: #00A9A5; } - row:selected label, label:selected, .selection-mode button.titlebutton, .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, popover.background checkbutton:selected, - popover.background radiobutton:selected, - .menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection, - entry selection:focus, - entry selection, row:selected, treeview.view:selected:focus, treeview.view:selected { - color: #fefefe; - font-weight: bold; } - row:selected label:disabled, label:disabled:selected, .selection-mode button.titlebutton:disabled, iconview:disabled:selected:focus, .view:disabled:selected, iconview:disabled:selected, - iconview text:disabled:selected:focus, - textview text:disabled:selected:focus, - .view text:disabled:selected, - iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, modelbutton.flat:disabled:selected, popover.background checkbutton:disabled:selected, - popover.background radiobutton:disabled:selected, - .menuitem.button.flat:disabled:selected, calendar:disabled:selected, spinbutton:not(.vertical) selection:disabled, - entry selection:disabled, row:disabled:selected { - color: #7fd4d2; } - row:selected label:backdrop, label:backdrop:selected, .selection-mode button.titlebutton:backdrop, iconview:backdrop:selected:focus, .view:backdrop:selected, iconview:backdrop:selected, - iconview text:backdrop:selected:focus, - textview text:backdrop:selected:focus, - .view text:backdrop:selected, - iconview text:backdrop:selected, - textview text:backdrop:selected, iconview text selection:backdrop:focus, .view text selection:backdrop, iconview text selection:backdrop, - textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label:backdrop selection, modelbutton.flat:backdrop:selected, popover.background checkbutton:backdrop:selected, - popover.background radiobutton:backdrop:selected, - .menuitem.button.flat:backdrop:selected, calendar:backdrop:selected, spinbutton:not(.vertical) selection:backdrop, - entry selection:backdrop, row:backdrop:selected { - color: rgba(254, 254, 254, 0.5); } - row:selected label:backdrop:disabled, label:backdrop:disabled:selected, .selection-mode button.titlebutton:backdrop:disabled, .view:backdrop:disabled:selected, iconview:backdrop:disabled:selected, - .view text:backdrop:disabled:selected, - iconview text:backdrop:disabled:selected, - textview text:backdrop:disabled:selected, .view text selection:backdrop:disabled, iconview text selection:backdrop:disabled, - textview text selection:backdrop:disabled, flowbox flowboxchild:backdrop:disabled:selected, label:disabled selection:backdrop, label:backdrop selection:disabled, modelbutton.flat:backdrop:disabled:selected, popover.background checkbutton:backdrop:disabled:selected, - popover.background radiobutton:backdrop:disabled:selected, - .menuitem.button.flat:backdrop:disabled:selected, calendar:backdrop:disabled:selected, spinbutton:not(.vertical) selection:backdrop:disabled, - entry selection:backdrop:disabled, row:backdrop:disabled:selected { - color: rgba(32, 180, 176, 0.85); } - -.monospace { - font-family: Monospace; } - -/********************** - * DE-Specific Styles * - **********************/ -/********* -* Budgie * -*********/ -.budgie-container { - background-color: transparent; } - .budgie-container:backdrop { - background-color: transparent; } - .budgie-container popover list, - .budgie-container popover row { - border: none; - background: none; - padding: 0; - margin: 0; } - -.budgie-popover .container, -.budgie-popover border, -.budgie-popover list, -.budgie-popover row { - padding: 0; - margin: 0; - background: none; - border: none; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - opacity: 1; - min-width: 0; - min-height: 0; } - -.budgie-popover, -.budgie-popover.background { - border-radius: 2px; - padding: 0; - background: rgba(0, 0, 0, 0.95); - background-clip: border-box; - box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.35); - border: 1px solid #040407; } - .budgie-popover list:hover, - .budgie-popover row:hover, - .budgie-popover.background list:hover, - .budgie-popover.background row:hover { - background: none; } - .budgie-popover > frame.container, - .budgie-popover.background > frame.container { - margin: 0 -1px -1px; - padding: 2px 0 0; } - .budgie-popover button, - .budgie-popover.background button { - color: #BFC3C4; - border: none; - background: transparent; } - .budgie-popover button:hover, - .budgie-popover.background button:hover { - color: #00A9A5; } - -.budgie-popover > .container { - padding: 2px; } - -.budgie-menu { - color: #BFC3C4; } - .budgie-menu .container { - padding: 0; } - .budgie-menu button:hover { - -gtk-icon-effect: none; } - .budgie-menu entry.search { - border: none; - background: none; - padding: 5px 2px; - border-bottom: 1px solid #040407; - border-radius: 0; - font-size: 120%; - box-shadow: none; - color: #BFC3C4; } - .budgie-menu entry.search image:dir(ltr) { - padding-left: 8px; - padding-right: 12px; } - .budgie-menu entry.search image:dir(rtl) { - padding-left: 12px; - padding-right: 8px; } - .budgie-menu .categories { - border-width: 0; - margin-left: 3px; - background: transparent; } - .budgie-menu .categories:dir(ltr) { - border-right: 1px solid #040407; } - .budgie-menu .categories:dir(rtl) { - border-left: 1px solid #040407; } - .budgie-menu .category-button { - padding: 7px; - border-radius: 2px 0 0 2px; } - .budgie-menu .category-button:hover { - background-color: rgba(191, 195, 196, 0.05); - color: #BFC3C4; } - .budgie-menu .category-button:active { - box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } - .budgie-menu .category-button:checked { - color: #fefefe; - background: #00A9A5; } - .budgie-menu .category-button:checked:hover { - color: rgba(254, 254, 254, 0.6); } - .budgie-menu .category-button:checked:disabled { - opacity: 0.5; } - .budgie-menu .category-button:checked:disabled label { - color: rgba(254, 254, 254, 0.7); } - .budgie-menu scrollbar { - background-color: transparent; - border-color: #040407; } - .budgie-menu button:not(.category-button) { - padding-top: 5px; - padding-bottom: 5px; - border-radius: 0; - box-shadow: none; - background: yellow; } - .budgie-menu button { - border: none; - background: transparent; } - .budgie-menu undershoot, .budgie-menu overshoot { - background: none; } - .budgie-menu list { - color: rgba(191, 195, 196, 0.7); } - -button.budgie-menu-launcher { - padding: 0 2px; - color: #BFC3C4; - box-shadow: none; - background-color: transparent; } - button.budgie-menu-launcher:hover { - color: #BFC3C4; } - button.budgie-menu-launcher:active, button.budgie-menu-launcher:checked { - color: #BFC3C4; } - button.budgie-menu-launcher:backdrop { - color: #BFC3C4; - background-color: transparent; } - button.budgie-menu-launcher:backdrop:hover { - color: #BFC3C4; } - button.budgie-menu-launcher:backdrop:active, button.budgie-menu-launcher:backdrop:checked { - color: #00A9A5; - box-shadow: none; - background-color: #12141f; } - -.user-menu .content-box separator { - margin-left: 6px; - margin-right: 6px; - background-color: rgba(191, 195, 196, 0.1); } -.user-menu button { - margin: 5px; } -.user-menu > box.vertical row.activatable:first-child .indicator-item, -.user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item { - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); - background-color: #00A9A5; - transition-duration: 0.2s; } - .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(ltr), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(ltr) { - padding-left: 7px; - background-position: left center; - background-repeat: no-repeat; - background-size: 38px auto; } - .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(rtl), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(rtl) { - padding-right: 7px; - background-position: right center; - background-repeat: no-repeat; - background-size: 38px auto; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label { - color: #fefefe; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(ltr), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(ltr) { - padding-left: 5px; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(rtl), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(rtl) { - padding-right: 5px; } - .user-menu > box.vertical row.activatable:first-child .indicator-item image, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image { - color: #fefefe; } - .user-menu > box.vertical row.activatable:first-child .indicator-item image:first-child, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image:first-child { - min-width: 24px; - min-height: 20px; } - -button.raven-trigger { - padding-left: 2px; - padding-right: 2px; - color: #BFC3C4; - box-shadow: none; } - button.raven-trigger:hover { - color: #BFC3C4; - background-color: transparent; } - button.raven-trigger:active, button.raven-trigger:checked { - box-shadow: none; - background-color: transparent; - color: #00A9A5; } - button.raven-trigger:backdrop { - color: #BFC3C4; } - button.raven-trigger:backdrop:hover { - color: #BFC3C4; } - button.raven-trigger:backdrop:active, button.raven-trigger:backdrop:checked { - box-shadow: none; - color: #00A9A5; - background-color: transparent; } - -.places-menu .container { - padding: 0; } -.places-menu .message-bar { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } -.places-menu .name-button { - border: 0; - border-radius: 0; - padding: 4px 6px; } -.places-menu .unmount-button { - padding: 4px 4px; - border: 0; - border-radius: 0; } -.places-menu .places-section-header { - padding: 0px; - border-bottom: 1px solid rgba(4, 4, 7, 0.95); - box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.03); } -.places-menu .places-section-header > button { - padding: 8px; - border: none; - border-bottom-left-radius: 0px; - border-bottom-right-radius: 0px; } -.places-menu .places-list { - background: rgba(191, 195, 196, 0.04); - border-bottom: 1px solid rgba(4, 4, 7, 0.95); } -.places-menu .unlock-area { - border-top: 1px solid rgba(4, 4, 7, 0.85); - border-bottom: 1px solid rgba(4, 4, 7, 0.85); } -.places-menu .unlock-area entry { - border-radius: 0; - border: 0; } -.places-menu .unlock-area button { - border-radius: 0; - border: 0; - border-left: 1px solid rgba(4, 4, 7, 0.85); } -.places-menu .alternative-label { - font-size: 15px; - padding: 3px; } -.places-menu .always-expand { - background: transparent; - border-bottom: none; } - -.night-light-indicator .container { - padding: 0; } -.night-light-indicator .view-header { - font-size: 14px; - padding: 10px; - border-bottom: 1px solid mix(@theme_base_color, #000000, 0.35);; - box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.04);; } -.night-light-indicator .display-settings-button { - border-top-left-radius: 0px; - border-top-right-radius: 0px; - border: none; - padding: 3px; - border-top: 1px solid mix(@theme_base_color, #000000, 0.35);; - box-shadow: inset 0px 1px 1px alpha(@theme_fg_color, 0.04);; } - -.budgie-panel { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); - background-image: none; - box-shadow: none; - border: none; - transition: all 150ms ease-in; } - .budgie-panel .alert { - color: #FF5370; } - .budgie-panel:backdrop { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-panel button { - border-top-width: 0; - border-bottom-width: 0; - border-radius: 0; } - .budgie-panel button.flat { - background: transparent; - border: none; } - .budgie-panel button.flat:hover, .budgie-panel button.flat:active, .budgie-panel button.flat:checked { - background: transparent; - color: #00A9A5; } - .budgie-panel popover list, - .budgie-panel popover row { - padding: 0; - margin: 0; } - .budgie-panel label { - color: #BFC3C4; - font-weight: 700; } - .budgie-panel.transparent { - background-color: rgba(0, 0, 0, 0.2); } - .top .budgie-panel.transparent { - border-bottom-color: transparent; } - .bottom .budgie-panel.transparent { - border-top-color: transparent; } - .left .budgie-panel.transparent { - border-right-color: transparent; } - .right .budgie-panel.transparent { - border-left-color: transparent; } - .budgie-panel .end-region { - border-radius: 0px; } - .budgie-panel .end-region separator { - background-color: rgba(191, 195, 196, 0.15); } - .budgie-panel .end-region label { - font-weight: 700; - color: #BFC3C4; } - -.budgie-panel #tasklist-button, -.budgie-panel #tasklist-button:backdrop { - outline-color: transparent; - transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border-color: rgba(0, 0, 0, 0); - border-radius: 0; - background-color: transparent; - box-shadow: none; - background-clip: padding-box; } - -.budgie-panel button.flat.launcher { - outline-color: transparent; - transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border-color: rgba(0, 0, 0, 0); - border-radius: 0; - padding: 0; - background-clip: padding-box; - background-color: transparent; } - .budgie-panel button.flat.launcher { - box-shadow: none; } - -.budgie-panel #tasklist-button:hover, .budgie-panel .unpinned button.flat.launcher:hover, -.budgie-panel .pinned button.flat.launcher.running:hover { - box-shadow: none; } -.budgie-panel #tasklist-button:active, .budgie-panel .unpinned button.flat.launcher:active, -.budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel #tasklist-button:checked, .budgie-panel .unpinned button.flat.launcher:checked, -.budgie-panel .pinned button.flat.launcher.running:checked { - box-shadow: none; } -.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, -.top .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .top button.flat.launcher.running { - padding-bottom: 2px; - border-top: 2px solid transparent; } - .top .budgie-panel .pinned button.flat.launcher:not(.running) { - border-top: 2px solid transparent; } - - .top .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-top: 2px solid rgba(255, 255, 255, 0.1); } - - .top .budgie-panel .unpinned button.flat.launcher, - .top .budgie-panel .pinned button.flat.launcher.running { - border-top: 2px solid rgba(255, 255, 255, 0.1); } - .top .budgie-panel #tasklist-button:hover, .budgie-panel .top #tasklist-button:hover, .top .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .top button.flat.launcher:hover, - .top .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .top button.flat.launcher.running:hover { - border-top: 2px solid rgba(255, 255, 255, 0.25); } - .top .budgie-panel #tasklist-button:active, .budgie-panel .top #tasklist-button:active, .top .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .top button.flat.launcher:active, - .top .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .top button.flat.launcher.running:active, .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .top button.flat.launcher:checked, - .top .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .top button.flat.launcher.running:checked { - border-top: 2px solid #00A9A5; } -.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, -.bottom .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .bottom button.flat.launcher.running { - padding-top: 2px; - border-bottom: 2px solid transparent; } - .bottom .budgie-panel .pinned button.flat.launcher:not(.running) { - border-bottom: 2px solid transparent; } - - .bottom .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-bottom: 2px solid rgba(255, 255, 255, 0.1); } - - .bottom .budgie-panel .unpinned button.flat.launcher, - .bottom .budgie-panel .pinned button.flat.launcher.running { - border-bottom: 2px solid rgba(255, 255, 255, 0.1); } - .bottom .budgie-panel #tasklist-button:hover, .budgie-panel .bottom #tasklist-button:hover, .bottom .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .bottom button.flat.launcher:hover, - .bottom .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .bottom button.flat.launcher.running:hover { - border-bottom: 2px solid rgba(255, 255, 255, 0.25); } - .bottom .budgie-panel #tasklist-button:active, .budgie-panel .bottom #tasklist-button:active, .bottom .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .bottom button.flat.launcher:active, - .bottom .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .bottom button.flat.launcher.running:active, .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .bottom button.flat.launcher:checked, - .bottom .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .bottom button.flat.launcher.running:checked { - border-bottom: 2px solid #00A9A5; } -.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, -.left .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .left button.flat.launcher.running { - padding-right: 2px; - border-left: 2px solid transparent; } - .left .budgie-panel .pinned button.flat.launcher:not(.running) { - border-left: 2px solid transparent; } - - .left .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-left: 2px solid rgba(255, 255, 255, 0.1); } - - .left .budgie-panel .unpinned button.flat.launcher, - .left .budgie-panel .pinned button.flat.launcher.running { - border-left: 2px solid rgba(255, 255, 255, 0.1); } - .left .budgie-panel #tasklist-button:hover, .budgie-panel .left #tasklist-button:hover, .left .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .left button.flat.launcher:hover, - .left .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .left button.flat.launcher.running:hover { - border-left: 2px solid rgba(255, 255, 255, 0.25); } - .left .budgie-panel #tasklist-button:active, .budgie-panel .left #tasklist-button:active, .left .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .left button.flat.launcher:active, - .left .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .left button.flat.launcher.running:active, .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .left button.flat.launcher:checked, - .left .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .left button.flat.launcher.running:checked { - border-left: 2px solid #00A9A5; } -.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, -.right .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .right button.flat.launcher.running { - padding-left: 2px; - border-right: 2px solid transparent; } - .right .budgie-panel .pinned button.flat.launcher:not(.running) { - border-right: 2px solid transparent; } - - .right .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-right: 2px solid rgba(255, 255, 255, 0.1); } - - .right .budgie-panel .unpinned button.flat.launcher, - .right .budgie-panel .pinned button.flat.launcher.running { - border-right: 2px solid rgba(255, 255, 255, 0.1); } - .right .budgie-panel #tasklist-button:hover, .budgie-panel .right #tasklist-button:hover, .right .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .right button.flat.launcher:hover, - .right .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .right button.flat.launcher.running:hover { - border-right: 2px solid rgba(255, 255, 255, 0.25); } - .right .budgie-panel #tasklist-button:active, .budgie-panel .right #tasklist-button:active, .right .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .right button.flat.launcher:active, - .right .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .right button.flat.launcher.running:active, .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .right button.flat.launcher:checked, - .right .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .right button.flat.launcher.running:checked { - border-right: 2px solid #00A9A5; } - -.top .budgie-panel { - border-bottom: 1px solid rgba(0, 0, 0, 0.92); } - -.top .raven-frame { - padding: 0; - background: none; } - .top .raven-frame border { - border: none; - border-bottom: 1px solid rgba(4, 4, 7, 0.92); } - -.top .shadow-block { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent); } - -.bottom .budgie-panel { - border-top: 1px solid rgba(0, 0, 0, 0.92); } - -.bottom .raven-frame { - padding: 0; - background: none; } - .bottom .raven-frame border { - border: none; - border-top: 1px solid rgba(4, 4, 7, 0.92); } - -.bottom .shadow-block { - background-color: transparent; - background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); } - -.left .budgie-panel { - border-right: 1px solid rgba(0, 0, 0, 0.92); } - -.left .raven-frame { - padding: 0; - background: none; } - .left .raven-frame border { - border: none; - border-right: 1px solid rgba(4, 4, 7, 0.92); } - -.left .shadow-block { - background-color: transparent; - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent); } - -.right .budgie-panel { - border-left: 1px solid rgba(0, 0, 0, 0.92); } - -.right .raven-frame { - padding: 0; - background: none; } - .right .raven-frame border { - border: none; - border-left: 1px solid rgba(4, 4, 7, 0.92); } - -.right .shadow-block { - background-color: transparent; - background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent); } - -.raven { - padding: 0; - color: #FF5370; - background: rgba(0, 0, 0, 0.95); - transition: 170ms ease-out; } - .raven .raven-header { - min-height: 32px; - color: #BFC3C4; - border: solid rgba(4, 4, 7, 0.95); - border-width: 1px 0; - background-color: rgba(28, 31, 48, 0.45); } - .raven .raven-header * { - padding-top: 0; - padding-bottom: 0; } - .raven .raven-header.top { - border-top-style: none; - border-color: transparent; - margin-top: 3px; - min-height: 32px; } - .raven .raven-header.top button.image-button:hover { - color: #00908c; - box-shadow: none; } - .raven .raven-header > button.text-button { - border-radius: 2px; - color: #fefefe; - background-color: rgba(255, 58, 91, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header > button.text-button:hover { - border-radius: 2px; - color: #fefefe; - background-color: rgba(255, 83, 112, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header > button.text-button:active { - color: #fefefe; - background-color: rgba(255, 109, 133, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header.bottom { - border-bottom-style: none; } - .raven .raven-header button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0; } - .raven .raven-header button:hover { - color: #00A9A5; - border-radius: 0; - text-shadow: none; - background-image: linear-gradient(to bottom, #131520, #0F111A); - border-radius: 0; } - .raven .raven-header button:active, .raven .raven-header button:checked { - color: #00A9A5; - background-color: #090b10; } - .raven .raven-header button:disabled { - color: #676a6f; } - .raven list { - color: #BFC3C4; - background-color: transparent; } - .raven list:selected { - background-color: rgba(0, 169, 165, 0.9); } - .raven list row, - .raven list row.activatable { - background-color: transparent; } - .raven list row:hover, - .raven list row.activatable:hover { - background-color: rgba(28, 31, 48, 0.25); } - .raven list row:selected, - .raven list row.activatable:selected { - background-color: rgba(0, 169, 165, 0.9); } - .raven .raven-background { - color: #BFC3C4; - background-color: transparent; - border-color: transparent; } - .raven .raven-background.middle { - border-bottom-style: none; } - .raven .powerstrip { - background-color: transparent; - border-top-color: transparent; } - .raven .powerstrip button.image-button { - border-radius: 50%; - padding: 5px; - min-width: 32px; - min-height: 32px; - margin-bottom: 3px; - background: #C792EA; - color: #fefefe; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); - border: none; - font-size: 100%; } - .raven .powerstrip button.image-button:hover { - background: rgba(199, 146, 234, 0.85); - color: #fefefe; } - .raven .powerstrip button.image-button:active { - background: #C792EA; - color: #fefefe; } - .raven .powerstrip button.image-button:first-child { - background: #00A9A5; } - .raven .powerstrip button.image-button:first-child:hover { - background: rgba(0, 169, 165, 0.85); } - .raven .powerstrip button.image-button:first-child:active { - background: #00A9A5; } - .raven .powerstrip button.image-button:last-child { - background: linear-gradient(to right, #FF5370, #FF5370); } - .raven .powerstrip button.image-button:last-child:hover { - background: rgba(255, 83, 112, 0.85); } - .raven .powerstrip button.image-button:last-child:active { - background: #FF5370; } - .raven .option-subtitle { - font-size: 13px; } - -calendar.raven-calendar { - padding: 4px; - color: #BFC3C4; - background: transparent; - border-color: transparent; } - calendar.raven-calendar:indeterminate { - color: alpha(currentColor,0.3); } - calendar.raven-calendar:selected { - background: transparent; - color: #009591; - font-weight: bold; } - calendar.raven-calendar:backdrop { - background-color: transparent; } - calendar.raven-calendar.header { - color: #BFC3C4; - border: none; - border-radius: 0; - background-color: transparent; } - calendar.raven-calendar button, calendar.raven-calendar button:focus { - color: alpha(currentColor,0.5); - background-color: transparent; } - calendar.raven-calendar button:hover, calendar.raven-calendar button:focus:hover { - color: #BFC3C4; - background-color: transparent; } - -.raven-mpris { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.9); - border: solid rgba(255, 255, 255, 0.1); - border-width: 1px 0; - border-bottom-color: rgba(0, 0, 0, 0.1); } - .raven-mpris button.image-button { - padding: 10px; - background-color: #131520; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); } - .raven-mpris button.image-button:hover { - background-color: #00A9A5; } - .raven-mpris button.image-button:active { - background-color: #00908c; } - .raven-mpris button.image-button:first-child { - margin-right: 4px; } - .raven-mpris button.image-button:last-child { - margin-left: 4px; } - .raven-mpris button.image-button:last-child, .raven-mpris button.image-button:first-child { - padding: 4px; - margin-top: 6px; - margin-bottom: 6px; } - -.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { - background: none; - border-radius: 1px; } - .budgie-notification-window button, .budgie-osd-window button, .budgie-switcher-window button { - background-color: #00A9A5; - color: #fefefe; - border: none; } - .budgie-notification-window button:hover, .budgie-osd-window button:hover, .budgie-switcher-window button:hover { - background-color: #00908c; - border: none; } - .budgie-notification-window button:active, .budgie-osd-window button:active, .budgie-switcher-window button:active, .budgie-notification-window button:checked, .budgie-osd-window button:checked, .budgie-switcher-window button:checked { - background-color: #00908c; } - -.budgie-notification.background, .background.budgie-osd, .background.budgie-switcher { - border-radius: 1px; } -.budgie-notification .notification-title, .budgie-osd .notification-title, .budgie-switcher .notification-title { - font-size: 110%; - color: #BFC3C4; } -.budgie-notification .notification-body, .budgie-osd .notification-body, .budgie-switcher .notification-body { - color: rgba(191, 195, 196, 0.7); } -.budgie-notification button, .budgie-osd button, .budgie-switcher button { - background-color: transparent; - color: #fefefe; } - .budgie-notification button:hover, .budgie-osd button:hover, .budgie-switcher button:hover { - background-color: transparent; - color: #FF5370; - box-shadow: none; } - .budgie-notification button:active, .budgie-osd button:active, .budgie-switcher button:active, .budgie-notification button:checked, .budgie-osd button:checked, .budgie-switcher button:checked { - background-color: transparent; - color: #ff3a5b; } - -.drop-shadow, .budgie-session-dialog.background, .background.budgie-polkit-dialog, .background.budgie-run-dialog { - color: #BFC3C4; - background-color: rgba(15, 17, 26, 0.95); - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); - border-radius: 2px; } - -.budgie-switcher-window flowbox { - color: #BFC3C4; } -.budgie-switcher-window flowboxchild { - padding: 3px; - margin: 3px; - color: #BFC3C4; } - .budgie-switcher-window flowboxchild:hover { - background-color: transparent; } - .budgie-switcher-window flowboxchild:active { - color: #BFC3C4; } - .budgie-switcher-window flowboxchild:selected { - color: #fefefe; - background-color: rgba(0, 169, 165, 0.5); } - .budgie-switcher-window flowboxchild:selected:active { - color: #fefefe; } - .budgie-switcher-window flowboxchild:selected:hover { - background-color: #009895; } - .budgie-switcher-window flowboxchild:selected:disabled { - color: rgba(254, 254, 254, 0.7); - background-color: rgba(0, 169, 165, 0.7); } - .budgie-switcher-window flowboxchild:selected:disabled label { - color: rgba(254, 254, 254, 0.7); } - -.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-session-dialog label:backdrop, .budgie-polkit-dialog label:backdrop, .budgie-run-dialog label:backdrop { - color: rgba(191, 195, 196, 0.8); } - .budgie-session-dialog .dialog-title, .budgie-polkit-dialog .dialog-title, .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 { - margin-bottom: 0; - min-height: 32px; - border-bottom: none; - border-color: #040407; - border-radius: 0; - color: #BFC3C4; - background-color: transparent; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(0, 0, 0, 0.2); } - .budgie-session-dialog .linked.horizontal > button label, .budgie-polkit-dialog .linked.horizontal > button label, .budgie-run-dialog .linked.horizontal > button label { - font-weight: 700; } - .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-left: none; - border-bottom-left-radius: 2px; } - .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-right: none; - border-bottom-right-radius: 2px; - background: transparent; } - .budgie-session-dialog .linked.horizontal > button:hover, .budgie-polkit-dialog .linked.horizontal > button:hover, .budgie-run-dialog .linked.horizontal > button:hover { - background-color: rgba(0, 169, 165, 0.9); - color: #fff; } - .budgie-session-dialog .linked.horizontal > button:hover:backdrop label, .budgie-polkit-dialog .linked.horizontal > button:hover:backdrop label, .budgie-run-dialog .linked.horizontal > button:hover:backdrop label { - color: rgba(255, 255, 255, 0.5); } - .budgie-session-dialog .linked.horizontal > button.suggested-action, .budgie-polkit-dialog .linked.horizontal > button.suggested-action, .budgie-run-dialog .linked.horizontal > button.suggested-action { - background: linear-gradient(to right, #FF5370 0%, #00A9A5 100%); - color: #fff; } - .budgie-session-dialog .linked.horizontal > button.suggested-action:hover, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:hover, .budgie-run-dialog .linked.horizontal > button.suggested-action:hover { - background: linear-gradient(to right, #ff2a4e 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.suggested-action:active, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:active, .budgie-run-dialog .linked.horizontal > button.suggested-action:active, .budgie-session-dialog .linked.horizontal > button.suggested-action:checked, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:checked, .budgie-run-dialog .linked.horizontal > button.suggested-action:checked { - background: linear-gradient(to right, #ff2a4e 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action, .budgie-polkit-dialog .linked.horizontal > button.destructive-action, .budgie-run-dialog .linked.horizontal > button.destructive-action { - background: linear-gradient(to right, #FF5370 0%, #ff2046 100%); - color: #fff; } - .budgie-session-dialog .linked.horizontal > button.destructive-action:hover, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:hover, .budgie-run-dialog .linked.horizontal > button.destructive-action:hover { - background: linear-gradient(to right, #ff2a4e 0%, #ff2046 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action:active, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:active, .budgie-run-dialog .linked.horizontal > button.destructive-action:active, .budgie-session-dialog .linked.horizontal > button.destructive-action:checked, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:checked, .budgie-run-dialog .linked.horizontal > button.destructive-action:checked { - background: linear-gradient(to right, #ff2a4e 0%, #ff2046 100%); } - .budgie-session-dialog entry, .budgie-polkit-dialog entry, .budgie-run-dialog entry { - background-color: #505359; - color: #BFC3C4; } - .budgie-session-dialog entry:focus, .budgie-polkit-dialog entry:focus, .budgie-run-dialog entry:focus { - background-color: #505359; } - .budgie-session-dialog entry:backdrop, .budgie-polkit-dialog entry:backdrop, .budgie-run-dialog entry:backdrop { - background-color: #505359; } - -.budgie-polkit-dialog .message { - color: rgba(191, 195, 196, 0.7); } -.budgie-polkit-dialog .failure { - color: #FF5370; } - -.budgie-run-dialog entry.search, .budgie-run-dialog entry.search:focus { - font-size: 120%; - padding: 8px 5px; - border: none; - box-shadow: none; } - .budgie-run-dialog entry.search image, .budgie-run-dialog entry.search:focus image { - color: #BFC3C4; } - .budgie-run-dialog entry.search image:dir(ltr), .budgie-run-dialog entry.search:focus image:dir(ltr) { - padding-left: 8px; - padding-right: 12px; } - .budgie-run-dialog entry.search image:dir(rtl), .budgie-run-dialog entry.search:focus image:dir(rtl) { - padding-left: 12px; - padding-right: 8px; } -.budgie-run-dialog list row:selected .dim-label, .budgie-run-dialog list row:selected label.separator, .budgie-run-dialog list row:selected .titlebar .subtitle, .titlebar .budgie-run-dialog list row:selected .subtitle, -.budgie-run-dialog list row:selected headerbar .subtitle, -headerbar .budgie-run-dialog list row:selected .subtitle { - opacity: 1; } -.budgie-run-dialog scrolledwindow { - border-top: 1px solid rgba(0, 0, 0, 0); } - -.budgie-menubar menu { - margin: 4px; - padding: 5px; - border-radius: 0; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-menubar menu menuitem:hover { - background-color: #00A9A5; - color: #fefefe; } -.budgie-menubar arrow { - border: none; - min-width: 16px; - min-height: 16px; } - .budgie-menubar arrow.top { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); - border-bottom: 1px solid rgba(31, 32, 38, 0.928); } - .budgie-menubar arrow.bottom { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - border-top: 1px solid rgba(31, 32, 38, 0.928); } -.budgie-menubar menuitem accelerator { - color: rgba(191, 195, 196, 0.35); } -.budgie-menubar menuitem check, .budgie-menubar menuitem radio { - min-height: 16px; - min-width: 16px; } - -window.background.budgie-settings-window.csd > box.horizontal > stack > scrolledwindow buttonbox.inline-toolbar { - border-style: none none solid; } - -.workspace-switcher .workspace-layout { - border: 0 solid rgba(0, 0, 0, 0.95); } - .top .workspace-switcher .workspace-layout:dir(ltr), .bottom .workspace-switcher .workspace-layout:dir(ltr) { - border-left-width: 1px; } - .top .workspace-switcher .workspace-layout:dir(rtl), .bottom .workspace-switcher .workspace-layout:dir(rtl) { - border-right-width: 1px; } - .left .workspace-switcher .workspace-layout, .right .workspace-switcher .workspace-layout { - border-top-width: 1px; } -.workspace-switcher .workspace-item, .workspace-switcher .workspace-add-button { - border: 0 solid rgba(19, 21, 32, 0.95); } - .top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr), - .top .workspace-switcher .workspace-add-button:dir(ltr), .bottom .workspace-switcher .workspace-add-button:dir(ltr) { - border-right-width: 1px; } - .top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl), - .top .workspace-switcher .workspace-add-button:dir(rtl), .bottom .workspace-switcher .workspace-add-button:dir(rtl) { - border-left-width: 1px; } - .left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item, .left .workspace-switcher .workspace-add-button, .right .workspace-switcher .workspace-add-button { - border-bottom-width: 1px; } -.workspace-switcher .workspace-item.current-workspace { - background-color: rgba(19, 21, 32, 0.95); } -.workspace-switcher .workspace-add-button { - border: none; - background: transparent; } - .workspace-switcher .workspace-add-button:hover { - box-shadow: none; } - .workspace-switcher .workspace-add-button:active { - background-image: none; } - .workspace-switcher .workspace-add-button:active image { - margin: 1px 0 -1px; } -.budgie-panel .workspace-switcher .workspace-icon-button { - min-height: 24px; - min-width: 24px; - padding: 0; - border-radius: 2px; } - -/************ - * Nautilus * - ************/ -.nautilus-window .frame *:selected, .nautilus-window .frame *:selected:backdrop { - background: transparent; - color: #00A9A5; } - .nautilus-window .frame *:selected label, .nautilus-window .frame *:selected:backdrop label { - color: #00A9A5; } -.nautilus-window paned > separator { - background-image: none; } -.nautilus-window .sidebar { - background-color: transparent; } - .nautilus-window .sidebar:backdrop { - background-color: transparent; } - .nautilus-window .sidebar .list-row button { - border: none; - background-color: rgba(13, 15, 23, 0.95); } - .nautilus-window .sidebar .list-row button:active { - background-color: rgba(0, 169, 165, 0.75); } - .nautilus-window .sidebar .list-row:selected { - background-color: rgba(0, 169, 165, 0.75); } - .nautilus-window .sidebar .list-row:selected:hover { - background-color: rgba(0, 169, 165, 0.9); } - .nautilus-window .sidebar .list-row:hover { - background-color: rgba(19, 21, 32, 0.5); } - .nautilus-window .sidebar .list-row:hover:active { - background-color: rgba(0, 169, 165, 0.9); } -.nautilus-window.background { - background-color: rgba(13, 15, 23, 0.95); } - .nautilus-window.background:backdrop { - background-color: rgba(13, 15, 23, 0.95); } -.nautilus-window notebook > stack:only-child { - background-color: #131520; } - .nautilus-window notebook > stack:only-child:backdrop { - background-color: #151724; } -.nautilus-window searchbar { - border-top: 1px solid rgba(0, 0, 0, 0.12); } -.nautilus-window .searchbar-container { - margin-top: -1px; } -.nautilus-window .linked:not(.vertical) > entry { - border-radius: 10px; - margin-right: 5px; } - .nautilus-window .linked:not(.vertical) > entry:focus { - border-color: rgba(0, 169, 165, 0.3); } - .nautilus-window .linked:not(.vertical) > entry:focus + button { - border-left-color: #040407; } - -.nautilus-circular-button { - border-radius: 20px; - -gtk-outline-radius: 20px; } - -.disk-space-display { - border: 2px solid; } - .disk-space-display .unknown { - background-color: #888a85; - border-color: #555653; } - .disk-space-display .used { - background-color: #9FB0B9; - border-color: #667f8c; } - .disk-space-display .free { - background-color: #D8D8D8; - border-color: #a5a5a5; } - -.nautilus-desktop { - color: #BFC3C4; } - .nautilus-desktop .nautilus-canvas-item { - border-radius: 5px; - color: #fefefe; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop .nautilus-canvas-item:active { - color: #BFC3C4; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item:hover { - color: #BFC3C4; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item:selected { - color: #fefefe; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item .dim-label:selected, .nautilus-desktop .nautilus-canvas-item label.separator:selected, .nautilus-desktop .nautilus-canvas-item .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-canvas-item .subtitle:selected, - .nautilus-desktop .nautilus-canvas-item headerbar .subtitle:selected, - headerbar .nautilus-desktop .nautilus-canvas-item .subtitle:selected { - color: #fefefe; } - .nautilus-desktop .nautilus-list .dim-label:selected, .nautilus-desktop .nautilus-list label.separator:selected, .nautilus-desktop .nautilus-list .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-list .subtitle:selected, - .nautilus-desktop .nautilus-list headerbar .subtitle:selected, - headerbar .nautilus-desktop .nautilus-list .subtitle:selected { - color: #fefefe; } - -/********* - * Gedit * - *********/ -.gedit-search-slider { - padding: 4px; - border-radius: 0 0 3px 3px; - border: 0; - background-color: #0F111A; } - - /********* - * Gnucash * -*********/ -#gnc-id-main-window entry.gnc-class-register-foreground { - background: transparent; - border: none; - box-shadow: none; } -#gnc-id-main-window .arrow.button.toggle { - transition: none; - box-shadow: none; } - #gnc-id-main-window .arrow.button.toggle:hover { - border-color: #00A9A5; } - -/******** - * Gala * - *******/ -.gala-notification { - border-width: 0; - border-radius: 2px; - color: white; - border: 1px solid #131520; - background-color: #131520; } - .gala-notification .title, - .gala-notification .label { - color: #BFC3C4; } - -.gala-button { - padding: 3px; - color: #131520; - border: none; - border-radius: 50%; - background-image: linear-gradient(to bottom, #7e7e7e, #3e3e3e); - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.98), inset 0 1px 0 0 rgba(255, 255, 255, 0.93), inset 0 -1px 0 0 rgba(255, 255, 255, 0.99), 0 0 0 1px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.84), 0 3px 6px rgba(0, 0, 0, 0.77); - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -/********** - * Notify * - *********/ -.notify { - /*-notify-shadow: 0px 2px 18px transparentize(black, 0.60);*/ - border-radius: 5px; - border: 1px solid rgba(0, 0, 0, 0.7); - background-color: rgba(19, 21, 32, 0.05); } - -/*************** - * SwitchBoard * - ***************/ -.category-label { - font-weight: bold; - color: #BFC3C4; } - -/************* - * Slingshot * - ************/ -.button.app { - border: none; - border-radius: 0; - box-shadow: none; - background-image: none; } - .button.app .app:hover { - border-radius: 8px; - border: none; - background-color: rgba(0, 169, 165, 0.3); - color: white; } - .button.app .app:focus { - /*background-color: transparentize(black, 0.20);*/ } - -.search-item { - border-radius: 0; - border: none; - color: #BFC3C4; - background: none; } - .search-item:hover, .search-item:focus { - border-radius: 0; - background-color: rgba(0, 169, 165, 0.3); - color: #fefefe; } - -.search-entry-large, -.search-entry-large:focus { - border: none; - font-size: 18px; - font-weight: 300; - background-image: none; - background: none; - box-shadow: none; - border-radius: 0; } - -.search-category-header { - font-weight: bold; - color: #BFC3C4; } - -/********* - * Panel * - ********/ -.panel { - background-color: transparent; - transition: all 100ms ease-in-out; } - .panel.maximized { - background-color: #131520; } - .panel.translucent { - background-color: rgba(19, 21, 32, 0.5); } - .panel.color-light.translucent { - background-color: rgba(255, 255, 255, 0.85); } - -menubar.panel, -.panel menubar { - box-shadow: none; - border: none; } - -.composited-indicator > revealer, -.composited-indicator > revealer image, -.composited-indicator > revealer label, -.composited-indicator > revealer spinner { - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); - transition: all 200ms ease-in-out; - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); } -.composited-indicator > revealer image:first-child + label { - margin-left: 5px; } - -.panel.color-light .composited-indicator > revealer, -.panel.color-light .composited-indicator > revealer image, -.panel.color-light .composited-indicator > revealer label, -.panel.color-light .composited-indicator > revealer spinner { - color: rgba(0, 0, 0, 0.6); - text-shadow: 0 1px rgba(255, 255, 255, 0.1); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.1); } - -/************** - * Calculator * - **************/ -PantheonCalculatorMainWindow { - border-radius: 0 0 4px 4px; } - PantheonCalculatorMainWindow .window-frame { - border-radius: 3px; } - -/********* - * Cards * - *********/ -.deck { - background-color: black; } - -.card { - background-color: #131520; - border: none; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 3px 3px rgba(0, 0, 0, 0.2); - transition: all 150ms ease-in-out; } - -.card.collapsed { - background-color: #090b10; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.2); } - -/********* - * Noise * - *********/ -NoiseLibraryWindow { - border-radius: 0 0 4px 4px; } - NoiseLibraryWindow .action-bar { - border-radius: 0 0 4px 4px; } - NoiseLibraryWindow .window-frame { - border-radius: 3px; } - -/******** - * Snap * - ********/ -SnapMainWindow .take-button, -SnapSnapWindow .take-button { - border-radius: 0; } - -/******************* - * Photos/Shotwell * - *******************/ -DirectWindow .the-button-in-the-combobox, -LibraryWindow .the-button-in-the-combobox { - background: none; } - -.checkerboard-layout { - background-color: #0F111A; - background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)); - background-size: 24px 24px; - background-position: 0 0, 12px 12px; } - -.checkboard-layout .item { - background-color: #BFC3C4; } - -/********* -* Avatar * -*********/ -.avatar { - border: 1px solid rgba(0, 0, 0, 0.23); - border-radius: 50%; - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 0 rgba(255, 255, 255, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.23); } - -/**level bars**/ -.sidebar .source-list.view.level-bar, .sidebar iconview.source-list.level-bar, .sidebar .source-list.view.level-bar:selected, .sidebar iconview.source-list.level-bar:selected, .sidebar .source-list.view.level-bar:selected:focus, .sidebar iconview.source-list.level-bar:selected:focus { - background: linear-gradient(to right, #292f47, #292f47); - border: 1px solid rgba(0, 0, 0, 0.14); - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); - border-radius: 2px; } -.sidebar .source-list.view.level-bar.fill-block, .sidebar iconview.source-list.level-bar.fill-block { - border: none; } -.sidebar .source-list.view.fill-block, .sidebar iconview.source-list.fill-block, .sidebar .source-list.view.fill-block:hover, .sidebar iconview.source-list.fill-block:hover, .sidebar .source-list.view.fill-block:selected, .sidebar iconview.source-list.fill-block:selected, .sidebar .source-list.view.fill-block:selected:focus, .sidebar iconview.source-list.fill-block:selected:focus { - background: linear-gradient(to right, #FFCB6B, #FFCB6B); } - -/************************** - * Colors in context menu * -**************************/ -checkbutton.color-button { - border: 1px solid #040407; - border-radius: 100px; - background-clip: border-box; - padding: 0; - margin: 2px 1px; } - checkbutton.color-button > check { - -gtk-icon-source: none; - background: none; - margin-right: 0; - padding: 2px; } - checkbutton.color-button.none > check { - background-color: transparent; - border-radius: 100px; - -gtk-icon-source: -gtk-icontheme("close-symbolic"); } - -radiobutton.color-button > radio { - -gtk-icon-source: none; - margin-right: 0; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 100px; - background-clip: border-box; } -radiobutton.color-button:active > radio { - border: 1px solid rgba(0, 0, 0, 0.35); } - -.color-button check, -.color-button check:checked, -.color-button radio, -.color-button radio:checked { - background-image: none; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 50%; - color: #131520; - -gtk-icon-source: -gtk-icontheme("check-active-symbolic"); } -.color-button.red check, .color-button.red radio, .color-button.strawberry check, .color-button.strawberry radio { - background-color: @STRAWBERRY_300; - -gtk-icon-shadow: 0 1px 1px @STRAWBERRY_500; } -.color-button.orange check, .color-button.orange radio { - background-color: @ORANGE_300; - -gtk-icon-shadow: 0 1px 1px @ORANGE_500; } -.color-button.yellow check, .color-button.yellow radio, .color-button.banana check, .color-button.banana radio { - background-color: @BANANA_500; - -gtk-icon-shadow: 0 1px 1px @BANANA_700; } -.color-button.green check, .color-button.green radio, .color-button.lime check, .color-button.lime radio { - background-color: @LIME_500; - -gtk-icon-shadow: 0 1px 1px @LIME_700; } -.color-button.blue check, .color-button.blue radio, .color-button.blueberry check, .color-button.blueberry radio { - background-color: @BLUEBERRY_500; - -gtk-icon-shadow: 0 1px 1px @BLUEBERRY_700; } -.color-button.purple check, .color-button.purple radio, .color-button.grape check, .color-button.grape radio { - background-color: @GRAPE_500; - -gtk-icon-shadow: 0 1px 1px @GRAPE_700; } -.color-button.brown check, .color-button.brown radio, .color-button.cocoa check, .color-button.cocoa radio { - background-color: @COCOA_300; - -gtk-icon-shadow: 0 1px 1px @COCOA_500; } -.color-button.mint check, .color-button.mint radio { - background-color: @MINT_500; - -gtk-icon-shadow: 0 1px 1px @MINT_700; } -.color-button.pink check, .color-button.pink radio, .color-button.bubblegum check, .color-button.bubblegum radio { - background-color: @BUBBLEGUM_500; - -gtk-icon-shadow: 0 1px 1px @BUBBLEGUM_700; } -.color-button.slate check, .color-button.slate radio { - background-color: @SLATE_300; - -gtk-icon-shadow: 0 1px 1px @SLATE_500; } -.color-button.auto radio { - background-image: url("assets/color-button-auto.png"); - background-position: -1px -1px; - background-repeat: no-repeat; - background-size: calc(100% + 2px); } - -.xfce4-panel.panel { - background-color: #131520; - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(255, 255, 255, 0.8); - border-radius: 0; - border: none; - background-color: #131520; } - #tasklist-button:hover { - color: white; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #00A9A5; } - -.xfce4-panel.panel button.flat { - color: white; - border-radius: 0; - border: none; - background-color: #131520; } - .xfce4-panel.panel button.flat:hover { - border: none; - background-color: #252a41; } - .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.flat:checked { - color: #fefefe; - border-bottom: 2px solid #00A9A5; - background-color: #1c2031; } - .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.flat:checked image { - color: inherit; } - -#whiskermenu-window button { - background-color: transparent; - border: none; - border-radius: 0; - font-weight: normal; - padding: 3px; - margin: 1px 2px; } - #whiskermenu-window button:hover, #whiskermenu-window button:checked { - background-color: #00A9A5; } - -/******** -* Unity * -*********/ -/* Unity window border color */ -/* Unity window text color */ -/* Backdrop Unity window text color */ -/* Unity panel color #454D50 */ -UnityDecoration { - /* Border properties (top, right, bottom, left) */ - -UnityDecoration-extents: 28px 1px 1px 1px; - /* the size of the decorations */ - -UnityDecoration-input-extents: 10px; - /* the extra size of the input areas */ - /* Shadows settings */ - -UnityDecoration-shadow-offset-x: 1px; - /* Size property, the shadow x offset */ - -UnityDecoration-shadow-offset-y: 1px; - /* Size property, the shadow y offset */ - -UnityDecoration-active-shadow-color: rgba 0, 0, 0, 0.647; - /* Color property, active window shadow color */ - -UnityDecoration-active-shadow-radius: 8px; - /* Size property, active window shadow radius */ - -UnityDecoration-inactive-shadow-color: rgba 0, 0, 0, 0.647; - /* Color property, inactive windows shadow color */ - -UnityDecoration-inactive-shadow-radius: 5px; - /* Size property, inactive windows shadow radius */ - /* Glow applied to the selected scaled window */ - -UnityDecoration-glow-size: 8px; - /* Size property, size of glow */ - -UnityDecoration-glow-color: #00A9A5; - /* Color property of the glow */ - /* Title settings */ - -UnityDecoration-title-indent: 10px; - /* Size property, left indent of the title */ - -UnityDecoration-title-fade: 35px; - /* Size property, space of the title that can be faded */ - -UnityDecoration-title-alignment: 0.0; - /* Float from 0.0 to 1.0, to align the title */ - background-color: #eeeeee; - color: #31363D; } - UnityDecoration .top { - padding: 0 5px 0 5px; - border-radius: 4px 4px 0px 0px; - box-shadow: none; - border: 1px solid #eeeeee; - border-bottom-width: 0; - background-color: #eeeeee; - color: #31363D; - border-top: 1px solid rgba(255, 255, 255, 0.1); } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: #1a1d21; - border-top: 1px solid rgba(255, 255, 255, 0.1); } - UnityDecoration .top .menuitem { - color: #31363D; } - UnityDecoration .top .menuitem:backdrop { - color: #1a1d21; } - -UnityDecoration.left, -UnityDecoration.right { - background-repeat: repeat-x; - background-color: #ececec; - background-size: 1px 120px; - background-clip: border-box; - background-image: linear-gradient(to bottom, #eeeeee, #ececec); } - -UnityDecoration.bottom { - background-size: 1px; - background-repeat: repeat-x; - background-color: #ececec; } - -UnityDecoration.left:backdrop, -UnityDecoration.right:backdrop, -UnityDecoration.bottom:backdrop { - background-size: 1px; - background-repeat: repeat-x; } - -/************** -* Unity Panel * -***************/ -UnityPanelWidget, -.unity-panel { - background-color: #d5d5d5; - color: #31363D; } - -UnityPanelWidget:backdrop, -.unity-panel:backdrop { - color: #1a1d21; } - -.unity-panel.menuitem, -.unity-panel .menuitem { - border-width: 0 1px; - color: #31363D; } - -.unity-panel.menubar, -.unity-panel .menubar { - color: #31363D; } - -.unity-panel.menu.menubar, -.unity-panel .menu .menubar { - background-color: #d5d5d5; - color: #31363D; } - -.unity-panel.menubar:backdrop, -.unity-panel .menubar *:backdrop { - color: #676a6f; } - -.unity-panel.menubar.menuitem, -.unity-panel.menubar .menuitem { - padding: 3px 5px; - border-width: 1px; - border-style: solid; - border: none; - background: none; - color: #31363D; - box-shadow: none; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem:hover { - border-radius: 0; - background-color: #ebebeb; - color: #31363D; - box-shadow: none; } - -.unity-panel.menubar .menuitem *:hover { - color: white; - box-shadow: none; } - -.unity-panel.menubar .menuitem.separator, -.unity-panel.menubar.menuitem.separator { - border: none; - color: #040407; } - -/* Force Quit */ -SheetStyleDialog.unity-force-quit { - background-color: #131520; } - -@keyframes playbackmenuitem_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } -.menu IdoPlaybackMenuItem.menuitem:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: playbackmenuitem_spinner 1s infinite linear; - color: #00A9A5; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid #040407; } - MsdOsdWindow.background.osd .progressbar { - background-color: #00A9A5; - border: none; - border-color: #00A9A5; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: rgba(0, 0, 0, 0.93); - border: none; - border-radius: 5px; } - -/*********************** - * App-Specific Styles * - ***********************/ -/********* - * Geary * - *********/ -.geary-titlebar-left .separator, -.geary-titlebar-right .separator { - opacity: 0; } - -ConversationListView { - -GtkTreeView-grid-line-width: 0; } - ConversationListView .view:active, ConversationListView iconview:active, ConversationListView .view:selected, ConversationListView iconview:selected { - background-color: #00A9A5; - color: #fefefe; } - ConversationListView .view:active:backdrop, ConversationListView iconview:active:backdrop, ConversationListView .view:selected:backdrop, ConversationListView iconview:selected:backdrop { - background-color: rgba(0, 169, 165, 0.6); - color: rgba(254, 254, 254, 0.5); } - ConversationListView .view .cell, ConversationListView iconview .cell { - border: solid rgba(0, 0, 0, 0.2); - border-width: 0 0 1px 0; } - ConversationListView .view .cell:selected, ConversationListView iconview .cell:selected { - color: #fefefe; - border: 0px solid #007673; } - -/*********** - * LightDm * - ***********/ -#panel_window { - background-color: #131520; - color: white; - font-weight: bold; - box-shadow: inset 0 -1px #06060a; } - #panel_window .menubar, - #panel_window .menubar > .menuitem - menubar, - #panel_window menubar > menuitem { - background-color: transparent; - color: white; - font-weight: bold; } - #panel_window .menubar .menuitem:disabled, - #panel_window menubar menuitem:disabled { - color: rgba(255, 255, 255, 0.5); } - #panel_window .menubar .menuitem:disabled GtkLabel, - #panel_window menubar menuitem:disabled GtkLabel { - color: inherit; } - #panel_window .menubar .menuitem:disabled label, - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window .menubar .menu > .menuitem, - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #BFC3C4; } - -#content_frame { - padding-bottom: 14px; - background-color: #0F111A; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - #content_frame button:hover { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #131520; - text-shadow: none; } - #content_frame button:active, #content_frame button:checked { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background: #00A9A5; - text-shadow: none; } - #content_frame button:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #0a0b11; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; } - -#buttonbox_frame button { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - -#login_window #user_combobox { - color: #BFC3C4; - font-size: 13px; } - #login_window #user_combobox .menu, - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nemo-window .places-treeview { - -NemoPlacesTreeView-disk-full-bg-color: #292f47; - -NemoPlacesTreeView-disk-full-fg-color: #FFCB6B; - -GtkTreeView-vertical-separator: 7; } - .nemo-window .places-treeview .view.cell:hover, .nemo-window .places-treeview iconview.cell:hover, - .nemo-window .places-treeview iconview.cell:hover { - background: rgba(8, 9, 13, 0.7); } - .nemo-window .places-treeview .view.cell:selected, .nemo-window .places-treeview iconview.cell:selected, - .nemo-window .places-treeview iconview.cell:selected { - background: rgba(8, 9, 13, 0.93); } -.nemo-window .sidebar { - color: #98abb2; - background-color: #0d0f17; } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar .iconview, .nemo-window .sidebar row { - background-color: transparent; } -.nemo-window .nemo-window-pane widget.entry { - background-clip: padding-box; - min-height: 28px; - padding: 5px; - color: #BFC3C4; - border: 1px solid #040407; - border-radius: 3px; - box-shadow: inset 0 1px rgba(0, 0, 0, 0.9), inset 1px 0 rgba(0, 0, 0, 0.96), inset -1px 0 rgba(0, 0, 0, 0.96), inset 0 -1px rgba(0, 0, 0, 0.98), 0 1px rgba(255, 255, 255, 0.6); } - .nemo-window .nemo-window-pane widget.entry:selected { - background-color: #00A9A5; - color: #fefefe; } -.nemo-window toolbar.primary-toolbar { - margin-bottom: -1px; - background: #0a0b11; } - .nemo-window toolbar.primary-toolbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - min-height: 24px; - padding: 3px; } - .nemo-window toolbar.primary-toolbar button:hover { - color: #fefefe; - border-radius: 0; - text-shadow: none; - background-image: linear-gradient(to bottom, #131520, #0F111A); } - .nemo-window toolbar.primary-toolbar button:selected, .nemo-window toolbar.primary-toolbar button:active, .nemo-window toolbar.primary-toolbar button:checked { - background-color: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .nemo-window toolbar.primary-toolbar button:selected:backdrop, .nemo-window toolbar.primary-toolbar button:active:backdrop, .nemo-window toolbar.primary-toolbar button:checked:backdrop { - color: rgba(254, 254, 254, 0.5); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; } - .nemo-window toolbar.primary-toolbar button:backdrop, .nemo-window toolbar.primary-toolbar button:disabled, .nemo-window toolbar.primary-toolbar button:backdrop:disabled { - color: rgba(191, 195, 196, 0.2); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; } -.nemo-window .nemo-inactive-pane .view, .nemo-window .nemo-inactive-pane iconview, -.nemo-window .nemo-inactive-pane iconview { - background-color: #0f111a; } - -/* thunar */ -.thunar toolbar { - background-color: #0a0b11; } - -/* buttons in toolbar */ -.thunar toolbar.horizontal button image { - -gtk-icon-transform: scale(0.72); } - -/* path-bar of thunar */ -window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button, -.thunar toolbar .path-bar-button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0; - border-right: 1px solid #040407; - border-left: none; - box-shadow: none; - min-height: 20px; - padding: 3px 4px; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:first-child, - .thunar toolbar .path-bar-button:first-child { - border-left: 1px solid #040407; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:last-child, - .thunar toolbar .path-bar-button:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-right-style: solid; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:only-child, - .thunar toolbar .path-bar-button:only-child { - border-radius: 4px; - border-style: solid; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:hover, - .thunar toolbar .path-bar-button:hover { - color: #00A9A5; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:checked, - .thunar toolbar .path-bar-button:checked { - background-color: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } -window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .toggle.path-bar-button:hover, -.thunar toolbar .toggle.path-bar-button:hover { - background-color: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - -/* thunar sidepane */ -.thunar scrolledwindow.sidebar treeview.view { - background: #0d0f17; - padding: 1.5px; - border-radius: 0; - box-shadow: none; } - .thunar scrolledwindow.sidebar treeview.view:hover, .thunar scrolledwindow.sidebar treeview.view:selected { - background: #1a1e2d; - color: #cccfd0; } - -.caja-notebook .frame { - border-width: 0 0 1px; } -.caja-notebook .entry { - background: #0F111A; - color: #BFC3C4; - border-color: #040407; } - .caja-notebook .entry:selected { - background: #00A9A5; - color: #fefefe; } - -/************** -* Caja sidebar * -**************/ -.caja-side-pane { - background: #0d0f17; } - .caja-side-pane .frame { - border-width: 1px 0 0; } - .caja-side-pane treeview.view, - .caja-side-pane textview.view text, - .caja-side-pane viewport.frame, - .caja-side-pane widget .vertical { - background: #0d0f17; - padding: 3px 2px; } - .caja-side-pane treeview.view:hover, - .caja-side-pane textview.view text:hover, - .caja-side-pane viewport.frame:hover, - .caja-side-pane widget .vertical:hover { - background-color: rgba(11, 13, 20, 0.95); } - .caja-side-pane treeview.view:selected, - .caja-side-pane textview.view text:selected, - .caja-side-pane viewport.frame:selected, - .caja-side-pane widget .vertical:selected { - color: #98abb2; - background: rgba(8, 9, 13, 0.93); } - .caja-side-pane treeview.view:selected:hover, - .caja-side-pane textview.view text:selected:hover, - .caja-side-pane viewport.frame:selected:hover, - .caja-side-pane widget .vertical:selected:hover { - background: rgba(8, 9, 13, 0.93); - color: #fff; } - -/************** -* Caja pathbar * -**************/ -.caja-navigation-window paned { - background: #131520; } - -.caja-navigation-window .primary-toolbar { - background: #0a0b11; } - .caja-navigation-window .primary-toolbar button, .caja-navigation-window .primary-toolbar button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .caja-navigation-window .primary-toolbar button:hover, .caja-navigation-window .primary-toolbar button:active, .caja-navigation-window .primary-toolbar button:backdrop:active, .caja-navigation-window .primary-toolbar button:backdrop:checked { - background: #00A9A5; - box-shadow: none; } - .caja-navigation-window .primary-toolbar button:hover, .caja-navigation-window .primary-toolbar button:hover label, .caja-navigation-window .primary-toolbar button:active, .caja-navigation-window .primary-toolbar button:active label, .caja-navigation-window .primary-toolbar button:backdrop:active, .caja-navigation-window .primary-toolbar button:backdrop:active label, .caja-navigation-window .primary-toolbar button:backdrop:checked, .caja-navigation-window .primary-toolbar button:backdrop:checked label { - color: #fefefe; } - -.caja-pathbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0px; - border-right: 1px solid #040407; - border-left: none; - box-shadow: none; - min-height: 20px; - padding: 3px 5px; - margin-right: -3px; } - .caja-pathbar button:first-child { - border-left: 1px solid #040407; } - .caja-pathbar button:hover { - color: #00A9A5; } - .caja-pathbar button:checked { - background-color: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - -/*# sourceMappingURL=gtk-dark.css.map */ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/gtk.css b/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/gtk.css deleted file mode 100755 index 31be7bb..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/gtk.css +++ /dev/null @@ -1,6321 +0,0 @@ -/*$selected_bg_color: #00e8c6;06d6a0*/ -/* GTK NAMED COLORS - ---------------- - use responsibly! */ -/* widget text/foreground color */ -@define-color theme_fg_color #BFC3C4; -/* text color for entries, views and content in general */ -@define-color theme_text_color #BFC3C4; -/* widget base background color */ -@define-color theme_bg_color #0F111A; -/* text widgets and the like base background color */ -@define-color theme_base_color #131520; -/* base background color of selections */ -@define-color theme_selected_bg_color #00A9A5; -/* text/foreground color of selections */ -@define-color theme_selected_fg_color #fefefe; -/* base background color of disabled widgets */ -@define-color insensitive_bg_color #151722; -/* text foreground color of disabled widgets */ -@define-color insensitive_fg_color #676a6f; -/* disabled text widgets and the like base background color */ -@define-color insensitive_base_color #131520; -/* widget text/foreground color on backdrop windows */ -@define-color theme_unfocused_fg_color #676a6f; -/* text color for entries, views and content in general on backdrop windows */ -@define-color theme_unfocused_text_color #BFC3C4; -/* widget base background color on backdrop windows */ -@define-color theme_unfocused_bg_color #0F111A; -/* text widgets and the like base background color on backdrop windows */ -@define-color theme_unfocused_base_color #151724; -/* base background color of selections on backdrop windows */ -@define-color theme_unfocused_selected_bg_color #00A9A5; -/* text/foreground color of selections on backdrop windows */ -@define-color theme_unfocused_selected_fg_color #fefefe; -/* widgets main borders color */ -@define-color borders #040407; -/* widgets main borders color on backdrop windows */ -@define-color unfocused_borders #050509; -/* these are pretty self explicative */ -@define-color warning_color #f4663c; -@define-color error_color #ff3a5b; -@define-color success_color #56ceff; -@define-color fg_color #BFC3C4; -@define-color text_color #BFC3C4; -@define-color bg_color #0F111A; -@define-color base_color #131520; -@define-color selected_bg_color #00A9A5; -@define-color selected_fg_color #fefefe; -@define-color unfocused_fg_color #676a6f; -@define-color unfocused_text_color #BFC3C4; -@define-color unfocused_bg_color #0F111A; -@define-color unfocused_base_color #151724; -@define-color unfocused_selected_bg_color #00A9A5; -@define-color unfocused_selected_fg_color #fefefe; -/* 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 shade(#BFC3C4, 1.8); -@define-color wm_unfocused_title #676a6f; -@define-color wm_highlight rgba(0, 0, 0, 0); -@define-color wm_borders_edge rgba(255, 255, 255, 0.1); -@define-color wm_bg_a shade(#0F111A, 1.2); -@define-color wm_bg_b #0F111A; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_border alpha(black, 0.18); -@define-color wm_button_hover_color_a shade(#0F111A, 1.3); -@define-color wm_button_hover_color_b #0F111A; -@define-color wm_button_active_color_a shade(#0F111A, 0.85); -@define-color wm_button_active_color_b shade(#0F111A, 0.89); -@define-color wm_button_active_color_c shade(#0F111A, 0.9); -@define-color content_view_bg #131520; -@define-color text_view_bg #131520; -@define-color budgie_tasklist_indicator_color #00A9A5; -@define-color budgie_tasklist_indicator_color_active #00A9A5; -@define-color placeholder_text_color #9da1a4; -@define-color STRAWBERRY_100 #ff8c82; -@define-color STRAWBERRY_300 #ed5353; -@define-color STRAWBERRY_500 #c6262e; -@define-color STRAWBERRY_700 #a10705; -@define-color STRAWBERRY_900 #7a0000; -@define-color ORANGE_100 #ffc27d; -@define-color ORANGE_300 #ffa154; -@define-color ORANGE_500 #f37329; -@define-color ORANGE_700 #cc3b02; -@define-color ORANGE_900 #a62100; -@define-color BANANA_100 #fff394; -@define-color BANANA_300 #ffe16b; -@define-color BANANA_500 #f9c440; -@define-color BANANA_700 #d48e15; -@define-color BANANA_900 #ad5f00; -@define-color LIME_100 #d1ff82; -@define-color LIME_300 #9bdb4d; -@define-color LIME_500 #68b723; -@define-color LIME_700 #3a9104; -@define-color LIME_900 #206b00; -@define-color MINT_100 #89ffdd; -@define-color MINT_300 #43d6b5; -@define-color MINT_500 #28bca3; -@define-color MINT_700 #0e9a83; -@define-color MINT_900 #007367; -@define-color BLUEBERRY_100 #8cd5ff; -@define-color BLUEBERRY_300 #64baff; -@define-color BLUEBERRY_500 #3689e6; -@define-color BLUEBERRY_700 #0d52bf; -@define-color BLUEBERRY_900 #002e99; -@define-color BUBBLEGUM_100 #fe9ab8; -@define-color BUBBLEGUM_300 #f4679d; -@define-color BUBBLEGUM_500 #de3e80; -@define-color BUBBLEGUM_700 #bc245d; -@define-color BUBBLEGUM_900 #910e38; -@define-color GRAPE_100 #e4c6fa; -@define-color GRAPE_300 #cd9ef7; -@define-color GRAPE_500 #a56de2; -@define-color GRAPE_700 #7239b3; -@define-color GRAPE_900 #452981; -@define-color COCOA_100 #a3907c; -@define-color COCOA_300 #8a715e; -@define-color COCOA_500 #715344; -@define-color COCOA_700 #57392d; -@define-color COCOA_900 #3d211b; -@define-color SILVER_100 #fafafa; -@define-color SILVER_300 #d4d4d4; -@define-color SILVER_500 #abacae; -@define-color SILVER_700 #7e8087; -@define-color SILVER_900 #555761; -@define-color SLATE_100 #95a3ab; -@define-color SLATE_300 #667885; -@define-color SLATE_500 #485a6c; -@define-color SLATE_700 #273445; -@define-color SLATE_900 #0e141f; -@define-color BLACK_100 #666; -@define-color BLACK_300 #4d4d4d; -@define-color BLACK_500 #333; -@define-color BLACK_700 #1a1a1a; -@define-color BLACK_900 #000; -/***************** -* Drawing mixins * -*****************/ -/********* -* Common * -*********/ -* { - padding: 0; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #ff3a5b; - -GtkScrolledWindow-scrollbar-spacing: 0; - -GtkToolItemGroup-expander-size: 11; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 24; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - outline-color: rgba(191, 195, 196, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - -gtk-outline-radius: 2px; - -gtk-secondary-caret-color: #00A9A5; } - -/*********** - * Widgets * - ***********/ -/*************** -* Action bars * -***************/ -.action-bar { - background-color: black; - border: solid #040407; - border-width: 1px 0 0 0; - color: #BFC3C4; - box-shadow: none; } - .action-bar:backdrop { - background-color: black; - box-shadow: none; - -gtk-icon-effect: dim; } - .action-bar:first-child { - border-radius: 6px 6px 0px 0px; - border-width: 1px 1px 0px 1px; } - .action-bar:last-child { - border-radius: 0 0 6px 6px; - border-width: 0px 1px 1px 1px; } - -/********************* - * App Notifications * - *********************/ -.app-notification, -.app-notification.frame { - padding: 10px; - border-radius: 0 0 5px 5px; - background-color: rgba(8, 9, 13, 0.93); - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 2px); - background-clip: padding-box; } - .app-notification:backdrop, - .app-notification.frame:backdrop { - background-image: none; - transition: 200ms ease-out; } - .app-notification border, - .app-notification.frame border { - border: none; } - -/*************** - * Base States * - ***************/ -.background { - color: #BFC3C4; - background-color: #0F111A; } - .background:backdrop { - color: #676a6f; - background-color: #0F111A; - text-shadow: none; - -gtk-icon-shadow: none; } - -/* - 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. -*/ -selection { - background-color: #00A9A5; - color: #fefefe; } - -*:disabled { - -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - color: #BFC3C4; - background-color: #0F111A; } - .gtkstyle-fallback:hover { - color: #BFC3C4; - background-color: #22263a; } - .gtkstyle-fallback:active { - color: #BFC3C4; - background-color: black; } - .gtkstyle-fallback:disabled { - color: #676a6f; - background-color: #151722; } - .gtkstyle-fallback:selected { - color: #fefefe; - background-color: #00A9A5; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #BFC3C4; - background-color: #131520; } - .view:backdrop, iconview:backdrop, - .view text:backdrop, - iconview text:backdrop, - textview text:backdrop { - color: #9da1a4; - background-color: #151724; } - .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected { - border-radius: 3px; } - -textview border { - background-color: #11131d; } - -.rubberband, -rubberband, -flowbox rubberband, -.content-view rubberband, -treeview.view rubberband { - border: 1px solid #007673; - background-color: rgba(0, 118, 115, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 3px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label { - caret-color: currentColor; } - label.separator { - color: #BFC3C4; } - label.separator:backdrop { - color: #676a6f; } - label selection { - background-color: #00A9A5; - color: #fefefe; } - label:disabled { - color: #676a6f; } - label:disabled:backdrop { - color: #2b314b; } - label:backdrop { - color: #676a6f; } - -.dim-label, label.separator, .titlebar .subtitle, -headerbar .subtitle { - opacity: 0.55; - text-shadow: none; } - -assistant .sidebar { - background-color: #131520; - border-top: 1px solid #040407; } - assistant .sidebar:backdrop { - background-color: #151724; - border-color: #050509; } -assistant.csd .sidebar { - border-top-style: none; } -assistant .sidebar label { - padding: 6px 12px; } -assistant .sidebar label.highlight { - background-color: #32353c; } - -.app-notification, -.app-notification.frame, .osd .scale-popup, .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier, .csd popover.background.osd, popover.background.osd, .osd { - color: #BFC3C4; - border: none; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - outline-color: rgba(191, 195, 196, 0.3); - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .app-notification:backdrop, .osd .scale-popup:backdrop, popover.background.touch-selection:backdrop, popover.background.magnifier:backdrop, popover.background.osd:backdrop, .osd:backdrop { - text-shadow: none; - -gtk-icon-shadow: none; } - -*:selected { - background: #00A9A5; - color: #fefefe; } - -/*********** - * Buttons * - ***********/ -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#00f6f0), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#00A9A5), to(transparent)); } } -notebook > header > tabs > arrow, -button { - min-height: 20px; - min-width: 16px; - padding: 2px 6px; - border: 1px solid #040407; - border-radius: 4px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - notebook > header > tabs > arrow, - button.flat { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - transition: none; } - notebook > header > tabs > arrow:hover, - button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 500ms; - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:hover:active, - button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - notebook > header > tabs > arrow:hover, - button:hover { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; - -gtk-icon-effect: highlight; } - notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, - button:active, - button:checked { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background: #00908c; - text-shadow: none; - transition-duration: 50ms; } - notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:backdrop, - button:backdrop.flat, - button:backdrop { - color: #9da1a4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #151724; - text-shadow: none; - transition: 200ms ease-out; - -gtk-icon-effect: none; } - notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, - button:backdrop.flat:active, - button:backdrop.flat:checked, - button:backdrop:active, - button:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, - button:backdrop.flat:active label, - button:backdrop.flat:checked label, - button:backdrop:active label, - button:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - notebook > header > tabs > arrow:backdrop:disabled, notebook > header > tabs > arrow:backdrop:disabled, - button:backdrop.flat:disabled, - button:backdrop:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, - button:backdrop.flat:disabled:active, - button:backdrop.flat:disabled:checked, - button:backdrop:disabled:active, - button:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:disabled, notebook > header > tabs > arrow:backdrop:disabled, - button.flat:backdrop, - button.flat:disabled, - button.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - notebook > header > tabs > arrow:disabled, - button:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - notebook > header > tabs > arrow:disabled:active, notebook > header > tabs > arrow:disabled:checked, - button:disabled:active, - button:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:disabled:active label, notebook > header > tabs > arrow:disabled:checked label, - button:disabled:active label, - button:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - notebook > header > tabs > arrow.image-button, - button.image-button { - min-width: 24px; - padding-left: 4px; - padding-right: 4px; } - notebook > header > tabs > arrow.image-button.circular, notebook > header > tabs > arrow.image-button.sidebar-button, - button.image-button.circular, - button.image-button.sidebar-button { - padding: 6px 4px; - border-radius: 50px; - box-shadow: none; } - notebook > header > tabs > arrow.text-button, - button.text-button { - padding-left: 16px; - padding-right: 16px; } - notebook > header > tabs > arrow.text-button.image-button, - button.text-button.image-button { - padding-left: 8px; - padding-right: 8px; - border-radius: 2px; } - notebook > header > tabs > arrow.text-button.image-button label, - button.text-button.image-button label { - padding-left: 8px; - padding-right: 8px; } - combobox:drop(active) button.combo, notebook > header > tabs > arrow:drop(active), - button:drop(active) { - color: #00A9A5; - border-color: #00A9A5; - box-shadow: inset 0 0 0 1px #00A9A5; } -row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled) { - color: #fefefe; - border-color: transparent; } - row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop { - color: #676a6f; } -button.osd { - min-width: 24px; - min-height: 20px; - color: #BFC3C4; - border-radius: 5px; - outline-color: rgba(191, 195, 196, 0.3); - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd.image-button { - min-width: 32px; } - button.osd:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd:active, - button.osd:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd:disabled:backdrop, - button.osd:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - border: none; } - button.osd:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - border: none; } -.app-notification button, -.app-notification.frame button, .csd popover.background.touch-selection button, .csd popover.background.magnifier button, popover.background.touch-selection button, popover.background.magnifier button, -.osd button { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, - .osd button:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:active:backdrop, popover.background.touch-selection button:active:backdrop, popover.background.magnifier button:active:backdrop, .app-notification button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .app-notification button:checked:backdrop, popover.background.touch-selection button:checked:backdrop, popover.background.magnifier button:checked:backdrop, .app-notification button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, - .osd button:active:backdrop, - .osd button:active, - .osd button:checked:backdrop, - .osd button:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:disabled:backdrop, popover.background.touch-selection button:disabled:backdrop, popover.background.magnifier button:disabled:backdrop, .app-notification button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, - .osd button:disabled:backdrop, - .osd button:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button:backdrop, popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop, - .osd button:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button.flat, popover.background.touch-selection button.flat, popover.background.magnifier button.flat, - .osd button.flat { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - box-shadow: none; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .app-notification button.flat:hover, popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover, - .osd button.flat:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button.flat:disabled, popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled, - .osd button.flat:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - background-image: none; - border-color: transparent; - box-shadow: none; } - .app-notification button.flat:backdrop, popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop, - .osd button.flat:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button.flat:active, popover.background.touch-selection button.flat:active, popover.background.magnifier button.flat:active, .app-notification button.flat:checked, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked, - .osd button.flat:active, - .osd button.flat:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } -button.suggested-action { - border: none; - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .selection-mode button.titlebutton, button.suggested-action.flat { - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - button.suggested-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:active, button.suggested-action:checked { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #F78C6C; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop, button.suggested-action:backdrop, button.suggested-action.flat:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop label, button.suggested-action:backdrop label, button.suggested-action.flat:backdrop label { - color: rgba(255, 255, 255, 0.5); } - .selection-mode button.titlebutton:backdrop:active, .selection-mode button.titlebutton:backdrop:checked, button.suggested-action:backdrop:active, button.suggested-action:backdrop:checked, button.suggested-action.flat:backdrop:active, button.suggested-action.flat:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop:active label, .selection-mode button.titlebutton:backdrop:checked label, button.suggested-action:backdrop:active label, button.suggested-action:backdrop:checked label, button.suggested-action.flat:backdrop:active label, button.suggested-action.flat:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - .selection-mode button.titlebutton:backdrop:disabled, button.suggested-action:backdrop:disabled, button.suggested-action.flat:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop:disabled label, button.suggested-action:backdrop:disabled label, button.suggested-action.flat:backdrop:disabled label { - color: rgba(255, 255, 255, 0.5); } - .selection-mode button.titlebutton:backdrop:disabled:active, .selection-mode button.titlebutton:backdrop:disabled:checked, button.suggested-action:backdrop:disabled:active, button.suggested-action:backdrop:disabled:checked, button.suggested-action.flat:backdrop:disabled:active, button.suggested-action.flat:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - .selection-mode button.titlebutton:backdrop, .selection-mode button.titlebutton:disabled, .selection-mode button.titlebutton:backdrop:disabled, button.suggested-action.flat:backdrop, button.suggested-action.flat:disabled, button.suggested-action.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(247, 140, 108, 0.8); } - button.suggested-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:disabled:active, button.suggested-action:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:disabled:active label, button.suggested-action:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - .osd button.suggested-action { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(247, 140, 108, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(247, 140, 108, 0.7), rgba(247, 140, 108, 0.7)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:active:backdrop, .osd button.suggested-action:active, .osd button.suggested-action:checked:backdrop, .osd button.suggested-action:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, #F78C6C, #F78C6C); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:disabled:backdrop, .osd button.suggested-action:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd button.suggested-action:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(247, 140, 108, 0.5), rgba(247, 140, 108, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -button.destructive-action { - border: none; - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #FF5370, #FF5370); } - button.destructive-action.flat { - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - button.destructive-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:active, button.destructive-action:checked { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop, button.destructive-action.flat:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop label, button.destructive-action.flat:backdrop label { - color: rgba(255, 255, 255, 0.5); } - button.destructive-action:backdrop:active, button.destructive-action:backdrop:checked, button.destructive-action.flat:backdrop:active, button.destructive-action.flat:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - button.destructive-action:backdrop:active label, button.destructive-action:backdrop:checked label, button.destructive-action.flat:backdrop:active label, button.destructive-action.flat:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - button.destructive-action:backdrop:disabled, button.destructive-action.flat:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop:disabled label, button.destructive-action.flat:backdrop:disabled label { - color: rgba(255, 255, 255, 0.5); } - button.destructive-action:backdrop:disabled:active, button.destructive-action:backdrop:disabled:checked, button.destructive-action.flat:backdrop:disabled:active, button.destructive-action.flat:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - button.destructive-action.flat:backdrop, button.destructive-action.flat:disabled, button.destructive-action.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(255, 32, 70, 0.8); } - button.destructive-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:disabled:active, button.destructive-action:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:disabled:active label, button.destructive-action:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - .osd button.destructive-action { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(255, 32, 70, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(255, 32, 70, 0.7), rgba(255, 32, 70, 0.7)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:active:backdrop, .osd button.destructive-action:active, .osd button.destructive-action:checked:backdrop, .osd button.destructive-action:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, #ff2046, #ff2046); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:disabled:backdrop, .osd button.destructive-action:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd button.destructive-action:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(255, 32, 70, 0.5), rgba(255, 32, 70, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -.stack-switcher > button { - outline-offset: -3px; } - .stack-switcher > button > label { - padding-left: 6px; - padding-right: 6px; } - .stack-switcher > button > image { - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - padding-bottom: 3px; } - .stack-switcher > button.text-button { - padding-left: 10px; - padding-right: 10px; } - .stack-switcher > button.image-button { - padding-left: 2px; - padding-right: 2px; } - .stack-switcher > button.needs-attention:active > label, - .stack-switcher > button.needs-attention:active > image, .stack-switcher > button.needs-attention:checked > label, - .stack-switcher > button.needs-attention:checked > image { - animation: none; - background-image: none; } -.inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } -.primary-toolbar button, .primary-toolbar .raised button { - -gtk-icon-shadow: none; } - .primary-toolbar button:hover, .primary-toolbar button:focus, .primary-toolbar .raised button:hover, .primary-toolbar .raised button:focus { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; } - -.stack-switcher > button.needs-attention > label, -.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#00f6f0), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.45, to(rgba(0, 0, 0, 0.9356862745)), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > button.needs-attention > label:backdrop, - .stack-switcher > button.needs-attention > image:backdrop, stacksidebar row.needs-attention > label:backdrop { - background-size: 6px 6px, 0 0; } - .stack-switcher > button.needs-attention > label:dir(rtl), - .stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 2px; } - -toolbar button:hover { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } -toolbar button:active { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - -.inline-toolbar toolbutton > button { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .inline-toolbar toolbutton > button:hover { - color: #fefefe; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #f1f1f1; } - .inline-toolbar toolbutton > button:disabled { - color: #9da1a4; } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(241, 241, 241, 0.3); } - .inline-toolbar toolbutton > button:backdrop { - color: #9da1a4; } - .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked { - color: #f1f1f1; } - .inline-toolbar toolbutton > button:backdrop:disabled { - color: #9da1a4; } - .inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked { - color: rgba(241, 241, 241, 0.3); } - -toolbar.inline-toolbar toolbutton > button.flat:backdrop, -toolbar.inline-toolbar toolbutton:backdrop > button.flat:backdrop { - border-color: transparent; - box-shadow: none; } - -.inline-toolbar button, .inline-toolbar button:backdrop, .linked > button, .linked > button:hover, .linked > button:active, .linked > button:checked, .linked > button:backdrop, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > -entry, .linked > combobox > box > button.combo:dir(ltr), .linked > combobox > box > button.combo:dir(rtl) { - border: 1px solid #040407; - border-radius: 0; - border-right-style: none; - box-shadow: none; } - .inline-toolbar button:disabled, .linked > button:disabled, .linked:not(.vertical) > spinbutton:disabled:not(.vertical), .linked:not(.vertical) > - entry:disabled, .linked > combobox > box > button.combo:disabled:dir(ltr), .linked > combobox > box > button.combo:disabled:dir(rtl) { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; - color: #676a6f; } - -.inline-toolbar button:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > -entry:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } -.inline-toolbar button:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > -entry:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } -.inline-toolbar button:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > -entry:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > button, .linked.vertical > button:hover, .linked.vertical > button:active, .linked.vertical > button:checked, .linked.vertical > button:backdrop, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > -entry, .linked.vertical > combobox > box > button.combo { - border-style: solid solid none solid; - border-radius: 0; } - -.linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > -entry:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } -.linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > -entry:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-style: solid; } -.linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > -entry:only-child { - border-radius: 3px; - border-style: solid; } - -modelbutton.flat, popover.background checkbutton, -popover.background radiobutton, -.menuitem.button.flat, modelbutton.flat:backdrop, popover.background checkbutton:backdrop, -popover.background radiobutton:backdrop, modelbutton.flat:backdrop:hover, popover.background checkbutton:backdrop:hover, -popover.background radiobutton:backdrop:hover, -.menuitem.button.flat:backdrop, -.menuitem.button.flat:backdrop:hover, calendar.button, calendar.button:hover, calendar.button:backdrop, calendar.button:disabled, button:link, -button:visited, button:link:hover, button:link:active, button:link:checked, -button:visited:hover, -button:visited:active, -button:visited:checked, .scale-popup button:hover, .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - -/* menu buttons */ -modelbutton.flat, popover.background checkbutton, -popover.background radiobutton, -.menuitem.button.flat { - min-height: 26px; - padding-left: 5px; - padding-right: 5px; - border-radius: 3px; - outline-offset: -2px; } - modelbutton.flat:hover, popover.background checkbutton:hover, - popover.background radiobutton:hover, - .menuitem.button.flat:hover { - background-color: #181c2a; } - modelbutton.flat check:last-child, popover.background checkbutton check:last-child, - popover.background radiobutton check:last-child, - modelbutton.flat radio:last-child, - popover.background checkbutton radio:last-child, - popover.background radiobutton radio:last-child, - .menuitem.button.flat check:last-child, - .menuitem.button.flat radio:last-child { - margin-left: 8px; } - modelbutton.flat check:first-child, popover.background checkbutton check:first-child, - popover.background radiobutton check:first-child, - modelbutton.flat radio:first-child, - popover.background checkbutton radio:first-child, - popover.background radiobutton radio:first-child, - .menuitem.button.flat check:first-child, - .menuitem.button.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow, popover.background checkbutton arrow, -popover.background radiobutton arrow { - background: none; } - modelbutton.flat arrow:hover, popover.background checkbutton arrow:hover, - popover.background radiobutton arrow:hover { - background: none; } - modelbutton.flat arrow.left, popover.background checkbutton arrow.left, - popover.background radiobutton arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - modelbutton.flat arrow.right, popover.background checkbutton arrow.right, - popover.background radiobutton arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - -button.color { - padding: 4px; } - button.color colorswatch:only-child, button.color colorswatch:only-child overlay { - border-radius: 0; } - -notebook button, list button, .view button, iconview button, popover button { - box-shadow: none; } - notebook button:backdrop, list button:backdrop, .view button:backdrop, iconview button:backdrop, popover button:backdrop { - box-shadow: none; } -notebook .linked > button, list .linked > button, .view .linked > button, iconview .linked > button, popover .linked > button { - box-shadow: none; } - -/************ - * Calendar * - ***********/ -calendar { - color: #BFC3C4; - border: 1px solid #040407; } - calendar:selected { - border-radius: 3px; } - calendar.header { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0; } - calendar.header:backdrop { - border-color: rgba(0, 0, 0, 0.1); } - calendar.button { - color: rgba(191, 195, 196, 0.45); } - calendar.button:hover { - color: #BFC3C4; } - calendar.button:backdrop { - color: rgba(103, 106, 111, 0.45); } - calendar.button:disabled { - color: rgba(103, 106, 111, 0.45); } - calendar:indeterminate, calendar:indeterminate:backdrop { - color: alpha(currentColor,0.55); } - calendar.highlight, calendar.highlight:backdrop { - font-size: smaller; - color: #BFC3C4; } - calendar:backdrop { - color: #9da1a4; - border-color: #050509; } - -/************************* - * Check and Radio Items * - *************************/ -check { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-dark.png"), url("../assets/radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-hover-dark.png"), url("../assets/checkbox-unchecked-hover-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-hover-dark.png"), url("../assets/radio-unchecked-hover-dark@2.png")); - -gtk-icon-shadow: none; } - -check:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-active-dark.png"), url("../assets/checkbox-unchecked-active-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-active-dark.png"), url("../assets/radio-unchecked-active-dark@2.png")); - -gtk-icon-shadow: none; } - -check:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-backdrop-dark.png"), url("../assets/checkbox-unchecked-backdrop-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-backdrop-dark.png"), url("../assets/radio-unchecked-backdrop-dark@2.png")); - -gtk-icon-shadow: none; } - -check:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-dark.png"), url("../assets/radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-hover-dark.png"), url("../assets/checkbox-checked-hover-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-hover-dark.png"), url("../assets/radio-checked-hover-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-active-dark.png"), url("../assets/checkbox-checked-active-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active-dark.png"), url("../assets/radio-checked-active-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-backdrop-dark.png"), url("../assets/checkbox-checked-backdrop-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-backdrop-dark.png"), url("../assets/radio-checked-backdrop-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive-dark@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed.png"), url("../assets/checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed.png"), url("../assets/radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-hover.png"), url("../assets/checkbox-mixed-hover@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-hover.png"), url("../assets/radio-mixed-hover@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-active.png"), url("../assets/checkbox-mixed-active@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-backdrop.png"), url("../assets/checkbox-mixed-backdrop@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-backdrop.png"), url("../assets/radio-mixed-backdrop@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked-dark@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check, iconview.content-view check, -.view.content-view.check, -iconview.content-view.check { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio, iconview.content-view radio, -.view.content-view.radio, -iconview.content-view.radio { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked.png"), url("../assets/radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:hover, iconview.content-view check:hover, -.view.content-view.check:hover, -iconview.content-view.check:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-hover.png"), url("../assets/checkbox-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:hover, iconview.content-view radio:hover, -.view.content-view.radio:hover, -iconview.content-view.radio:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-hover.png"), url("../assets/radio-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:active, iconview.content-view check:active, -.view.content-view.check:active, -iconview.content-view.check:active { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-active.png"), url("../assets/checkbox-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:active, iconview.content-view radio:active, -.view.content-view.radio:active, -iconview.content-view.radio:active { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-active.png"), url("../assets/radio-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:backdrop, iconview.content-view check:backdrop, -.view.content-view.check:backdrop, -iconview.content-view.check:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop.png"), url("../assets/checkbox-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:backdrop, iconview.content-view radio:backdrop, -.view.content-view.radio:backdrop, -iconview.content-view.radio:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop.png"), url("../assets/radio-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:disabled, iconview.content-view check:disabled, -.view.content-view.check:disabled, -iconview.content-view.check:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-insensitive.png"), url("../assets/checkbox-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:disabled, iconview.content-view radio:disabled, -.view.content-view.radio:disabled, -iconview.content-view.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-insensitive.png"), url("../assets/radio-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:disabled:backdrop, iconview.content-view check:disabled:backdrop, -.view.content-view.check:disabled:backdrop, -iconview.content-view.check:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop-insensitive.png"), url("../assets/checkbox-unchecked-backdrop-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:disabled:backdrop, iconview.content-view radio:disabled:backdrop, -.view.content-view.radio:disabled:backdrop, -iconview.content-view.radio:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop-insensitive.png"), url("../assets/radio-unchecked-backdrop-insensitive@2.png")); - -gtk-icon-shadow: none; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child { - margin-left: 4px; } - checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - margin: 0 4px; - min-height: 16px; - min-width: 16px; - border: none; } - menu menuitem check, menu menuitem - radio { - margin: 0; } - menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem - radio, menu menuitem - radio:hover, menu menuitem - radio:disabled { - min-height: 14px; - min-width: 14px; - background-image: none; - background-color: transparent; - box-shadow: none; - -gtk-icon-shadow: none; - color: inherit; - border-color: currentColor; - animation: none; } - -/***************** - * Color Chooser * - *****************/ -colorswatch, colorswatch:drop(active) { - border-style: none; } -colorswatch.top { - border-top-left-radius: 5.5px; - border-top-right-radius: 5.5px; } - colorswatch.top overlay { - border-top-left-radius: 5px; - border-top-right-radius: 5px; } -colorswatch.bottom { - border-bottom-left-radius: 5.5px; - border-bottom-right-radius: 5.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 5.5px; - border-bottom-left-radius: 5.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 5px; - border-bottom-left-radius: 5px; } -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 5.5px; - border-bottom-right-radius: 5.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 5px; - border-bottom-right-radius: 5px; } -colorswatch.dark overlay { - color: #fefefe; } - colorswatch.dark overlay:hover { - border-color: #040407; } - colorswatch.dark overlay:backdrop { - color: rgba(254, 254, 254, 0.5); } -colorswatch.light overlay { - color: #BFC3C4; } - colorswatch.light overlay:hover { - border-color: #040407; } - colorswatch.light overlay:backdrop { - color: #9da1a4; } -colorswatch:drop(active) { - box-shadow: none; } - colorswatch:drop(active).light overlay { - border-color: #00A9A5; - box-shadow: inset 0 0 0 2px #040407, inset 0 0 0 1px #00A9A5; } - colorswatch:drop(active).dark overlay { - border-color: #00A9A5; - box-shadow: inset 0 0 0 2px #040407, inset 0 0 0 1px #00A9A5; } -colorswatch overlay { - box-shadow: inset 0 3px 2px -2px rgba(0, 0, 0, 0.5); - border: 1px solid #040407; } - colorswatch overlay:hover { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.3); } - colorswatch overlay:backdrop, colorswatch overlay:backdrop:hover { - border-color: #040407; - box-shadow: none; } -colorswatch#add-color-button { - border-radius: 5px 5px 0 0; } - colorswatch#add-color-button:only-child { - border-radius: 5px; } - colorswatch#add-color-button overlay { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - colorswatch#add-color-button overlay:hover { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #131520; - text-shadow: none; } - colorswatch#add-color-button overlay:backdrop { - color: #9da1a4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #151724; - text-shadow: none; } -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } -row:selected colorswatch { - box-shadow: 0 0 0 2px #fefefe; } -colorswatch#editor-color-sample { - border-radius: 4px; } - colorswatch#editor-color-sample overlay { - border-radius: 4.5px; } - -colorchooser .popover.osd { - border-radius: 5px; } - -/************** - * ComboBoxes * - **************/ -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } -combobox:drop(active) { - box-shadow: none; } - -/*********** - * Dialogs * - ***********/ -messagedialog .titlebar:not(headerbar) { - background-color: rgba(15, 17, 26, 0.95); } -messagedialog .titlebar { - min-height: 20px; - background-image: none; - background-color: rgba(15, 17, 26, 0.95); - border-style: none; - border-top-left-radius: 4px; - border-top-right-radius: 4px; } -messagedialog.csd.background { - background-color: rgba(15, 17, 26, 0.95); - color: #BFC3C4; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } -messagedialog.csd .dialog-action-area button { - padding: 10px 14px; - border-radius: 0; - border-left-style: solid; - border-right-style: none; - border-bottom-style: none; - background-color: transparent; - color: #BFC3C4; - box-shadow: none; } - messagedialog.csd .dialog-action-area button:hover { - background-color: rgba(0, 169, 165, 0.9); - color: white; } - messagedialog.csd .dialog-action-area button:first-child { - border-left-style: none; - border-bottom-left-radius: 4px; } - messagedialog.csd .dialog-action-area button:last-child { - border-bottom-right-radius: 4px; } - messagedialog.csd .dialog-action-area button.destructive-action, messagedialog.csd .dialog-action-area button.suggested-action { - color: white; } - -filechooser .dialog-action-box { - border-top: 1px solid #040407; } - filechooser .dialog-action-box:backdrop { - border-top-color: #050509; } -filechooser #pathbarbox { - border-bottom: 1px solid #0F111A; } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -/**************** - * Text Entries * - ****************/ -spinbutton:not(.vertical), entry { - min-height: 28px; - padding-left: 8px; - padding-right: 8px; - border: 1px solid; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; } - spinbutton:not(.vertical) image.left, - entry image.left { - padding-left: 0; - padding-right: 6px; } - spinbutton:not(.vertical) image.right, - entry image.right { - padding-left: 6px; - padding-right: 0; } - spinbutton:not(.vertical) undershoot.left, - entry undershoot.left { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-left: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: left center; - border: none; - box-shadow: none; } - spinbutton:not(.vertical) undershoot.right, - entry undershoot.right { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-right: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: right center; - border: none; - box-shadow: none; } - spinbutton.flat:focus:not(.vertical), spinbutton.flat:not(.vertical), - entry.flat:focus, - entry.flat { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - box-shadow: none; - border-radius: 0; } - spinbutton:focus:not(.vertical), - entry:focus { - border-color: #007673; } - spinbutton:disabled:not(.vertical), - entry:disabled { - color: #676a6f; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - box-shadow: none; } - spinbutton:backdrop:not(.vertical), - entry:backdrop { - color: #9da1a4; - border-color: #050509; - background-color: #151724; - box-shadow: none; - transition: 200ms ease-out; } - spinbutton:backdrop:disabled:not(.vertical), - entry:backdrop:disabled { - color: #2b314b; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - box-shadow: none; } - spinbutton.error:not(.vertical), - entry.error { - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; - color: #ff3a5b; - border-color: #860017; } - spinbutton.error:focus:not(.vertical), - entry.error:focus { - border-color: #860017; } - spinbutton.error:selected:focus:not(.vertical), spinbutton.error:selected:not(.vertical), - entry.error:selected:focus, - entry.error:selected { - background-color: #ff3a5b; } - spinbutton.warning:not(.vertical), - entry.warning { - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; - color: #f4663c; - border-color: #772006; } - spinbutton.warning:focus:not(.vertical), - entry.warning:focus { - border-color: #772006; } - spinbutton.warning:selected:focus:not(.vertical), spinbutton.warning:selected:not(.vertical), - entry.warning:selected:focus, - entry.warning:selected { - background-color: #f4663c; } - spinbutton:not(.vertical) image, - entry image { - color: #9da0a3; } - spinbutton:not(.vertical) image:hover, - entry image:hover { - color: #BFC3C4; } - spinbutton:not(.vertical) image:active, - entry image:active { - color: #00A9A5; } - spinbutton:not(.vertical) image:backdrop, - entry image:backdrop { - color: #575960; } - spinbutton:drop(active):focus:not(.vertical), spinbutton:drop(active):not(.vertical), - entry:drop(active):focus, - entry:drop(active) { - border-color: #00A9A5; - box-shadow: inset 0 0 0 1px #00A9A5; } - .osd spinbutton:not(.vertical), - .osd entry { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(4, 4, 7, 0.5); - box-shadow: none; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:focus:not(.vertical), - .osd entry:focus { - color: #BFC3C4; - border-color: #00A9A5; - background-color: rgba(4, 4, 7, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:backdrop:not(.vertical), - .osd entry:backdrop { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(4, 4, 7, 0.5); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd spinbutton:disabled:not(.vertical), - .osd entry:disabled { - color: #646669; - border-color: #040407; - background-color: rgba(26, 28, 31, 0.5); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -spinbutton:not(.vertical) progress, -entry progress { - margin: 2px -6px; - background-color: transparent; - background-image: none; - border-radius: 0; - border-width: 0 0 2px; - border-color: #00A9A5; - border-style: solid; - box-shadow: none; } - spinbutton:not(.vertical) progress:backdrop, - entry progress:backdrop { - background-color: transparent; } -.linked:not(.vertical) > spinbutton:focus:not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:focus:not(.vertical) + button, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > -entry:focus + spinbutton:not(.vertical), .linked:not(.vertical) > -entry:focus + button, .linked:not(.vertical) > -entry:focus + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + -entry, .linked:not(.vertical) > -entry:focus + -entry { - border-left-color: #007673; } -.linked:not(.vertical) > spinbutton:focus:not(.vertical), .linked:not(.vertical) > -entry:focus { - border-color: #007673; } -.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + button, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > -entry:drop(active) + spinbutton:not(.vertical), .linked:not(.vertical) > -entry:drop(active) + button, .linked:not(.vertical) > -entry:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + -entry, .linked:not(.vertical) > -entry:drop(active) + -entry { - border-left-color: #00A9A5; } -.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled), .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):not(.vertical), .linked.vertical > -entry:not(:disabled) + entry:not(:disabled), .linked.vertical > -entry:not(:disabled) + spinbutton:not(:disabled):not(.vertical) { - border-top-color: #0f1019; - background-image: linear-gradient(to bottom, #131520, #131520); } - .linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled):backdrop, .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):backdrop:not(.vertical), .linked.vertical > - entry:not(:disabled) + entry:not(:disabled):backdrop, .linked.vertical > - entry:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical) { - border-top-color: #10121c; - background-image: linear-gradient(to bottom, #151724, #151724); } -.linked.vertical > spinbutton:disabled:not(.vertical) + spinbutton:disabled:not(.vertical), .linked.vertical > spinbutton:disabled:not(.vertical) + entry:disabled, .linked.vertical > -entry:disabled + spinbutton:disabled:not(.vertical), .linked.vertical > -entry:disabled + entry:disabled { - border-top-color: #0f1019; } -.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus:not(:only-child):not(.vertical), -.linked.vertical > spinbutton:not(.vertical) + entry:focus:not(:only-child), .linked.vertical > -entry + spinbutton:focus:not(:only-child):not(.vertical), -.linked.vertical > -entry + entry:focus:not(:only-child) { - border-top-color: #007673; } -.linked.vertical > spinbutton:not(.vertical) + spinbutton:drop(active):not(:only-child):not(.vertical), -.linked.vertical > spinbutton:not(.vertical) + entry:drop(active):not(:only-child), .linked.vertical > -entry + spinbutton:drop(active):not(:only-child):not(.vertical), -.linked.vertical > -entry + entry:drop(active):not(:only-child) { - border-top-color: #00A9A5; } -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + spinbutton:not(.vertical), -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + entry, -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + button, -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > -entry:focus:not(:only-child) + spinbutton:not(.vertical), -.linked.vertical > -entry:focus:not(:only-child) + entry, -.linked.vertical > -entry:focus:not(:only-child) + button, -.linked.vertical > -entry:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #007673; } -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + spinbutton:not(.vertical), -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + entry, -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + button, -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > -entry:drop(active):not(:only-child) + spinbutton:not(.vertical), -.linked.vertical > -entry:drop(active):not(:only-child) + entry, -.linked.vertical > -entry:drop(active):not(:only-child) + button, -.linked.vertical > -entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-top-color: #00A9A5; } - -treeview entry:focus:dir(rtl), treeview entry:focus:dir(ltr) { - background-color: #131520; - transition-property: color, background; } -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #131520; } - treeview entry.flat:focus, treeview entry:focus { - border-color: #00A9A5; } - -/************* - * Expanders * - *************/ -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: white; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -/**************** - * Floating Bar * - ****************/ -.floating-bar { - background-color: #0F111A; - border-width: 1px; - border-style: solid solid none; - border-color: #040407; - border-radius: 3px 3px 0 0; - box-shadow: none; } - .floating-bar.bottom.left { - border-left-style: none; - border-top-left-radius: 0; } - .floating-bar.bottom.right { - border-right-style: none; - border-top-right-radius: 0; } - .floating-bar > button { - padding: 4px; } - .floating-bar:backdrop { - background-color: #0F111A; - border-color: #050509; } - -/********** - * Frames * - **********/ -frame > border, -.frame { - box-shadow: none; - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #040407; } - frame > border.flat, - .frame.flat { - border-style: none; } - frame > border:backdrop, - .frame:backdrop { - border-color: #050509; } - -actionbar > revealer > box { - padding: 6px; - border-top: 1px solid #040407; } - actionbar > revealer > box:backdrop { - border-color: #050509; } - -scrolledwindow viewport.frame { - border-style: none; } -scrolledwindow overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(black), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(191, 195, 196, 0.13)), to(rgba(191, 195, 196, 0))); - background-size: 100% 5%, 100% 100%; - background-repeat: no-repeat; - background-position: center top; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.top:backdrop { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(#050509), to(rgba(5, 5, 9, 0))); - background-size: 100% 5%; - background-repeat: no-repeat; - background-position: center top; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.bottom { - background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(black), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(191, 195, 196, 0.13)), to(rgba(191, 195, 196, 0))); - background-size: 100% 5%, 100% 100%; - background-repeat: no-repeat; - background-position: center bottom; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.bottom:backdrop { - background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#050509), to(rgba(5, 5, 9, 0))); - background-size: 100% 5%; - background-repeat: no-repeat; - background-position: center bottom; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.left { - background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(black), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(191, 195, 196, 0.13)), to(rgba(191, 195, 196, 0))); - background-size: 5% 100%, 100% 100%; - background-repeat: no-repeat; - background-position: left center; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.left:backdrop { - background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(#050509), to(rgba(5, 5, 9, 0))); - background-size: 5% 100%; - background-repeat: no-repeat; - background-position: left center; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.right { - background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(black), to(rgba(0, 0, 0, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(191, 195, 196, 0.13)), to(rgba(191, 195, 196, 0))); - background-size: 5% 100%, 100% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.right:backdrop { - background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(#050509), to(rgba(5, 5, 9, 0))); - background-size: 5% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow undershoot.top { - background-color: transparent; - background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-top: 1px; - background-size: 10px 1px; - background-repeat: repeat-x; - background-origin: content-box; - background-position: center top; - border: none; - box-shadow: none; } -scrolledwindow undershoot.bottom { - background-color: transparent; - background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-bottom: 1px; - background-size: 10px 1px; - background-repeat: repeat-x; - background-origin: content-box; - background-position: center bottom; - border: none; - box-shadow: none; } -scrolledwindow undershoot.left { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-left: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: left center; - border: none; - box-shadow: none; } -scrolledwindow undershoot.right { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-right: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: right center; - border: none; - box-shadow: none; } -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #040407 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #11131d; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - scrolledwindow junction:backdrop { - border-image-source: linear-gradient(to bottom, #050509 1px, transparent 1px); - background-color: #090b10; - transition: 200ms ease-out; } - -separator { - background: rgba(0, 0, 0, 0.1); } - -/************ - * Popovers * - ************/ -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 8px; - -GraniteWidgetsPopOver-border-width: 0; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid #131520; - background: #131520; - color: #BFC3C4; } - GraniteWidgetsPopOver .button { - background-image: none; - background: none; - border: none; } - GraniteWidgetsPopOver .button:active, GraniteWidgetsPopOver .button:active:hover { - color: #00A9A5; } - GraniteWidgetsPopOver > .frame { - border: none; } - GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar { - border: none; - background: none; } - -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.popover_bg { - background-color: #131520; - background-image: none; - border: 1px solid #131520; - color: #BFC3C4; } - -/*********** - * Welcome * - **********/ -GraniteWidgetsWelcome { - background-color: #131520; } - GraniteWidgetsWelcome GtkLabel { - color: #BFC3C4; } - GraniteWidgetsWelcome .h1, GraniteWidgetsWelcome .h3 { - color: rgba(191, 195, 196, 0.8); } - -/************** -* Source List * -***************/ -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; - background-color: #0F111A; - border: solid #040407; - color: #BFC3C4; - border-right-width: 1px; } - .source-list .category-expander { - color: transparent; } - .source-list .badge { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - color: #0F111A; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - .source-list .badge:selected:backdrop, .source-list .badge:selected:hover:backdrop { - background-color: rgba(0, 0, 0, 0.2); - color: #06060a; } - .source-list row, - .source-list .list-row { - border: none; - padding: 0; } - .source-list row > GtkLabel, - .source-list row > label, - .source-list .list-row > GtkLabel, - .source-list .list-row > label { - padding-left: 6px; - padding-right: 6px; } - -/************** -* Text Styles * -**************/ -.h1 { - font-size: 24px; } - -.h2 { - font-weight: 300; - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - font-size: 12px; - padding: 6px; - color: rgba(191, 195, 196, 0.3); - font-weight: bold; - text-shadow: 0 1px rgba(255, 255, 255, 0.2); } - -/************** -* Storage Bar * -**************/ -.storage-bar .trough { - border: none; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); - background-image: none; - background-color: transparent; - padding: 8px 6px; } -.storage-bar .fill-block { - background-color: #FFCB6B; - border: none; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); - transition: all 200ms ease-in-out; - padding: 8px 6px; } - .storage-bar .fill-block:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - border-left-width: 1px; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } - .storage-bar .fill-block:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset -1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } - .storage-bar .fill-block.empty-block { - background-color: #131520; } - .storage-bar .fill-block.app { - background-color: #82AAFF; } - .storage-bar .fill-block.audio { - background-color: #F78C6C; } - .storage-bar .fill-block.photo { - background-color: #FF5370; } - .storage-bar .fill-block.video { - background-color: #C792EA; } - .storage-bar .fill-block .legend { - padding: 12px; - border-radius: 4px; } - -/*************** - * Header bars * - ***************/ -.titlebar:not(headerbar), .titlebar, headerbar { - padding: 0 13px; - min-height: 34px; - background: #0a0b11; - color: #BFC3C4; - border-radius: 0; } - .titlebar:backdrop, - headerbar:backdrop { - border-color: #050509; - transition: 200ms ease-out; } - .titlebar .title, - headerbar .title { - font-weight: bold; - padding-left: 12px; - padding-right: 12px; } - .titlebar .subtitle, - headerbar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .titlebar entry, - headerbar entry { - min-height: 24px; } - .titlebar button, - headerbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - min-height: 20px; - margin-top: 5px; - margin-bottom: 5px; - box-shadow: none; } - .titlebar button.image-button, - headerbar button.image-button { - padding: 3px 4px; } - .titlebar button.suggested-action, - headerbar button.suggested-action { - box-shadow: none; - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.suggested-action:disabled, .titlebar button.suggested-action:disabled:backdrop, .titlebar button.suggested-action:backdrop, - headerbar button.suggested-action:disabled, - headerbar button.suggested-action:disabled:backdrop, - headerbar button.suggested-action:backdrop { - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.suggested-action:disabled:hover, .titlebar button.suggested-action:disabled:active, .titlebar button.suggested-action:disabled:checked, .titlebar button.suggested-action:disabled:backdrop:hover, .titlebar button.suggested-action:disabled:backdrop:active, .titlebar button.suggested-action:disabled:backdrop:checked, .titlebar button.suggested-action:backdrop:hover, .titlebar button.suggested-action:backdrop:active, .titlebar button.suggested-action:backdrop:checked, - headerbar button.suggested-action:disabled:hover, - headerbar button.suggested-action:disabled:active, - headerbar button.suggested-action:disabled:checked, - headerbar button.suggested-action:disabled:backdrop:hover, - headerbar button.suggested-action:disabled:backdrop:active, - headerbar button.suggested-action:disabled:backdrop:checked, - headerbar button.suggested-action:backdrop:hover, - headerbar button.suggested-action:backdrop:active, - headerbar button.suggested-action:backdrop:checked { - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.appmenu, - headerbar button.appmenu { - background: transparent; } - .titlebar button.appmenu:backdrop, - headerbar button.appmenu:backdrop { - background: transparent; } - .titlebar button:hover, .titlebar button:active, .titlebar button:checked, - headerbar button:hover, - headerbar button:active, - headerbar button:checked { - background-color: transparent; - color: #00A9A5; - box-shadow: none; } - .titlebar button:backdrop, .titlebar button:disabled, .titlebar button:backdrop:disabled, - headerbar button:backdrop, - headerbar button:disabled, - headerbar button:backdrop:disabled { - color: rgba(191, 195, 196, 0.2); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; - background-image: linear-gradient(to bottom, #0d0f17, #0d0f17); - border: 1px solid #040407; - border-radius: 4px; } - .titlebar button:backdrop:hover, .titlebar button:backdrop:active, .titlebar button:backdrop:checked, - headerbar button:backdrop:hover, - headerbar button:backdrop:active, - headerbar button:backdrop:checked { - background-color: transparent; - color: #00A9A5; - box-shadow: none; } - .titlebar button.suggested-action, - headerbar button.suggested-action { - font-weight: bold; - min-height: 14px; - margin-top: 5px; - margin-bottom: 5px; - border-radius: 4px; - font-weight: normal; - color: white; - background-color: #191c2c; - text-shadow: none; - box-shadow: none; } - .titlebar button.suggested-action:hover, - headerbar button.suggested-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:active, - headerbar button.suggested-action:active { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:disabled, - headerbar button.suggested-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:disabled label, - headerbar button.suggested-action:disabled label { - color: rgba(255, 255, 255, 0.5); } - .titlebar button.suggested-action:backdrop, - headerbar button.suggested-action:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; - border-radius: 3px; } - .titlebar button.suggested-action:backdrop:disabled, - headerbar button.suggested-action:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.destructive-action, - headerbar button.destructive-action { - font-weight: bold; - min-height: 14px; - margin-top: 5px; - margin-bottom: 5px; - border-radius: 4px; - font-weight: normal; - color: white; - background-color: #191c2c; - text-shadow: none; - box-shadow: none; } - .titlebar button.destructive-action:hover, - headerbar button.destructive-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:active, - headerbar button.destructive-action:active { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:disabled, - headerbar button.destructive-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:disabled label, - headerbar button.destructive-action:disabled label { - color: rgba(255, 255, 255, 0.5); } - .titlebar button.destructive-action:backdrop, - headerbar button.destructive-action:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; - border-radius: 3px; } - .titlebar button.destructive-action:backdrop:disabled, - headerbar button.destructive-action:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.titlebutton, - headerbar button.titlebutton { - color: transparent; - box-shadow: none; - border: none; - background-color: transparent; - background-repeat: no-repeat; } - .titlebar button.titlebutton:hover, .titlebar button.titlebutton:active, .titlebar button.titlebutton:checked, .titlebar button.titlebutton:backdrop, .titlebar button.titlebutton:backdrop:hover, .titlebar button.titlebutton *, - headerbar button.titlebutton:hover, - headerbar button.titlebutton:active, - headerbar button.titlebutton:checked, - headerbar button.titlebutton:backdrop, - headerbar button.titlebutton:backdrop:hover, - headerbar button.titlebutton * { - color: transparent; - box-shadow: none; - background-color: transparent; } - .titlebar .linked > button, .titlebar .path-bar-box button, - .titlebar headerbar .linked > button, - headerbar .path-bar-box .titlebar button, .titlebar .linked > button:hover, - .titlebar .linked > button:backdrop, - .titlebar headerbar .linked > button, - headerbar .path-bar-box .titlebar button, - headerbar .titlebar .linked > button, - headerbar .linked > button, - headerbar .titlebar .path-bar-box button, - .titlebar .path-bar-box headerbar button, - headerbar .path-bar-box button, - headerbar .titlebar .linked > button:hover, - .titlebar headerbar .linked > button:hover, - headerbar .titlebar .linked > button:backdrop, - .titlebar headerbar .linked > button:backdrop, - headerbar .linked > button:hover, - headerbar .linked > button:backdrop { - border-radius: 0; - border-right-style: none; - box-shadow: none; - margin: 5px 0px; - min-height: 20px; } - .titlebar .linked > button:first-child, .titlebar .path-bar-box button:first-child, - .titlebar headerbar .linked > button:first-child, - headerbar .path-bar-box .titlebar button:first-child, - headerbar .titlebar .linked > button:first-child, - headerbar .linked > button:first-child, - .titlebar .path-bar-box headerbar button:first-child, - headerbar .path-bar-box button:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - .titlebar .linked > button:last-child, .titlebar .path-bar-box button:last-child, - .titlebar headerbar .linked > button:last-child, - headerbar .path-bar-box .titlebar button:last-child, - headerbar .titlebar .linked > button:last-child, - headerbar .linked > button:last-child, - .titlebar .path-bar-box headerbar button:last-child, - headerbar .path-bar-box button:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-right-style: solid; } - .titlebar .linked > button:only-child, .titlebar .path-bar-box button:only-child, - .titlebar headerbar .linked > button:only-child, - headerbar .path-bar-box .titlebar button:only-child, - headerbar .titlebar .linked > button:only-child, - headerbar .linked > button:only-child, - .titlebar .path-bar-box headerbar button:only-child, - headerbar .path-bar-box button:only-child { - border-radius: 4px; - border-style: solid; } - .titlebar .linked > button:active, - .titlebar headerbar .linked > button:active, .titlebar .path-bar-box button:active, - headerbar .path-bar-box .titlebar button:active, .titlebar .linked > button:checked, - .titlebar headerbar .linked > button:checked, .titlebar .path-bar-box button:checked, - headerbar .path-bar-box .titlebar button:checked, - headerbar .titlebar .linked > button:active, - headerbar .linked > button:active, - .titlebar .path-bar-box headerbar button:active, - headerbar .path-bar-box button:active, - headerbar .titlebar .linked > button:checked, - headerbar .linked > button:checked, - .titlebar .path-bar-box headerbar button:checked, - headerbar .path-bar-box button:checked { - background: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .titlebar .linked > button:active:backdrop, - .titlebar headerbar .linked > button:active:backdrop, .titlebar .path-bar-box button:active:backdrop, - headerbar .path-bar-box .titlebar button:active:backdrop, .titlebar .linked > button:checked:backdrop, - .titlebar headerbar .linked > button:checked:backdrop, .titlebar .path-bar-box button:checked:backdrop, - headerbar .path-bar-box .titlebar button:checked:backdrop, - headerbar .titlebar .linked > button:active:backdrop, - headerbar .linked > button:active:backdrop, - .titlebar .path-bar-box headerbar button:active:backdrop, - headerbar .path-bar-box button:active:backdrop, - headerbar .titlebar .linked > button:checked:backdrop, - headerbar .linked > button:checked:backdrop, - .titlebar .path-bar-box headerbar button:checked:backdrop, - headerbar .path-bar-box button:checked:backdrop { - color: rgba(254, 254, 254, 0.5); } - .titlebar .linked > button:active:backdrop label, .titlebar .path-bar-box button:active:backdrop label, - headerbar .path-bar-box .titlebar button:active:backdrop label, .titlebar .linked > button:checked:backdrop label, .titlebar .path-bar-box button:checked:backdrop label, - headerbar .path-bar-box .titlebar button:checked:backdrop label, - headerbar .linked > button:active:backdrop label, - .titlebar .path-bar-box headerbar button:active:backdrop label, - headerbar .path-bar-box button:active:backdrop label, - headerbar .linked > button:checked:backdrop label, - .titlebar .path-bar-box headerbar button:checked:backdrop label, - headerbar .path-bar-box button:checked:backdrop label { - color: rgba(254, 254, 254, 0.5); } - .titlebar .path-bar-box .dim-label, .titlebar .path-bar-box label.separator, .titlebar .path-bar-box .subtitle, - headerbar .path-bar-box .dim-label, - headerbar .path-bar-box label.separator, - headerbar .path-bar-box .subtitle { - color: transparent; - margin-right: -6px; } - .titlebar .path-bar-box button:last-child, - headerbar .path-bar-box button:last-child { - margin-left: -1px; - border-radius: 0px; } - .titlebar .path-bar-box button:last-child:active, .titlebar .path-bar-box button:last-child:checked, - headerbar .path-bar-box button:last-child:active, - headerbar .path-bar-box button:last-child:checked { - border-radius: 0px 4px 4px 0px; } - .titlebar .path-bar-box button:first-child, - headerbar .path-bar-box button:first-child { - border-radius: 4px 0px 0px 4px; } - .titlebar .path-bar-box button:first-child:active, .titlebar .path-bar-box button:first-child:checked, - headerbar .path-bar-box button:first-child:active, - headerbar .path-bar-box button:first-child:checked { - border-radius: 4px; } - .titlebar .path-bar-box widget > .text-button:last-child, - headerbar .path-bar-box widget > .text-button:last-child { - border-radius: 0px 4px 4px 0px; - background: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .titlebar .path-bar-box widget > .text-button:last-child:backdrop, .titlebar .path-bar-box widget > .text-button:last-child:backdrop label, - headerbar .path-bar-box widget > .text-button:last-child:backdrop, - headerbar .path-bar-box widget > .text-button:last-child:backdrop label { - color: rgba(254, 254, 254, 0.5); } - .titlebar .path-bar-box widget > .text-button:last-child:only-child, - headerbar .path-bar-box widget > .text-button:last-child:only-child { - border-radius: 4px; } - .titlebar .path-buttons-box, - headerbar .path-buttons-box { - background-color: #0F111A; - border: 1px solid #040407; - min-height: 20px; - margin-top: 5px; - margin-bottom: 5px; } - .titlebar .path-buttons-box button > .horizontal > .dim-label, .titlebar .path-buttons-box button > .horizontal > label.separator, .titlebar .path-buttons-box button > .horizontal > .subtitle, - headerbar .path-buttons-box button > .horizontal > .dim-label, - headerbar .path-buttons-box button > .horizontal > label.separator, - headerbar .path-buttons-box button > .horizontal > .subtitle { - color: #BFC3C4; - padding: 3px 12px; - margin: 0; } - .titlebar .path-buttons-box button > .horizontal > image.dim-label, .titlebar .path-buttons-box button > .horizontal > image.subtitle, - headerbar .path-buttons-box button > .horizontal > image.dim-label, - headerbar .path-buttons-box button > .horizontal > image.subtitle { - padding: 3px 0px 3px 12px; } - .titlebar .path-buttons-box button, - headerbar .path-buttons-box button { - background: transparent; - border: none; - margin: 0; - padding: 0; } - .titlebar .path-buttons-box .current-dir label, - headerbar .path-buttons-box .current-dir label { - color: #cccfd0; - border-bottom: 1px solid #00A9A5; - padding: 3px 12px; } - .titlebar .path-buttons-box button.current-dir:only-child, - headerbar .path-buttons-box button.current-dir:only-child { - padding: 3px 12px 0px 12px; } - .titlebar .path-buttons-box button.current-dir:only-child label, - headerbar .path-buttons-box button.current-dir:only-child label { - padding: 0px 12px 3px 12px; } - .selection-mode.titlebar button:backdrop.flat:active, .selection-mode.titlebar button:backdrop.flat:checked, .selection-mode.titlebar button:backdrop:active, .selection-mode.titlebar button:backdrop:checked, - headerbar.selection-mode button:backdrop.flat:active, - headerbar.selection-mode button:backdrop.flat:checked, - headerbar.selection-mode button:backdrop:active, - headerbar.selection-mode button:backdrop:checked { - border-color: #007673; } - .selection-mode.titlebar button:backdrop.flat:active label, .selection-mode.titlebar button:backdrop.flat:checked label, .selection-mode.titlebar button:backdrop:active label, .selection-mode.titlebar button:backdrop:checked label, - headerbar.selection-mode button:backdrop.flat:active label, - headerbar.selection-mode button:backdrop.flat:checked label, - headerbar.selection-mode button:backdrop:active label, - headerbar.selection-mode button:backdrop:checked label { - color: rgba(0, 169, 165, 0.6); } - .tiled .titlebar, .maximized .titlebar, - .tiled headerbar.titlebar, .maximized headerbar.titlebar { - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } - .tiled .titlebar:backdrop, .tiled .titlebar, .maximized .titlebar:backdrop, .maximized .titlebar, - .tiled headerbar:backdrop, - .tiled headerbar, .maximized headerbar:backdrop, .maximized headerbar { - border-radius: 0; } - .default-decoration.titlebar, headerbar.default-decoration { - padding: 5px 4px; - min-height: 20px; } - .default-decoration.titlebar button.titlebutton, headerbar.default-decoration button.titlebutton { - min-height: 20px; - min-width: 20px; - margin: 0; - padding: 0; } - -headerbar entry, -headerbar spinbutton, -headerbar separator { - margin-top: 5px; - margin-bottom: 5px; } -headerbar switch { - margin-top: 10px; - margin-bottom: 10px; } -headerbar separator { - background: transparent; } -headerbar viewswitcher > box.horizontal > button.radio, headerbar switcher > box.horizontal > button.radio { - margin: 0; - padding: 0; - border-radius: 0; } - headerbar viewswitcher > box.horizontal > button.radio image, headerbar switcher > box.horizontal > button.radio image { - margin-left: 7px; } - headerbar viewswitcher > box.horizontal > button.radio label, headerbar switcher > box.horizontal > button.radio label { - margin-right: 7px; } - -.background:not(.tiled):not(.maximized) .titlebar { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px rgba(0, 0, 0, 0.1); } - .background:not(.tiled):not(.maximized) .titlebar:backdrop, .background:not(.tiled):not(.maximized) .titlebar { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - -window:not(.tiled):not(.maximized) separator:first-child + headerbar:backdrop, window:not(.tiled):not(.maximized) separator:first-child + headerbar, window:not(.tiled):not(.maximized) headerbar:first-child:backdrop, window:not(.tiled):not(.maximized) headerbar:first-child { - border-top-left-radius: 4px; } -window:not(.tiled):not(.maximized) headerbar:last-child:backdrop, window:not(.tiled):not(.maximized) headerbar:last-child { - border-top-right-radius: 4px; } - -window { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - -window.csd > .titlebar:not(headerbar) { - padding: 0; - background-color: transparent; - background-image: none; - border-style: none; - border-color: transparent; - box-shadow: none; } -.titlebar:not(headerbar) > separator, .titlebar:not(headerbar) > separator:backdrop { - background: #0a0b11; } - -/************** - * GtkInfoBar * - **************/ -.info, .warning, .question, .error, -infobar { - text-shadow: none; - color: #BFC3C4; - background-color: #0F111A; - border-bottom: 1px solid black; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.15); } - -.info, .warning, .question, .error { - text-shadow: none; - color: #fefefe; - border: none; } - .info .label, .warning .label, .question .label, .error .label { - color: #fefefe; } - .info .label:backdrop, .warning .label:backdrop, .question .label:backdrop, .error .label:backdrop { - color: rgba(254, 254, 254, 0.5); } - .info button, .warning button, .question button, .error button { - border-radius: 2px; - border: none; - background: rgba(19, 21, 32, 0.98); - color: #BFC3C4; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2); } - .info button .label, .warning button .label, .question button .label, .error button .label { - color: #BFC3C4; } - .info button:active, .warning button:active, .question button:active, .error button:active { - background: #131520; - color: #BFC3C4; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); } - .info button:active:backdrop, .warning button:active:backdrop, .question button:active:backdrop, .error button:active:backdrop { - background: rgba(19, 21, 32, 0.8); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:hover, .warning button:hover, .question button:hover, .error button:hover, .info button:focus, .warning button:focus, .question button:focus, .error button:focus { - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); } - .info button:disabled, .warning button:disabled, .question button:disabled, .error button:disabled { - background: rgba(19, 21, 32, 0.6); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:disabled:backdrop, .warning button:disabled:backdrop, .question button:disabled:backdrop, .error button:disabled:backdrop { - background: rgba(19, 21, 32, 0.5); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:backdrop, .warning button:backdrop, .question button:backdrop, .error button:backdrop { - background: rgba(19, 21, 32, 0.8); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - -.info { - background-color: #C3E88D; } - .info:backdrop { - background-color: #d9f1b7; - color: rgba(254, 254, 254, 0.5); } - -.warning { - background-color: #f4663c; } - .warning:backdrop { - background-color: #f78c6c; - color: rgba(254, 254, 254, 0.5); } - -.question { - background-color: #89DDFF; } - .question:backdrop { - background-color: #bcecff; - color: rgba(254, 254, 254, 0.5); } - -.error { - background-color: #ff3a5b; } - .error:backdrop { - background-color: #ff6d85; - color: rgba(254, 254, 254, 0.5); } - -/************* - * Level Bar * - *************/ -levelbar block { - min-width: 32px; - min-height: 6px; } -levelbar.vertical block { - min-width: 6px; - min-height: 32px; } -levelbar:backdrop { - transition: 200ms ease-out; } -levelbar trough { - padding: 3px; - border-radius: 3px; - background-color: rgba(255, 255, 255, 0.2); - box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - levelbar trough:backdrop { - background-color: rgba(255, 255, 255, 0.06); - box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } -levelbar.horizontal.discrete block { - margin: 0 1px; } -levelbar.vertical.discrete block { - margin: 1px 0; } -levelbar block { - border-radius: 2px; } - levelbar block:backdrop { - box-shadow: none; } - levelbar block.low { - background-color: #f4663c; } - levelbar block.low:backdrop { - border-color: #f4663c; } - levelbar block.high, levelbar block:not(.empty) { - background-color: #89DDFF; } - levelbar block.high:backdrop, levelbar block:not(.empty):backdrop { - border-color: #89DDFF; } - levelbar block.full { - background-color: #56ceff; } - levelbar block.full:backdrop { - border-color: #56ceff; } - levelbar block.empty { - background-color: rgba(0, 0, 0, 0.35); - box-shadow: none; } - -/********* - * Links * - *********/ -*:link, button:link, -button:visited { - color: #82AAFF; } - *:link:visited, - button:visited { - color: rgba(130, 170, 255, 0.5); } - *:selected *:link:visited, *:selected button:visited:link, - *:selected button:visited { - color: #98dcda; } - *:link:hover, button:hover:link, - button:hover:visited { - color: #b5cdff; } - *:selected *:link:hover, *:selected button:hover:link, - *:selected button:hover:visited { - color: #e5f6f5; } - *:link:active, button:active:link, - button:active:visited { - color: #82AAFF; } - *:selected *:link:active, *:selected button:active:link, - *:selected button:active:visited { - color: #cbedec; } - *:link:backdrop:backdrop:hover, button:backdrop:backdrop:hover:link, - button:backdrop:backdrop:hover:visited, *:link:backdrop:backdrop:hover:selected, button:backdrop:backdrop:hover:selected:link, - button:backdrop:backdrop:hover:selected:visited, *:link:backdrop, button:backdrop:link, - button:backdrop:visited { - color: #00A9A5; } - *:link:selected, button:selected:link, - button:selected:visited, *:selected *:link, *:selected button:link, - *:selected button:visited { - color: #cbedec; } - -button:link, -button:visited { - text-shadow: none; } - button:link:hover, button:link:active, button:link:checked, - button:visited:hover, - button:visited:active, - button:visited:checked { - text-shadow: none; } - button:link > label, - button:visited > label { - text-decoration-line: underline; } - -/********* - * Lists * - *********/ -list { - color: #BFC3C4; - background-color: #131520; - border-color: #040407; } - list:backdrop { - background-color: #151724; - border-color: #050509; } - -row { - padding: 1px 11px; - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - row label { - padding-left: 8px; } - row:hover { - transition: none; } - row:backdrop { - transition: 200ms ease-out; } - row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(191, 195, 196, 0.05); } - row.activatable:active { - box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } - row.activatable:backdrop:hover { - background-color: transparent; } - row.activatable button.flat { - background-color: transparent; } - row.activatable:selected:active { - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } - row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: rgba(0, 169, 165, 0.5); } - row.activatable:selected:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - -/********* - * Menus * - *********/ -menubar, -.menubar { - background-color: #0a0b11; - color: #BFC3C4; - -GtkWidget-window-dragging: true; - padding: 0px; - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } - menubar > menuitem, - .menubar > menuitem { - min-height: 16px; - padding: 4px 8px; } - menubar > menuitem:hover, - .menubar > menuitem:hover { - box-shadow: inset 0 -3px #00A9A5; } - menubar > menuitem:disabled, - .menubar > menuitem:disabled { - color: #676a6f; - box-shadow: none; } - -menu, .menu, .context-menu { - margin: 4px; - padding: 2px 0px; - background: #0d0f17; - border: 1px solid #040407; - border-radius: 5px; - font: initial; } - .csd menu, - .csd .menu, - .csd .context-menu { - border: none; } - menu:backdrop, .menu:backdrop, .context-menu:backdrop { - background-color: #141622; } - menu menuitem, .menu menuitem, .context-menu menuitem { - min-height: 17px; - min-width: 40px; - padding: 4px 6px; - text-shadow: none; } - menu menuitem:hover, .menu menuitem:hover, .context-menu menuitem:hover { - color: #fefefe; - background-color: #00A9A5; } - menu menuitem:disabled, .menu menuitem:disabled, .context-menu menuitem:disabled { - color: #676a6f; } - menu menuitem:disabled:backdrop, .menu menuitem:disabled:backdrop, .context-menu menuitem:disabled:backdrop { - color: #2b314b; } - menu menuitem:backdrop, menu menuitem:backdrop:hover, .menu menuitem:backdrop, .menu menuitem:backdrop:hover, .context-menu menuitem:backdrop, .context-menu menuitem:backdrop:hover { - color: #676a6f; - background-color: transparent; } - menu menuitem arrow, .menu menuitem arrow, .context-menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), .menu menuitem arrow:dir(ltr), .context-menu menuitem arrow:dir(ltr) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - margin-left: 10px; } - 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: 10px; } - menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), .menu menuitem label:dir(rtl), .menu menuitem label:dir(ltr), .context-menu menuitem label:dir(rtl), .context-menu menuitem label:dir(ltr) { - color: inherit; } - -menuitem accelerator { - color: alpha(currentColor,0.55); } -menuitem check, -menuitem radio { - min-height: 16px; - min-width: 16px; } - menuitem check:dir(ltr), - menuitem radio:dir(ltr) { - margin-right: 7px; } - menuitem check:dir(rtl), - menuitem radio:dir(rtl) { - margin-left: 7px; } - -.csd.popup { - background: transparent; } - -/******** - * Misc * - ********/ -.content-view { - background-color: #020203; } - .content-view:hover { - -gtk-icon-effect: highlight; } - .content-view:backdrop { - background-color: #020203; } - -.osd .scale-popup button.flat { - border-style: none; - border-radius: 5px; } -.scale-popup button:hover { - background-color: rgba(191, 195, 196, 0.1); - border-radius: 5px; } - -/************ -* Assistant * -*************/ -assistant { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; } - assistant .sidebar { - background-color: #131520; - border-top: 1px solid #040407; - border-bottom-left-radius: 4px; } - assistant .sidebar:backdrop { - background-color: #151724; - border-color: #050509; } - assistant.csd .sidebar { - border-top-style: none; } - assistant .sidebar GtkLabel, - assistant .sidebar label { - padding: 6px 12px; } - assistant .sidebar GtkLabel.highlight, - assistant .sidebar label.highlight { - background-color: #32353c; } - -/************* - * Notebooks * - *************/ -notebook > header { - padding: 1px; - border-color: #040407; - border-width: 1px; - background-color: #090b10; } - notebook > header:backdrop { - border-color: #050509; - background-color: #0F111A; } - notebook > header tabs { - margin: 0px; } - notebook > header.top { - border-bottom-style: solid; } - notebook > header.top > tabs { - margin-bottom: -2px; } - notebook > header.top > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.top > tabs > tab:checked { - background-color: #131520; } - notebook > header.top > tabs > tab:checked:hover { - background-color: #131520; } - notebook > header.bottom { - border-top-style: solid; } - notebook > header.bottom > tabs { - margin-top: -2px; } - notebook > header.bottom > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.bottom > tabs > tab:checked { - background-color: #131520; - box-shadow: -1px 0 0 #040407, 0px 1px 0 #040407, 1px 0 0 #040407; } - notebook > header.left { - border-right-style: solid; } - notebook > header.left > tabs { - margin-right: -2px; } - notebook > header.left > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.left > tabs > tab:checked { - background-color: #131520; - box-shadow: 0px 1px 0 #040407, 0px -1px 0 #040407, 0px 1px 0 #040407; } - notebook > header.right { - border-left-style: solid; } - notebook > header.right > tabs { - margin-left: -2px; } - notebook > header.right > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.right > tabs > tab:checked { - background-color: #131520; - box-shadow: 0px 1px 0 #040407, 0px -1px 0 #040407, 1px 0 0 #040407; } - 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 { - margin-left: -5px; - margin-right: -5px; - padding-left: 4px; - padding-right: 4px; } - 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 { - border-left-style: none; } - notebook > header.right > tabs > arrow { - border-right-style: none; } - notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { - margin-top: -5px; - margin-bottom: -5px; - padding-top: 4px; - padding-bottom: 4px; } - 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: 14px; - min-width: 14px; - border-radius: 0; } - notebook > header > tabs > arrow:hover:not(:active):not(:backdrop) { - background-clip: padding-box; - background-image: none; - background-color: rgba(255, 255, 255, 0.3); - border-color: transparent; - box-shadow: none; } - notebook > header > tabs > arrow:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - notebook > header tab { - min-height: 24px; - min-width: 24px; - padding: 1px 12px; - outline-offset: -5px; - color: #676a6f; - font-weight: normal; - border-width: 1px; - border-color: transparent; } - notebook > header tab:hover { - color: #93979a; } - notebook > header tab:hover.reorderable-page { - border-color: rgba(4, 4, 7, 0.3); - background-color: rgba(15, 17, 26, 0.2); } - notebook > header tab:backdrop { - color: #44464d; } - notebook > header tab:backdrop.reorderable-page { - border-color: transparent; - background-color: transparent; } - notebook > header tab:checked { - color: #BFC3C4; - box-shadow: -1px 0 0 #040407, 0px -1px 0 #040407, 1px 0 0 #040407; } - notebook > header tab:checked.reorderable-page { - border-color: rgba(4, 4, 7, 0.5); - background-color: rgba(15, 17, 26, 0.5); } - notebook > header tab:checked.reorderable-page:hover { - background-color: rgba(15, 17, 26, 0.7); } - notebook > header tab:hover button.flat, notebook > header tab:checked button.flat, notebook > header tab:backdrop:checked button.flat { - color: alpha(currentColor,0.3); } - notebook > header tab:backdrop:checked { - color: #676a6f; } - notebook > header tab:backdrop:checked.reorderable-page { - border-color: #050509; - background-color: #151724; } - notebook > header tab button.flat { - padding: 0; - margin-top: 4px; - margin-bottom: 4px; - border: none; - background: transparent; - min-width: 20px; - min-height: 20px; } - notebook > header tab button.flat:hover { - background: transparent; - box-shadow: none; - color: #FF5370; } - notebook > header tab button.flat, notebook > header tab button.flat:backdrop { - border: none; - background: transparent; - color: alpha(currentColor,0); } - notebook > header tab button.flat:last-child { - margin-left: 4px; - margin-right: -4px; } - notebook > header tab button.flat:first-child { - margin-left: -4px; - margin-right: 4px; } - notebook > header.top tabs, notebook > header.bottom tabs { - padding-left: 0px; - padding-right: 0px; } - notebook > header.top tabs:not(:only-child), notebook > header.bottom tabs:not(:only-child) { - margin-left: 0.5px; - margin-right: 0.5px; } - notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { - margin-left: -1px; } - notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { - margin-right: -1px; } - notebook > header.top tabs tab, notebook > header.bottom tabs tab { - margin-left: 0.5px; - margin-right: 0.5px; } - notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { - border-style: none solid; } - notebook > header.left tabs, notebook > header.right tabs { - padding-top: 4px; - padding-bottom: 4px; } - notebook > header.left tabs:not(:only-child), notebook > header.right tabs:not(:only-child) { - margin-top: 3px; - margin-bottom: 3px; } - notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { - margin-top: -1px; } - notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { - margin-bottom: -1px; } - notebook > header.left tabs tab, notebook > header.right tabs tab { - margin-top: 4px; - margin-bottom: 4px; } - notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { - border-style: solid none; } - notebook > header.top tab { - padding-bottom: 1px; } - notebook > header.bottom tab { - padding-top: 1px; } -notebook > stack:not(:only-child) { - background-color: #131520; } - notebook > stack:not(:only-child):backdrop { - background-color: #151724; } - -/********* - * Paned * - *********/ -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: image(#040407); - background-size: 1px 1px; } - paned > separator:selected { - background-image: image(#00A9A5); } - paned > separator:backdrop { - background-image: image(#050509); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #0F111A; - background-image: image(#040407), image(#040407); - background-size: 1px 1px, 1px 1px; } - paned > separator.wide:backdrop { - background-color: #0F111A; - background-image: image(#050509), image(#050509); } -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; } - -/************ - * Pathbars * - ************/ -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 4px; - padding-right: 4px; } -.path-bar button.text-button.image-button label { - padding-left: 0; - padding-right: 0; } -.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child { - padding-right: 8px; } -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 8px; } -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } -.path-bar button.slider-button { - padding-left: 0; - padding-right: 0; } - -/*************** - * Popovers * - ***************/ -popover.background { - padding: 2px; - border-radius: 5px; - background: #0d0f17; - box-shadow: 0 4px 6px #040407; } - .csd popover.background, popover.background { - border: 1px solid #040407; } - popover.background:backdrop { - background-color: #0F111A; - box-shadow: none; } - popover.background > list, - popover.background > .view, - popover.background > iconview, - popover.background > toolbar { - border-style: none; - background-color: transparent; } - .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier { - border: 1px solid rgba(255, 255, 255, 0.1); } - popover.background separator { - margin: 3px; } - popover.background list separator { - margin: 0px; } - -/***************** - * Progress bars * - *****************/ -progressbar { - font-size: smaller; - color: rgba(191, 195, 196, 0.4); } - progressbar.horizontal trough, - progressbar.horizontal progress { - min-height: 6px; } - progressbar.vertical trough, - progressbar.vertical progress { - min-width: 6px; } - progressbar.horizontal progress { - margin: 0; } - progressbar.vertical progress { - margin: 0; } - progressbar:backdrop { - box-shadow: none; - transition: 200ms ease-out; } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - border-radius: 0; - background-color: transparent; - box-shadow: none; } - progressbar.osd progress { - border-style: none; - border-radius: 0; } - -/************ - * GtkScale * - ************/ -progressbar trough, scale trough, scale fill { - background-color: rgba(255, 255, 255, 0.14); - border: none; - border-radius: 3px; - margin: 0; } - progressbar trough:disabled, scale trough:disabled, scale fill:disabled { - background-color: rgba(255, 255, 255, 0.06); } - progressbar trough:backdrop, progressbar:backdrop trough, scale trough:backdrop, scale fill:backdrop { - background-color: rgba(255, 255, 255, 0.06); - transition: 200ms ease-out; } - progressbar trough:backdrop:disabled, progressbar:backdrop trough:disabled, scale trough:backdrop:disabled, scale fill:backdrop:disabled { - background-color: rgba(255, 255, 255, 0.06); } - -progressbar progress, scale highlight { - border: none; - background-color: #00A9A5; - border-radius: 3px; - margin: 0; } - progressbar progress:disabled, scale highlight:disabled { - border: none; - background-color: rgba(255, 255, 255, 0.14); } - progressbar progress:backdrop, progressbar:backdrop progress, scale highlight:backdrop, progressbar progress:active:backdrop, progressbar:backdrop progress:active, scale highlight:active:backdrop { - border-color: #00c3be; - background-color: #00c3be; } - progressbar progress:backdrop:disabled, progressbar:backdrop progress:disabled, scale highlight:backdrop:disabled, progressbar progress:active:backdrop:disabled, progressbar:backdrop progress:active:disabled, scale highlight:active:backdrop:disabled { - background-color: rgba(255, 255, 255, 0.06); } - -scale { - min-height: 16px; - min-width: 16px; - padding: 8px; } - scale.horizontal trough, - scale.horizontal progress { - min-height: 6px; } - scale.vertical trough, - scale.vertical progress { - min-width: 6px; } - scale slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - background-color: #131520; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); - border-radius: 12px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border, box-shadow; } - scale slider:active { - background-color: #00A9A5; } - scale slider:active:disabled { - background-color: #151722; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.05); } - scale.fine-tune.horizontal { - padding-top: 9px; - padding-bottom: 9px; - min-height: 16px; } - scale.fine-tune.vertical { - padding-left: 9px; - padding-right: 9px; - min-width: 16px; } - scale.fine-tune slider { - margin: -6px; } - scale.fine-tune fill, - scale.fine-tune highlight, - scale.fine-tune trough { - border-radius: 5px; - -gtk-outline-radius: 7px; } - scale trough { - outline-offset: 2px; - -gtk-outline-radius: 5px; - outline-color: transparent; } - scale fill:backdrop, scale fill { - background-color: #040407; } - scale fill:disabled:backdrop, scale fill:disabled { - border-color: transparent; - background-color: transparent; } - .osd scale fill { - background-color: #333436; } - .osd scale fill:disabled:backdrop, .osd scale fill:disabled { - border-color: transparent; - background-color: transparent; } - scale slider { - border-color: #d1d1d1; - border: none; - border-radius: 12px; - background-color: #d1d1d1; } - scale slider:active { - border-color: #007673; } - scale slider:disabled { - background-color: #a5a5a5; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale slider:backdrop, scale slider:backdrop:disabled { - transition: 200ms ease-out; - background-color: #a5a5a5; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - row:selected scale slider:disabled, row:selected scale slider { - border-color: #007673; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 6px; - margin-top: -12px; } - scale marks.bottom { - margin-top: 6px; - margin-bottom: -12px; } - scale marks.top { - margin-right: 6px; - margin-left: -12px; } - scale marks.bottom { - margin-left: 6px; - margin-right: -12px; } - scale.fine-tune marks.top { - margin-bottom: 6px; - margin-top: -9px; } - scale.fine-tune marks.bottom { - margin-top: 6px; - margin-bottom: -9px; } - scale.fine-tune marks.top { - margin-right: 6px; - margin-left: -9px; } - scale.fine-tune marks.bottom { - margin-left: 6px; - margin-right: -9px; } - scale.horizontal indicator { - min-height: 6px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 3px; } - scale.vertical indicator { - min-height: 1px; - min-width: 6px; } - scale.vertical.fine-tune indicator { - min-width: 3px; } - scale.horizontal.marks-before:not(.marks-after) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.color { - min-height: 0; - min-width: 0; } - scale.color trough { - background-image: image(#040407); - background-repeat: no-repeat; } - scale.color.horizontal { - padding: 0 0 15px 0; } - scale.color.horizontal trough { - padding-bottom: 4px; - background-position: 0 -3px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - scale.color.horizontal slider:dir(ltr):hover, scale.color.horizontal slider:dir(ltr):backdrop, scale.color.horizontal slider:dir(ltr):disabled, scale.color.horizontal slider:dir(ltr):backdrop:disabled, scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl):hover, scale.color.horizontal slider:dir(rtl):backdrop, scale.color.horizontal slider:dir(rtl):disabled, scale.color.horizontal slider:dir(rtl):backdrop:disabled, scale.color.horizontal slider:dir(rtl) { - margin-bottom: -15px; - margin-top: 6px; } - scale.color.vertical:dir(ltr) { - padding: 0 0 0 15px; } - scale.color.vertical:dir(ltr) trough { - padding-left: 4px; - background-position: 3px 0; - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - scale.color.vertical:dir(ltr) slider:hover, scale.color.vertical:dir(ltr) slider:backdrop, scale.color.vertical:dir(ltr) slider:disabled, scale.color.vertical:dir(ltr) slider:backdrop:disabled, scale.color.vertical:dir(ltr) slider { - margin-left: -15px; - margin-right: 6px; } - scale.color.vertical:dir(rtl) { - padding: 0 15px 0 0; } - scale.color.vertical:dir(rtl) trough { - padding-right: 4px; - background-position: -3px 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - scale.color.vertical:dir(rtl) slider:hover, scale.color.vertical:dir(rtl) slider:backdrop, scale.color.vertical:dir(rtl) slider:disabled, scale.color.vertical:dir(rtl) slider:backdrop:disabled, scale.color.vertical:dir(rtl) slider { - margin-right: -15px; - margin-left: 6px; } - scale.color.fine-tune.horizontal:dir(ltr), scale.color.fine-tune.horizontal:dir(rtl) { - padding: 0 0 12px 0; } - scale.color.fine-tune.horizontal:dir(ltr) trough, scale.color.fine-tune.horizontal:dir(rtl) trough { - padding-bottom: 7px; - background-position: 0 -6px; } - scale.color.fine-tune.horizontal:dir(ltr) slider, scale.color.fine-tune.horizontal:dir(rtl) slider { - margin-bottom: -15px; - margin-top: 6px; } - scale.color.fine-tune.vertical:dir(ltr) { - padding: 0 0 0 12px; } - scale.color.fine-tune.vertical:dir(ltr) trough { - padding-left: 7px; - background-position: 6px 0; } - scale.color.fine-tune.vertical:dir(ltr) slider { - margin-left: -15px; - margin-right: 6px; } - scale.color.fine-tune.vertical:dir(rtl) { - padding: 0 12px 0 0; } - scale.color.fine-tune.vertical:dir(rtl) trough { - padding-right: 7px; - background-position: -6px 0; } - scale.color.fine-tune.vertical:dir(rtl) slider { - margin-right: -15px; - margin-left: 6px; } - -/************** - * Scrollbars * - **************/ -scrollbar { - background-color: #11131d; - transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - * { - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; } - scrollbar.top { - border-bottom: 1px solid #040407; } - scrollbar.bottom { - border-top: 1px solid #040407; } - scrollbar.left { - border-right: 1px solid #040407; } - scrollbar.right { - border-left: 1px solid #040407; } - scrollbar:backdrop { - background-color: #090b10; - border-color: #050509; - transition: 200ms ease-out; } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #797c80; } - scrollbar slider:hover { - background-color: #9c9fa2; } - scrollbar slider:hover:active { - background-color: #00dcd7; } - scrollbar slider:backdrop { - background-color: #32353c; } - scrollbar slider:disabled { - background-color: transparent; } - scrollbar.fine-tune slider { - min-width: 4px; - min-height: 4px; } - scrollbar.fine-tune.horizontal slider { - border-width: 5px 4px; } - scrollbar.fine-tune.vertical slider { - border-width: 4px 5px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) { - border-color: transparent; - opacity: 0.4; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 3px; - min-height: 3px; - background-color: #BFC3C4; - border: 1px solid black; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - min-width: 5px; - min-height: 5px; - background-color: #BFC3C4; - background-clip: padding-box; - border-radius: 100%; - border: 1px solid black; - -gtk-icon-source: none; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { - margin: 1px 2px; - min-width: 5px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { - margin: 2px 1px; - min-height: 5px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.8; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - scrollbar button { - padding: 0; - min-width: 12px; - min-height: 12px; - border-style: none; - border-radius: 0; - transition-property: min-height, min-width, color; - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #797c80; } - scrollbar button:hover { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #9c9fa2; } - scrollbar button:active, scrollbar button:checked { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #00dcd7; } - scrollbar button:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(121, 124, 128, 0.2); } - scrollbar button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #32353c; } - scrollbar button:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(50, 53, 60, 0.2); } - scrollbar.vertical button.down { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - scrollbar.vertical button.up { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - scrollbar.horizontal button.down { - -gtk-icon-source: -gtk-icontheme("pan-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - -treeview ~ scrollbar.vertical { - border-top: 1px solid #040407; - margin-top: -1px; } - -/*********** - * Sidebar * - ***********/ -.sidebar { - border-style: none; - border-width: 0; - background-color: #11131d; } - .sidebar .frame { - border: none; } - stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: none; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list - .sidebar:dir(rtl), stacksidebar.sidebar.right list - .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #040407; - border-right-style: none; } - .sidebar:backdrop { - background-color: #12141f; - border-color: #050509; - transition: 200ms ease-out; } - .sidebar row { - padding: 8px 12px; - transition: all .12s ease-in; } - .sidebar row label { - color: #98abb2; } - .sidebar row:selected { - color: #fefefe; } - .sidebar row:selected:backdrop { - color: rgba(254, 254, 254, 0.5); - background: rgba(0, 169, 165, 0.6); } - .sidebar row:selected:backdrop label { - color: #fefefe; } - .sidebar row:selected label { - color: #fefefe; } - .sidebar.source-list { - background: #0d0f17; - padding: 4px 0px; } - .sidebar.source-list.view, iconview.sidebar.source-list { - transition: all .12s ease-in; } - .sidebar.source-list.view:selected, iconview.sidebar.source-list:selected { - background: rgba(8, 9, 13, 0.93); - color: #98abb2; } - .sidebar.source-list.view:selected:active, iconview.sidebar.source-list:selected:active { - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } - .sidebar.source-list.view:selected.has-open-popup, iconview.sidebar.source-list:selected.has-open-popup, .sidebar.source-list.view:selected:hover, iconview.sidebar.source-list:selected:hover { - background: rgba(8, 9, 13, 0.93); - color: #fff; } - .sidebar.source-list.view:selected:backdrop, iconview.sidebar.source-list:selected:backdrop { - background: rgba(8, 9, 13, 0.93); } - .sidebar.source-list.view:hover, iconview.sidebar.source-list:hover, .sidebar.source-list.view iconview.source-list:hover, iconview.sidebar.source-list iconview.source-list:hover { - background-color: rgba(15, 17, 26, 0.4); } - paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { - border-style: none; - border-color: #040407; } - -stacksidebar row { - padding: 10px 4px; } - stacksidebar row > label { - padding-left: 6px; - padding-right: 6px; } - stacksidebar row.needs-attention > label { - background-size: 6px 6px, 0 0; } - -/*******************************************************************/ -/* PLACESSIDEBAR */ -/*******************************************************************/ -/*--*/ -placessidebar.sidebar { - background-color: transparent; - background-image: linear-gradient(to right, #0d0f17 40px, #0d0f17 35px, #0d0f17 36px, #0d0f17 36px, #0d0f17 99%, #0d0f17 100%); } - placessidebar.sidebar row.sidebar-row.sidebar-row .sidebar-icon { - margin-left: -14px; - margin-right: 5px; - padding-left: 14px; - padding-right: 5px; - color: #98abb2; } - placessidebar.sidebar row.sidebar-row:hover, placessidebar.sidebar row.sidebar-row:active, placessidebar.sidebar row.sidebar-row:selected { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - background-color: transparent; - /*rgba(65,67,75,0.4); */ - background-image: linear-gradient(to right, #1a1e2d); } - placessidebar.sidebar row.sidebar-row:hover, placessidebar.sidebar row.sidebar-row:hover label, placessidebar.sidebar row.sidebar-row:active, placessidebar.sidebar row.sidebar-row:active label, placessidebar.sidebar row.sidebar-row:selected, placessidebar.sidebar row.sidebar-row:selected label { - color: #fefefe; - font-weight: normal; } - placessidebar.sidebar row.sidebar-row:selected:backdrop { - color: #9da1a4; - background-color: transparent; - background-image: linear-gradient(to right, rgba(8, 9, 13, 0.93) 40px, rgba(8, 9, 13, 0.93) 36px, rgba(8, 9, 13, 0.93) 97%); } - placessidebar.sidebar row.sidebar-row:selected:backdrop label { - color: #9da1a4; } - placessidebar.sidebar row.sidebar-row:selected .sidebar-icon { - color: inherit; } - placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row label, placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: #FFCB6B; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #00A9A5, inset 0 -1px #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) image { - color: #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background: #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected image { - color: #fefefe; } -placessidebar list { - background-color: transparent; } - placessidebar list:backdrop { - background-color: transparent; } - -/***************** - * GtkSpinButton * - *****************/ -spinbutton:not(.vertical) { - padding: 0; } - spinbutton:not(.vertical) entry { - min-width: 28px; - margin: 0; - background: none; - background-color: transparent; - border: none; - border-radius: 0; - box-shadow: none; } - spinbutton:not(.vertical) button { - min-height: 16px; - margin: 0; - padding-bottom: 0; - padding-top: 0; - color: #aeb2b4; - background-image: none; - border-style: none none none solid; - border-color: rgba(4, 4, 7, 0.3); - border-radius: 0; - box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); } - spinbutton:not(.vertical) button:dir(rtl) { - border-style: none solid none none; } - spinbutton:not(.vertical) button:hover { - color: #BFC3C4; - background-color: rgba(191, 195, 196, 0.05); } - spinbutton:not(.vertical) button:disabled { - color: rgba(103, 106, 111, 0.3); } - spinbutton:not(.vertical) button:active { - background-color: rgba(0, 0, 0, 0.1); - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } - spinbutton:not(.vertical) button:backdrop { - color: #5f6268; - background-color: transparent; - border-color: rgba(5, 5, 9, 0.3); - transition: 200ms ease-out; } - spinbutton:not(.vertical) button:backdrop:disabled { - color: rgba(43, 49, 75, 0.3); - background-image: none; - border-style: none none none solid; - box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); } - spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { - border-style: none solid none none; } - spinbutton:not(.vertical) button:last-child { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } -.osd spinbutton:not(.vertical) button { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-style: none none none solid; - border-color: rgba(4, 4, 7, 0.7); - border-radius: 0; - box-shadow: none; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:not(.vertical) button:dir(rtl) { - border-style: none solid none none; } - .osd spinbutton:not(.vertical) button:hover { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-color: rgba(4, 4, 7, 0.5); - background-color: rgba(191, 195, 196, 0.1); - -gtk-icon-shadow: 0 1px black; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-color: rgba(4, 4, 7, 0.5); - -gtk-icon-shadow: none; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #646669; - border-color: rgba(4, 4, 7, 0.5); - -gtk-icon-shadow: none; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:last-child { - border-radius: 0 3px 3px 0; } - .osd spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 3px 0 0 3px; } -spinbutton.vertical:disabled { - color: #676a6f; } -spinbutton.vertical:backdrop:disabled { - color: #2b314b; } -spinbutton.vertical:drop(active) { - border-color: transparent; - box-shadow: none; } -spinbutton.vertical entry { - min-height: 32px; - min-width: 32px; - padding: 0; - border-radius: 0; } -spinbutton.vertical button { - min-height: 32px; - min-width: 32px; - padding: 0; - border-width: 1px; - border-color: #040407; - box-shadow: 0 1px rgba(255, 255, 255, 0.1); } -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; - border-style: solid solid none solid; } -spinbutton.vertical button.down { - border-radius: 0 0 3px 3px; - border-style: none solid solid solid; } -.osd spinbutton.vertical button:first-child { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:active { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd spinbutton.vertical button:first-child:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -treeview spinbutton:not(.vertical) { - min-height: 0; - border-style: none; - border-radius: 0; } - treeview spinbutton:not(.vertical) entry { - min-height: 0; - padding: 1px 2px; } - -/*********** - * Spinner * - ***********/ -menu spinner { - color: #00A9A5; } - -/********************* - * 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; } - -/********** - * Switch * - **********/ -switch { - font-size: 1px; - font-weight: bold; - outline-offset: -4px; - transition: all 200ms ease-in; - border: none; - border-radius: 14px; - color: transparent; - padding: 2.3px 0px; - background-color: #2f3551; - box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 1px rgba(0, 0, 0, 0.1); } - switch:disabled { - background-color: #1e2234; } - switch:backdrop { - background-color: #22263a; - transition: 200ms ease-out; } - switch:backdrop:disabled { - background-color: #1a1e2d; } - switch:active, switch:checked { - background-color: #00A9A5; } - switch:active:backdrop, switch:checked:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - switch:active:backdrop slider:backdrop, switch:checked:backdrop slider:backdrop { - box-shadow: none; - background-color: rgba(19, 21, 32, 0.9); - border: none; } - switch slider { - padding: 2px; - margin: 0 2.3px; - min-width: 12px; - min-height: 12px; - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - background-color: #131520; - box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2); } - switch slider:backdrop { - padding: 2px; - box-shadow: none; - background-color: #131520; } - switch trough:active, switch trough:checked { - background-color: #00A9A5; } - switch trough:active:backdrop, switch trough:checked:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - -/************ - * Toolbars * - ************/ -toolbar, .inline-toolbar, searchbar, -.location-bar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #0F111A; } - -toolbar { - padding: 4px 3px 3px 4px; } - .osd toolbar { - background-color: transparent; } - toolbar.osd { - padding: 13px; - border: none; - border-radius: 5px; - background-color: rgba(8, 9, 13, 0.93); } - toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { - border-radius: 0; } - toolbar.horizontal separator { - margin: 0 7px 1px 6px; } - toolbar.vertical separator { - margin: 6px 1px 7px 0; } - toolbar:not(.inline-toolbar):not(.osd) switch, - 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-right: 1px; - margin-bottom: 1px; } - -.inline-toolbar { - padding: 3px; - border-width: 0 1px 1px; - border-radius: 0 0 5px 5px; } - -searchbar, -.location-bar { - border-width: 0 0 1px; - padding: 3px; } - -.inline-toolbar, searchbar, -.location-bar { - border-style: solid; - border-color: #040407; - background-color: #0c0d14; } - .inline-toolbar:backdrop, searchbar:backdrop, - .location-bar:backdrop { - border-color: #050509; - background-color: #0c0d14; - box-shadow: none; - transition: 200ms ease-out; } - -searchbar { - background: #131520; } - -/************ - * Tooltips * - ************/ -tooltip { - padding: 4px; - /* not working */ - border-radius: 5px; - box-shadow: none; - text-shadow: 0 1px black; } - tooltip.background { - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - border: 1px solid #040407; } - tooltip decoration { - background-color: transparent; } - tooltip * { - padding: 4px; - background-color: transparent; - color: white; } - -/************** - * Tree Views * - **************/ -treeview.view { - border-left-color: #696c72; - border-top-color: #0F111A; } - * { - -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:selected:focus, treeview.view:selected { - border-radius: 0; } - treeview.view:selected:backdrop, treeview.view:selected { - border-left-color: #7fd4d2; - border-top-color: rgba(191, 195, 196, 0.1); } - treeview.view:disabled { - color: #676a6f; } - treeview.view:disabled:selected { - color: #66cbc9; } - treeview.view:disabled:selected:backdrop { - color: rgba(32, 180, 176, 0.85); } - treeview.view:disabled:backdrop { - color: #2b314b; } - treeview.view.separator { - min-height: 2px; - color: #0F111A; } - treeview.view.separator:backdrop { - color: rgba(15, 17, 26, 0.1); } - treeview.view:backdrop { - border-left-color: #3b3e45; - border-top: #0F111A; } - treeview.view:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: #007673; } - treeview.view:drop(active).after { - border-top-style: none; } - treeview.view:drop(active).before { - border-bottom-style: none; } - treeview.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #8b8f93; } - treeview.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - treeview.view.expander:hover { - color: #BFC3C4; } - treeview.view.expander:selected { - color: #b2e5e3; } - treeview.view.expander:selected:hover { - color: #fefefe; } - treeview.view.expander:selected:backdrop { - color: rgba(111, 206, 204, 0.65); } - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - treeview.view.expander:backdrop { - color: #4e5159; } - treeview.view.progressbar { - border: 1px solid #007673; - border-radius: 4px; - background-color: #00A9A5; - background-image: linear-gradient(to bottom, #00A9A5, #007673); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.1); } - treeview.view.progressbar:selected:focus, treeview.view.progressbar:selected { - border-radius: 4px; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); - background-image: linear-gradient(to bottom, #131520, black); } - treeview.view.progressbar:selected:focus:backdrop, treeview.view.progressbar:selected:backdrop { - border-color: #151724; - background-color: #151724; } - treeview.view.progressbar:backdrop { - border-color: #151724; - background-image: none; - box-shadow: none; } - treeview.view.trough { - background-color: rgba(191, 195, 196, 0.1); - border-radius: 4px; } - treeview.view.trough:selected:focus, treeview.view.trough:selected { - background-color: #007673; - border-radius: 4px; } - treeview.view header button { - color: #696c72; - background-color: #131520; - font-weight: bold; - text-shadow: none; - box-shadow: none; } - treeview.view header button:hover { - color: #94989b; - box-shadow: none; - transition: none; } - treeview.view header button:active { - color: #BFC3C4; - transition: none; } - treeview.view header button:last-child:backdrop, treeview.view header button:last-child { - border-right-style: none; } - treeview.view button.dnd:active, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd, - treeview.view header.button.dnd:active, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd { - padding: 0 6px; - transition: none; - background-image: none; - background-color: #00A9A5; - color: #131520; - border-radius: 0; - border-style: none; - box-shadow: inset 0 0 0 1px #131520; - text-shadow: none; } - treeview.view acceleditor > label { - background-color: #00A9A5; } - -treeview.view header button, treeview.view header button:hover, treeview.view header button:active { - padding: 0 6px; - border-radius: 0; - background-image: none; - text-shadow: none; - border-width: 1px; - border-style: none solid solid none; - border-color: #0F111A; } - treeview.view header button:disabled { - border-color: #0F111A; - background-image: none; } - treeview.view header button:backdrop { - border-color: #0F111A; - border-style: none solid solid none; - color: #3b3e45; - background-image: none; - background-color: #151724; } - treeview.view header button:backdrop:disabled { - border-color: #0F111A; - background-image: none; } - -/********************** - * Window Decorations * - *********************/ -decoration { - border-radius: 4px 4px 0 0; - border-width: 0px; - border-width: 0px; - box-shadow: 0 4px 10px 2px rgba(4, 4, 7, 0.4); - margin: 10px; } - decoration:backdrop { - box-shadow: 0 4px 10px 2px rgba(4, 4, 7, 0.2); - transition: 200ms ease-out; } - .maximized decoration, .fullscreen decoration, .tiled decoration { - border-radius: 0; } - .popup decoration { - box-shadow: none; } - .ssd decoration { - box-shadow: none; } - .csd.popup decoration { - border-radius: 7px; - box-shadow: 0 4px 8px #040407; - border: 1px solid #040407; } - tooltip.csd decoration { - border-radius: 5px; - box-shadow: none; } - messagedialog.csd decoration { - border-radius: 7px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(4, 4, 7, 0.8); } - .solid-csd decoration { - border-radius: 0; - margin: 0px; - background-color: #0F111A; - border: solid 1px #050509; - box-shadow: none; } - -button.titlebutton { - background-repeat: no-repeat; - background-position: center; - min-height: 20px; - padding: 0 1px; - box-shadow: none; } - button.titlebutton.close { - background-image: -gtk-scaled(url("../assets/close.png"), url("../assets/close@2.png")); } - button.titlebutton.close:hover, button.titlebutton.close:active { - background-image: -gtk-scaled(url("../assets/close_prelight.png"), url("../assets/close_prelight@2.png")); } - button.titlebutton.maximize { - background-image: -gtk-scaled(url("../assets/maximize.png"), url("../assets/maximize@2.png")); } - button.titlebutton.maximize:hover, button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("../assets/maximize_prelight.png"), url("../assets/maximize_prelight@2.png")); } - button.titlebutton.minimize { - background-image: -gtk-scaled(url("../assets/min.png"), url("../assets/min@2.png")); } - button.titlebutton.minimize:hover, button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("../assets/min_prelight.png"), url("../assets/min_prelight@2.png")); } - button.titlebutton:backdrop { - -gtk-icon-shadow: none; - background-image: -gtk-scaled(url("../assets/close_unfocused.png"), url("../assets/close_unfocused@2.png")); } - -headerbar.selection-mode button.titlebutton, -.titlebar.selection-mode button.titlebutton { - text-shadow: 0 -1px rgba(0, 0, 0, 0.7349019608); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.7349019608); } - headerbar.selection-mode button.titlebutton:backdrop, - .titlebar.selection-mode button.titlebutton:backdrop { - -gtk-icon-shadow: none; } - -.view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, -.view text:selected:focus, -iconview text:selected:focus, -textview text:selected:focus, -.view text:selected, -iconview text:selected, -textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, popover.background checkbutton:selected, -popover.background radiobutton:selected, -.menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection, -entry selection:focus, -entry selection, row:selected, treeview.view:selected:focus, treeview.view:selected { - background-color: #00A9A5; } - row:selected label, label:selected, .selection-mode button.titlebutton, .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, popover.background checkbutton:selected, - popover.background radiobutton:selected, - .menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection, - entry selection:focus, - entry selection, row:selected, treeview.view:selected:focus, treeview.view:selected { - color: #fefefe; - font-weight: bold; } - row:selected label:disabled, label:disabled:selected, .selection-mode button.titlebutton:disabled, iconview:disabled:selected:focus, .view:disabled:selected, iconview:disabled:selected, - iconview text:disabled:selected:focus, - textview text:disabled:selected:focus, - .view text:disabled:selected, - iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, modelbutton.flat:disabled:selected, popover.background checkbutton:disabled:selected, - popover.background radiobutton:disabled:selected, - .menuitem.button.flat:disabled:selected, calendar:disabled:selected, spinbutton:not(.vertical) selection:disabled, - entry selection:disabled, row:disabled:selected { - color: #7fd4d2; } - row:selected label:backdrop, label:backdrop:selected, .selection-mode button.titlebutton:backdrop, iconview:backdrop:selected:focus, .view:backdrop:selected, iconview:backdrop:selected, - iconview text:backdrop:selected:focus, - textview text:backdrop:selected:focus, - .view text:backdrop:selected, - iconview text:backdrop:selected, - textview text:backdrop:selected, iconview text selection:backdrop:focus, .view text selection:backdrop, iconview text selection:backdrop, - textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label:backdrop selection, modelbutton.flat:backdrop:selected, popover.background checkbutton:backdrop:selected, - popover.background radiobutton:backdrop:selected, - .menuitem.button.flat:backdrop:selected, calendar:backdrop:selected, spinbutton:not(.vertical) selection:backdrop, - entry selection:backdrop, row:backdrop:selected { - color: rgba(254, 254, 254, 0.5); } - row:selected label:backdrop:disabled, label:backdrop:disabled:selected, .selection-mode button.titlebutton:backdrop:disabled, .view:backdrop:disabled:selected, iconview:backdrop:disabled:selected, - .view text:backdrop:disabled:selected, - iconview text:backdrop:disabled:selected, - textview text:backdrop:disabled:selected, .view text selection:backdrop:disabled, iconview text selection:backdrop:disabled, - textview text selection:backdrop:disabled, flowbox flowboxchild:backdrop:disabled:selected, label:disabled selection:backdrop, label:backdrop selection:disabled, modelbutton.flat:backdrop:disabled:selected, popover.background checkbutton:backdrop:disabled:selected, - popover.background radiobutton:backdrop:disabled:selected, - .menuitem.button.flat:backdrop:disabled:selected, calendar:backdrop:disabled:selected, spinbutton:not(.vertical) selection:backdrop:disabled, - entry selection:backdrop:disabled, row:backdrop:disabled:selected { - color: rgba(32, 180, 176, 0.85); } - -.monospace { - font-family: Monospace; } - -/********************** - * DE-Specific Styles * - **********************/ -/********* -* Budgie * -*********/ -.budgie-container { - background-color: transparent; } - .budgie-container:backdrop { - background-color: transparent; } - .budgie-container popover list, - .budgie-container popover row { - border: none; - background: none; - padding: 0; - margin: 0; } - -.budgie-popover .container, -.budgie-popover border, -.budgie-popover list, -.budgie-popover row { - padding: 0; - margin: 0; - background: none; - border: none; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - opacity: 1; - min-width: 0; - min-height: 0; } - -.budgie-popover, -.budgie-popover.background { - border-radius: 2px; - padding: 0; - background: rgba(0, 0, 0, 0.95); - background-clip: border-box; - box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.35); - border: 1px solid #040407; } - .budgie-popover list:hover, - .budgie-popover row:hover, - .budgie-popover.background list:hover, - .budgie-popover.background row:hover { - background: none; } - .budgie-popover > frame.container, - .budgie-popover.background > frame.container { - margin: 0 -1px -1px; - padding: 2px 0 0; } - .budgie-popover button, - .budgie-popover.background button { - color: #BFC3C4; - border: none; - background: transparent; } - .budgie-popover button:hover, - .budgie-popover.background button:hover { - color: #00A9A5; } - -.budgie-popover > .container { - padding: 2px; } - -.budgie-menu { - color: #BFC3C4; } - .budgie-menu .container { - padding: 0; } - .budgie-menu button:hover { - -gtk-icon-effect: none; } - .budgie-menu entry.search { - border: none; - background: none; - padding: 5px 2px; - border-bottom: 1px solid #040407; - border-radius: 0; - font-size: 120%; - box-shadow: none; - color: #BFC3C4; } - .budgie-menu entry.search image:dir(ltr) { - padding-left: 8px; - padding-right: 12px; } - .budgie-menu entry.search image:dir(rtl) { - padding-left: 12px; - padding-right: 8px; } - .budgie-menu .categories { - border-width: 0; - margin-left: 3px; - background: transparent; } - .budgie-menu .categories:dir(ltr) { - border-right: 1px solid #040407; } - .budgie-menu .categories:dir(rtl) { - border-left: 1px solid #040407; } - .budgie-menu .category-button { - padding: 7px; - border-radius: 2px 0 0 2px; } - .budgie-menu .category-button:hover { - background-color: rgba(191, 195, 196, 0.05); - color: #BFC3C4; } - .budgie-menu .category-button:active { - box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } - .budgie-menu .category-button:checked { - color: #fefefe; - background: #00A9A5; } - .budgie-menu .category-button:checked:hover { - color: rgba(254, 254, 254, 0.6); } - .budgie-menu .category-button:checked:disabled { - opacity: 0.5; } - .budgie-menu .category-button:checked:disabled label { - color: rgba(254, 254, 254, 0.7); } - .budgie-menu scrollbar { - background-color: transparent; - border-color: #040407; } - .budgie-menu button:not(.category-button) { - padding-top: 5px; - padding-bottom: 5px; - border-radius: 0; - box-shadow: none; - background: yellow; } - .budgie-menu button { - border: none; - background: transparent; } - .budgie-menu undershoot, .budgie-menu overshoot { - background: none; } - .budgie-menu list { - color: rgba(191, 195, 196, 0.7); } - -button.budgie-menu-launcher { - padding: 0 2px; - color: #BFC3C4; - box-shadow: none; - background-color: transparent; } - button.budgie-menu-launcher:hover { - color: #BFC3C4; } - button.budgie-menu-launcher:active, button.budgie-menu-launcher:checked { - color: #BFC3C4; } - button.budgie-menu-launcher:backdrop { - color: #BFC3C4; - background-color: transparent; } - button.budgie-menu-launcher:backdrop:hover { - color: #BFC3C4; } - button.budgie-menu-launcher:backdrop:active, button.budgie-menu-launcher:backdrop:checked { - color: #00A9A5; - box-shadow: none; - background-color: #12141f; } - -.user-menu .content-box separator { - margin-left: 6px; - margin-right: 6px; - background-color: rgba(191, 195, 196, 0.1); } -.user-menu button { - margin: 5px; } -.user-menu > box.vertical row.activatable:first-child .indicator-item, -.user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item { - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); - background-color: #00A9A5; - transition-duration: 0.2s; } - .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(ltr), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(ltr) { - padding-left: 7px; - background-position: left center; - background-repeat: no-repeat; - background-size: 38px auto; } - .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(rtl), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(rtl) { - padding-right: 7px; - background-position: right center; - background-repeat: no-repeat; - background-size: 38px auto; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label { - color: #fefefe; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(ltr), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(ltr) { - padding-left: 5px; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(rtl), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(rtl) { - padding-right: 5px; } - .user-menu > box.vertical row.activatable:first-child .indicator-item image, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image { - color: #fefefe; } - .user-menu > box.vertical row.activatable:first-child .indicator-item image:first-child, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image:first-child { - min-width: 24px; - min-height: 20px; } - -button.raven-trigger { - padding-left: 2px; - padding-right: 2px; - color: #BFC3C4; - box-shadow: none; } - button.raven-trigger:hover { - color: #BFC3C4; - background-color: transparent; } - button.raven-trigger:active, button.raven-trigger:checked { - box-shadow: none; - background-color: transparent; - color: #00A9A5; } - button.raven-trigger:backdrop { - color: #BFC3C4; } - button.raven-trigger:backdrop:hover { - color: #BFC3C4; } - button.raven-trigger:backdrop:active, button.raven-trigger:backdrop:checked { - box-shadow: none; - color: #00A9A5; - background-color: transparent; } - -.places-menu .container { - padding: 0; } -.places-menu .message-bar { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } -.places-menu .name-button { - border: 0; - border-radius: 0; - padding: 4px 6px; } -.places-menu .unmount-button { - padding: 4px 4px; - border: 0; - border-radius: 0; } -.places-menu .places-section-header { - padding: 0px; - border-bottom: 1px solid rgba(4, 4, 7, 0.95); - box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.03); } -.places-menu .places-section-header > button { - padding: 8px; - border: none; - border-bottom-left-radius: 0px; - border-bottom-right-radius: 0px; } -.places-menu .places-list { - background: rgba(191, 195, 196, 0.04); - border-bottom: 1px solid rgba(4, 4, 7, 0.95); } -.places-menu .unlock-area { - border-top: 1px solid rgba(4, 4, 7, 0.85); - border-bottom: 1px solid rgba(4, 4, 7, 0.85); } -.places-menu .unlock-area entry { - border-radius: 0; - border: 0; } -.places-menu .unlock-area button { - border-radius: 0; - border: 0; - border-left: 1px solid rgba(4, 4, 7, 0.85); } -.places-menu .alternative-label { - font-size: 15px; - padding: 3px; } -.places-menu .always-expand { - background: transparent; - border-bottom: none; } - -.night-light-indicator .container { - padding: 0; } -.night-light-indicator .view-header { - font-size: 14px; - padding: 10px; - border-bottom: 1px solid mix(@theme_base_color, #000000, 0.35);; - box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.04);; } -.night-light-indicator .display-settings-button { - border-top-left-radius: 0px; - border-top-right-radius: 0px; - border: none; - padding: 3px; - border-top: 1px solid mix(@theme_base_color, #000000, 0.35);; - box-shadow: inset 0px 1px 1px alpha(@theme_fg_color, 0.04);; } - -.budgie-panel { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); - background-image: none; - box-shadow: none; - border: none; - transition: all 150ms ease-in; } - .budgie-panel .alert { - color: #FF5370; } - .budgie-panel:backdrop { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-panel button { - border-top-width: 0; - border-bottom-width: 0; - border-radius: 0; } - .budgie-panel button.flat { - background: transparent; - border: none; } - .budgie-panel button.flat:hover, .budgie-panel button.flat:active, .budgie-panel button.flat:checked { - background: transparent; - color: #00A9A5; } - .budgie-panel popover list, - .budgie-panel popover row { - padding: 0; - margin: 0; } - .budgie-panel label { - color: #BFC3C4; - font-weight: 700; } - .budgie-panel.transparent { - background-color: rgba(0, 0, 0, 0.2); } - .top .budgie-panel.transparent { - border-bottom-color: transparent; } - .bottom .budgie-panel.transparent { - border-top-color: transparent; } - .left .budgie-panel.transparent { - border-right-color: transparent; } - .right .budgie-panel.transparent { - border-left-color: transparent; } - .budgie-panel .end-region { - border-radius: 0px; } - .budgie-panel .end-region separator { - background-color: rgba(191, 195, 196, 0.15); } - .budgie-panel .end-region label { - font-weight: 700; - color: #BFC3C4; } - -.budgie-panel #tasklist-button, -.budgie-panel #tasklist-button:backdrop { - outline-color: transparent; - transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border-color: rgba(0, 0, 0, 0); - border-radius: 0; - background-color: transparent; - box-shadow: none; - background-clip: padding-box; } - -.budgie-panel button.flat.launcher { - outline-color: transparent; - transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border-color: rgba(0, 0, 0, 0); - border-radius: 0; - padding: 0; - background-clip: padding-box; - background-color: transparent; } - .budgie-panel button.flat.launcher { - box-shadow: none; } - -.budgie-panel #tasklist-button:hover, .budgie-panel .unpinned button.flat.launcher:hover, -.budgie-panel .pinned button.flat.launcher.running:hover { - box-shadow: none; } -.budgie-panel #tasklist-button:active, .budgie-panel .unpinned button.flat.launcher:active, -.budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel #tasklist-button:checked, .budgie-panel .unpinned button.flat.launcher:checked, -.budgie-panel .pinned button.flat.launcher.running:checked { - box-shadow: none; } -.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, -.top .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .top button.flat.launcher.running { - padding-bottom: 2px; - border-top: 2px solid transparent; } - .top .budgie-panel .pinned button.flat.launcher:not(.running) { - border-top: 2px solid transparent; } - - .top .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-top: 2px solid rgba(255, 255, 255, 0.1); } - - .top .budgie-panel .unpinned button.flat.launcher, - .top .budgie-panel .pinned button.flat.launcher.running { - border-top: 2px solid rgba(255, 255, 255, 0.1); } - .top .budgie-panel #tasklist-button:hover, .budgie-panel .top #tasklist-button:hover, .top .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .top button.flat.launcher:hover, - .top .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .top button.flat.launcher.running:hover { - border-top: 2px solid rgba(255, 255, 255, 0.25); } - .top .budgie-panel #tasklist-button:active, .budgie-panel .top #tasklist-button:active, .top .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .top button.flat.launcher:active, - .top .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .top button.flat.launcher.running:active, .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .top button.flat.launcher:checked, - .top .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .top button.flat.launcher.running:checked { - border-top: 2px solid #00A9A5; } -.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, -.bottom .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .bottom button.flat.launcher.running { - padding-top: 2px; - border-bottom: 2px solid transparent; } - .bottom .budgie-panel .pinned button.flat.launcher:not(.running) { - border-bottom: 2px solid transparent; } - - .bottom .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-bottom: 2px solid rgba(255, 255, 255, 0.1); } - - .bottom .budgie-panel .unpinned button.flat.launcher, - .bottom .budgie-panel .pinned button.flat.launcher.running { - border-bottom: 2px solid rgba(255, 255, 255, 0.1); } - .bottom .budgie-panel #tasklist-button:hover, .budgie-panel .bottom #tasklist-button:hover, .bottom .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .bottom button.flat.launcher:hover, - .bottom .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .bottom button.flat.launcher.running:hover { - border-bottom: 2px solid rgba(255, 255, 255, 0.25); } - .bottom .budgie-panel #tasklist-button:active, .budgie-panel .bottom #tasklist-button:active, .bottom .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .bottom button.flat.launcher:active, - .bottom .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .bottom button.flat.launcher.running:active, .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .bottom button.flat.launcher:checked, - .bottom .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .bottom button.flat.launcher.running:checked { - border-bottom: 2px solid #00A9A5; } -.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, -.left .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .left button.flat.launcher.running { - padding-right: 2px; - border-left: 2px solid transparent; } - .left .budgie-panel .pinned button.flat.launcher:not(.running) { - border-left: 2px solid transparent; } - - .left .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-left: 2px solid rgba(255, 255, 255, 0.1); } - - .left .budgie-panel .unpinned button.flat.launcher, - .left .budgie-panel .pinned button.flat.launcher.running { - border-left: 2px solid rgba(255, 255, 255, 0.1); } - .left .budgie-panel #tasklist-button:hover, .budgie-panel .left #tasklist-button:hover, .left .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .left button.flat.launcher:hover, - .left .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .left button.flat.launcher.running:hover { - border-left: 2px solid rgba(255, 255, 255, 0.25); } - .left .budgie-panel #tasklist-button:active, .budgie-panel .left #tasklist-button:active, .left .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .left button.flat.launcher:active, - .left .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .left button.flat.launcher.running:active, .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .left button.flat.launcher:checked, - .left .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .left button.flat.launcher.running:checked { - border-left: 2px solid #00A9A5; } -.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, -.right .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .right button.flat.launcher.running { - padding-left: 2px; - border-right: 2px solid transparent; } - .right .budgie-panel .pinned button.flat.launcher:not(.running) { - border-right: 2px solid transparent; } - - .right .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-right: 2px solid rgba(255, 255, 255, 0.1); } - - .right .budgie-panel .unpinned button.flat.launcher, - .right .budgie-panel .pinned button.flat.launcher.running { - border-right: 2px solid rgba(255, 255, 255, 0.1); } - .right .budgie-panel #tasklist-button:hover, .budgie-panel .right #tasklist-button:hover, .right .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .right button.flat.launcher:hover, - .right .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .right button.flat.launcher.running:hover { - border-right: 2px solid rgba(255, 255, 255, 0.25); } - .right .budgie-panel #tasklist-button:active, .budgie-panel .right #tasklist-button:active, .right .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .right button.flat.launcher:active, - .right .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .right button.flat.launcher.running:active, .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .right button.flat.launcher:checked, - .right .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .right button.flat.launcher.running:checked { - border-right: 2px solid #00A9A5; } - -.top .budgie-panel { - border-bottom: 1px solid rgba(0, 0, 0, 0.92); } - -.top .raven-frame { - padding: 0; - background: none; } - .top .raven-frame border { - border: none; - border-bottom: 1px solid rgba(4, 4, 7, 0.92); } - -.top .shadow-block { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent); } - -.bottom .budgie-panel { - border-top: 1px solid rgba(0, 0, 0, 0.92); } - -.bottom .raven-frame { - padding: 0; - background: none; } - .bottom .raven-frame border { - border: none; - border-top: 1px solid rgba(4, 4, 7, 0.92); } - -.bottom .shadow-block { - background-color: transparent; - background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); } - -.left .budgie-panel { - border-right: 1px solid rgba(0, 0, 0, 0.92); } - -.left .raven-frame { - padding: 0; - background: none; } - .left .raven-frame border { - border: none; - border-right: 1px solid rgba(4, 4, 7, 0.92); } - -.left .shadow-block { - background-color: transparent; - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent); } - -.right .budgie-panel { - border-left: 1px solid rgba(0, 0, 0, 0.92); } - -.right .raven-frame { - padding: 0; - background: none; } - .right .raven-frame border { - border: none; - border-left: 1px solid rgba(4, 4, 7, 0.92); } - -.right .shadow-block { - background-color: transparent; - background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent); } - -.raven { - padding: 0; - color: #FF5370; - background: rgba(0, 0, 0, 0.95); - transition: 170ms ease-out; } - .raven .raven-header { - min-height: 32px; - color: #BFC3C4; - border: solid rgba(4, 4, 7, 0.95); - border-width: 1px 0; - background-color: rgba(28, 31, 48, 0.45); } - .raven .raven-header * { - padding-top: 0; - padding-bottom: 0; } - .raven .raven-header.top { - border-top-style: none; - border-color: transparent; - margin-top: 3px; - min-height: 32px; } - .raven .raven-header.top button.image-button:hover { - color: #00908c; - box-shadow: none; } - .raven .raven-header > button.text-button { - border-radius: 2px; - color: #fefefe; - background-color: rgba(255, 58, 91, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header > button.text-button:hover { - border-radius: 2px; - color: #fefefe; - background-color: rgba(255, 83, 112, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header > button.text-button:active { - color: #fefefe; - background-color: rgba(255, 109, 133, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header.bottom { - border-bottom-style: none; } - .raven .raven-header button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0; } - .raven .raven-header button:hover { - color: #00A9A5; - border-radius: 0; - text-shadow: none; - background-image: linear-gradient(to bottom, #131520, #0F111A); - border-radius: 0; } - .raven .raven-header button:active, .raven .raven-header button:checked { - color: #00A9A5; - background-color: #090b10; } - .raven .raven-header button:disabled { - color: #676a6f; } - .raven list { - color: #BFC3C4; - background-color: transparent; } - .raven list:selected { - background-color: rgba(0, 169, 165, 0.9); } - .raven list row, - .raven list row.activatable { - background-color: transparent; } - .raven list row:hover, - .raven list row.activatable:hover { - background-color: rgba(28, 31, 48, 0.25); } - .raven list row:selected, - .raven list row.activatable:selected { - background-color: rgba(0, 169, 165, 0.9); } - .raven .raven-background { - color: #BFC3C4; - background-color: transparent; - border-color: transparent; } - .raven .raven-background.middle { - border-bottom-style: none; } - .raven .powerstrip { - background-color: transparent; - border-top-color: transparent; } - .raven .powerstrip button.image-button { - border-radius: 50%; - padding: 5px; - min-width: 32px; - min-height: 32px; - margin-bottom: 3px; - background: #C792EA; - color: #fefefe; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); - border: none; - font-size: 100%; } - .raven .powerstrip button.image-button:hover { - background: rgba(199, 146, 234, 0.85); - color: #fefefe; } - .raven .powerstrip button.image-button:active { - background: #C792EA; - color: #fefefe; } - .raven .powerstrip button.image-button:first-child { - background: #00A9A5; } - .raven .powerstrip button.image-button:first-child:hover { - background: rgba(0, 169, 165, 0.85); } - .raven .powerstrip button.image-button:first-child:active { - background: #00A9A5; } - .raven .powerstrip button.image-button:last-child { - background: linear-gradient(to right, #FF5370, #FF5370); } - .raven .powerstrip button.image-button:last-child:hover { - background: rgba(255, 83, 112, 0.85); } - .raven .powerstrip button.image-button:last-child:active { - background: #FF5370; } - .raven .option-subtitle { - font-size: 13px; } - -calendar.raven-calendar { - padding: 4px; - color: #BFC3C4; - background: transparent; - border-color: transparent; } - calendar.raven-calendar:indeterminate { - color: alpha(currentColor,0.3); } - calendar.raven-calendar:selected { - background: transparent; - color: #009591; - font-weight: bold; } - calendar.raven-calendar:backdrop { - background-color: transparent; } - calendar.raven-calendar.header { - color: #BFC3C4; - border: none; - border-radius: 0; - background-color: transparent; } - calendar.raven-calendar button, calendar.raven-calendar button:focus { - color: alpha(currentColor,0.5); - background-color: transparent; } - calendar.raven-calendar button:hover, calendar.raven-calendar button:focus:hover { - color: #BFC3C4; - background-color: transparent; } - -.raven-mpris { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.9); - border: solid rgba(255, 255, 255, 0.1); - border-width: 1px 0; - border-bottom-color: rgba(0, 0, 0, 0.1); } - .raven-mpris button.image-button { - padding: 10px; - background-color: #131520; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); } - .raven-mpris button.image-button:hover { - background-color: #00A9A5; } - .raven-mpris button.image-button:active { - background-color: #00908c; } - .raven-mpris button.image-button:first-child { - margin-right: 4px; } - .raven-mpris button.image-button:last-child { - margin-left: 4px; } - .raven-mpris button.image-button:last-child, .raven-mpris button.image-button:first-child { - padding: 4px; - margin-top: 6px; - margin-bottom: 6px; } - -.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { - background: none; - border-radius: 1px; } - .budgie-notification-window button, .budgie-osd-window button, .budgie-switcher-window button { - background-color: #00A9A5; - color: #fefefe; - border: none; } - .budgie-notification-window button:hover, .budgie-osd-window button:hover, .budgie-switcher-window button:hover { - background-color: #00908c; - border: none; } - .budgie-notification-window button:active, .budgie-osd-window button:active, .budgie-switcher-window button:active, .budgie-notification-window button:checked, .budgie-osd-window button:checked, .budgie-switcher-window button:checked { - background-color: #00908c; } - -.budgie-notification.background, .background.budgie-osd, .background.budgie-switcher { - border-radius: 1px; } -.budgie-notification .notification-title, .budgie-osd .notification-title, .budgie-switcher .notification-title { - font-size: 110%; - color: #BFC3C4; } -.budgie-notification .notification-body, .budgie-osd .notification-body, .budgie-switcher .notification-body { - color: rgba(191, 195, 196, 0.7); } -.budgie-notification button, .budgie-osd button, .budgie-switcher button { - background-color: transparent; - color: #fefefe; } - .budgie-notification button:hover, .budgie-osd button:hover, .budgie-switcher button:hover { - background-color: transparent; - color: #FF5370; - box-shadow: none; } - .budgie-notification button:active, .budgie-osd button:active, .budgie-switcher button:active, .budgie-notification button:checked, .budgie-osd button:checked, .budgie-switcher button:checked { - background-color: transparent; - color: #ff3a5b; } - -.drop-shadow, .budgie-session-dialog.background, .background.budgie-polkit-dialog, .background.budgie-run-dialog { - color: #BFC3C4; - background-color: rgba(15, 17, 26, 0.95); - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); - border-radius: 2px; } - -.budgie-switcher-window flowbox { - color: #BFC3C4; } -.budgie-switcher-window flowboxchild { - padding: 3px; - margin: 3px; - color: #BFC3C4; } - .budgie-switcher-window flowboxchild:hover { - background-color: transparent; } - .budgie-switcher-window flowboxchild:active { - color: #BFC3C4; } - .budgie-switcher-window flowboxchild:selected { - color: #fefefe; - background-color: rgba(0, 169, 165, 0.5); } - .budgie-switcher-window flowboxchild:selected:active { - color: #fefefe; } - .budgie-switcher-window flowboxchild:selected:hover { - background-color: #009895; } - .budgie-switcher-window flowboxchild:selected:disabled { - color: rgba(254, 254, 254, 0.7); - background-color: rgba(0, 169, 165, 0.7); } - .budgie-switcher-window flowboxchild:selected:disabled label { - color: rgba(254, 254, 254, 0.7); } - -.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-session-dialog label:backdrop, .budgie-polkit-dialog label:backdrop, .budgie-run-dialog label:backdrop { - color: rgba(191, 195, 196, 0.8); } - .budgie-session-dialog .dialog-title, .budgie-polkit-dialog .dialog-title, .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 { - margin-bottom: 0; - min-height: 32px; - border-bottom: none; - border-color: #040407; - border-radius: 0; - color: #BFC3C4; - background-color: transparent; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(0, 0, 0, 0.2); } - .budgie-session-dialog .linked.horizontal > button label, .budgie-polkit-dialog .linked.horizontal > button label, .budgie-run-dialog .linked.horizontal > button label { - font-weight: 700; } - .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-left: none; - border-bottom-left-radius: 2px; } - .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-right: none; - border-bottom-right-radius: 2px; - background: transparent; } - .budgie-session-dialog .linked.horizontal > button:hover, .budgie-polkit-dialog .linked.horizontal > button:hover, .budgie-run-dialog .linked.horizontal > button:hover { - background-color: rgba(0, 169, 165, 0.9); - color: #fff; } - .budgie-session-dialog .linked.horizontal > button:hover:backdrop label, .budgie-polkit-dialog .linked.horizontal > button:hover:backdrop label, .budgie-run-dialog .linked.horizontal > button:hover:backdrop label { - color: rgba(255, 255, 255, 0.5); } - .budgie-session-dialog .linked.horizontal > button.suggested-action, .budgie-polkit-dialog .linked.horizontal > button.suggested-action, .budgie-run-dialog .linked.horizontal > button.suggested-action { - background: linear-gradient(to right, #FF5370 0%, #00A9A5 100%); - color: #fff; } - .budgie-session-dialog .linked.horizontal > button.suggested-action:hover, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:hover, .budgie-run-dialog .linked.horizontal > button.suggested-action:hover { - background: linear-gradient(to right, #ff2a4e 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.suggested-action:active, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:active, .budgie-run-dialog .linked.horizontal > button.suggested-action:active, .budgie-session-dialog .linked.horizontal > button.suggested-action:checked, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:checked, .budgie-run-dialog .linked.horizontal > button.suggested-action:checked { - background: linear-gradient(to right, #ff2a4e 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action, .budgie-polkit-dialog .linked.horizontal > button.destructive-action, .budgie-run-dialog .linked.horizontal > button.destructive-action { - background: linear-gradient(to right, #FF5370 0%, #ff2046 100%); - color: #fff; } - .budgie-session-dialog .linked.horizontal > button.destructive-action:hover, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:hover, .budgie-run-dialog .linked.horizontal > button.destructive-action:hover { - background: linear-gradient(to right, #ff2a4e 0%, #ff2046 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action:active, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:active, .budgie-run-dialog .linked.horizontal > button.destructive-action:active, .budgie-session-dialog .linked.horizontal > button.destructive-action:checked, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:checked, .budgie-run-dialog .linked.horizontal > button.destructive-action:checked { - background: linear-gradient(to right, #ff2a4e 0%, #ff2046 100%); } - .budgie-session-dialog entry, .budgie-polkit-dialog entry, .budgie-run-dialog entry { - background-color: #505359; - color: #BFC3C4; } - .budgie-session-dialog entry:focus, .budgie-polkit-dialog entry:focus, .budgie-run-dialog entry:focus { - background-color: #505359; } - .budgie-session-dialog entry:backdrop, .budgie-polkit-dialog entry:backdrop, .budgie-run-dialog entry:backdrop { - background-color: #505359; } - -.budgie-polkit-dialog .message { - color: rgba(191, 195, 196, 0.7); } -.budgie-polkit-dialog .failure { - color: #FF5370; } - -.budgie-run-dialog entry.search, .budgie-run-dialog entry.search:focus { - font-size: 120%; - padding: 8px 5px; - border: none; - box-shadow: none; } - .budgie-run-dialog entry.search image, .budgie-run-dialog entry.search:focus image { - color: #BFC3C4; } - .budgie-run-dialog entry.search image:dir(ltr), .budgie-run-dialog entry.search:focus image:dir(ltr) { - padding-left: 8px; - padding-right: 12px; } - .budgie-run-dialog entry.search image:dir(rtl), .budgie-run-dialog entry.search:focus image:dir(rtl) { - padding-left: 12px; - padding-right: 8px; } -.budgie-run-dialog list row:selected .dim-label, .budgie-run-dialog list row:selected label.separator, .budgie-run-dialog list row:selected .titlebar .subtitle, .titlebar .budgie-run-dialog list row:selected .subtitle, -.budgie-run-dialog list row:selected headerbar .subtitle, -headerbar .budgie-run-dialog list row:selected .subtitle { - opacity: 1; } -.budgie-run-dialog scrolledwindow { - border-top: 1px solid rgba(0, 0, 0, 0); } - -.budgie-menubar menu { - margin: 4px; - padding: 5px; - border-radius: 0; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-menubar menu menuitem:hover { - background-color: #00A9A5; - color: #fefefe; } -.budgie-menubar arrow { - border: none; - min-width: 16px; - min-height: 16px; } - .budgie-menubar arrow.top { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); - border-bottom: 1px solid rgba(31, 32, 38, 0.928); } - .budgie-menubar arrow.bottom { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - border-top: 1px solid rgba(31, 32, 38, 0.928); } -.budgie-menubar menuitem accelerator { - color: rgba(191, 195, 196, 0.35); } -.budgie-menubar menuitem check, .budgie-menubar menuitem radio { - min-height: 16px; - min-width: 16px; } - -window.background.budgie-settings-window.csd > box.horizontal > stack > scrolledwindow buttonbox.inline-toolbar { - border-style: none none solid; } - -.workspace-switcher .workspace-layout { - border: 0 solid rgba(0, 0, 0, 0.95); } - .top .workspace-switcher .workspace-layout:dir(ltr), .bottom .workspace-switcher .workspace-layout:dir(ltr) { - border-left-width: 1px; } - .top .workspace-switcher .workspace-layout:dir(rtl), .bottom .workspace-switcher .workspace-layout:dir(rtl) { - border-right-width: 1px; } - .left .workspace-switcher .workspace-layout, .right .workspace-switcher .workspace-layout { - border-top-width: 1px; } -.workspace-switcher .workspace-item, .workspace-switcher .workspace-add-button { - border: 0 solid rgba(19, 21, 32, 0.95); } - .top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr), - .top .workspace-switcher .workspace-add-button:dir(ltr), .bottom .workspace-switcher .workspace-add-button:dir(ltr) { - border-right-width: 1px; } - .top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl), - .top .workspace-switcher .workspace-add-button:dir(rtl), .bottom .workspace-switcher .workspace-add-button:dir(rtl) { - border-left-width: 1px; } - .left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item, .left .workspace-switcher .workspace-add-button, .right .workspace-switcher .workspace-add-button { - border-bottom-width: 1px; } -.workspace-switcher .workspace-item.current-workspace { - background-color: rgba(19, 21, 32, 0.95); } -.workspace-switcher .workspace-add-button { - border: none; - background: transparent; } - .workspace-switcher .workspace-add-button:hover { - box-shadow: none; } - .workspace-switcher .workspace-add-button:active { - background-image: none; } - .workspace-switcher .workspace-add-button:active image { - margin: 1px 0 -1px; } -.budgie-panel .workspace-switcher .workspace-icon-button { - min-height: 24px; - min-width: 24px; - padding: 0; - border-radius: 2px; } - -/************ - * Nautilus * - ************/ -.nautilus-window .frame *:selected, .nautilus-window .frame *:selected:backdrop { - background: transparent; - color: #00A9A5; } - .nautilus-window .frame *:selected label, .nautilus-window .frame *:selected:backdrop label { - color: #00A9A5; } -.nautilus-window paned > separator { - background-image: none; } -.nautilus-window .sidebar { - background-color: transparent; } - .nautilus-window .sidebar:backdrop { - background-color: transparent; } - .nautilus-window .sidebar .list-row button { - border: none; - background-color: rgba(13, 15, 23, 0.95); } - .nautilus-window .sidebar .list-row button:active { - background-color: rgba(0, 169, 165, 0.75); } - .nautilus-window .sidebar .list-row:selected { - background-color: rgba(0, 169, 165, 0.75); } - .nautilus-window .sidebar .list-row:selected:hover { - background-color: rgba(0, 169, 165, 0.9); } - .nautilus-window .sidebar .list-row:hover { - background-color: rgba(19, 21, 32, 0.5); } - .nautilus-window .sidebar .list-row:hover:active { - background-color: rgba(0, 169, 165, 0.9); } -.nautilus-window.background { - background-color: rgba(13, 15, 23, 0.95); } - .nautilus-window.background:backdrop { - background-color: rgba(13, 15, 23, 0.95); } -.nautilus-window notebook > stack:only-child { - background-color: #131520; } - .nautilus-window notebook > stack:only-child:backdrop { - background-color: #151724; } -.nautilus-window searchbar { - border-top: 1px solid rgba(0, 0, 0, 0.12); } -.nautilus-window .searchbar-container { - margin-top: -1px; } -.nautilus-window .linked:not(.vertical) > entry { - border-radius: 10px; - margin-right: 5px; } - .nautilus-window .linked:not(.vertical) > entry:focus { - border-color: rgba(0, 169, 165, 0.3); } - .nautilus-window .linked:not(.vertical) > entry:focus + button { - border-left-color: #040407; } - -.nautilus-circular-button { - border-radius: 20px; - -gtk-outline-radius: 20px; } - -.disk-space-display { - border: 2px solid; } - .disk-space-display .unknown { - background-color: #888a85; - border-color: #555653; } - .disk-space-display .used { - background-color: #9FB0B9; - border-color: #667f8c; } - .disk-space-display .free { - background-color: #D8D8D8; - border-color: #a5a5a5; } - -.nautilus-desktop { - color: #BFC3C4; } - .nautilus-desktop .nautilus-canvas-item { - border-radius: 5px; - color: #fefefe; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop .nautilus-canvas-item:active { - color: #BFC3C4; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item:hover { - color: #BFC3C4; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item:selected { - color: #fefefe; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item .dim-label:selected, .nautilus-desktop .nautilus-canvas-item label.separator:selected, .nautilus-desktop .nautilus-canvas-item .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-canvas-item .subtitle:selected, - .nautilus-desktop .nautilus-canvas-item headerbar .subtitle:selected, - headerbar .nautilus-desktop .nautilus-canvas-item .subtitle:selected { - color: #fefefe; } - .nautilus-desktop .nautilus-list .dim-label:selected, .nautilus-desktop .nautilus-list label.separator:selected, .nautilus-desktop .nautilus-list .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-list .subtitle:selected, - .nautilus-desktop .nautilus-list headerbar .subtitle:selected, - headerbar .nautilus-desktop .nautilus-list .subtitle:selected { - color: #fefefe; } - -/********* - * Gedit * - *********/ -.gedit-search-slider { - padding: 4px; - border-radius: 0 0 3px 3px; - border: 0; - background-color: #0F111A; } - - /********* - * Gnucash * -*********/ -#gnc-id-main-window entry.gnc-class-register-foreground { - background: transparent; - border: none; - box-shadow: none; } -#gnc-id-main-window .arrow.button.toggle { - transition: none; - box-shadow: none; } - #gnc-id-main-window .arrow.button.toggle:hover { - border-color: #00A9A5; } - -/******** - * Gala * - *******/ -.gala-notification { - border-width: 0; - border-radius: 2px; - color: white; - border: 1px solid #131520; - background-color: #131520; } - .gala-notification .title, - .gala-notification .label { - color: #BFC3C4; } - -.gala-button { - padding: 3px; - color: #131520; - border: none; - border-radius: 50%; - background-image: linear-gradient(to bottom, #7e7e7e, #3e3e3e); - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.98), inset 0 1px 0 0 rgba(255, 255, 255, 0.93), inset 0 -1px 0 0 rgba(255, 255, 255, 0.99), 0 0 0 1px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.84), 0 3px 6px rgba(0, 0, 0, 0.77); - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -/********** - * Notify * - *********/ -.notify { - /*-notify-shadow: 0px 2px 18px transparentize(black, 0.60);*/ - border-radius: 5px; - border: 1px solid rgba(0, 0, 0, 0.7); - background-color: rgba(19, 21, 32, 0.05); } - -/*************** - * SwitchBoard * - ***************/ -.category-label { - font-weight: bold; - color: #BFC3C4; } - -/************* - * Slingshot * - ************/ -.button.app { - border: none; - border-radius: 0; - box-shadow: none; - background-image: none; } - .button.app .app:hover { - border-radius: 8px; - border: none; - background-color: rgba(0, 169, 165, 0.3); - color: white; } - .button.app .app:focus { - /*background-color: transparentize(black, 0.20);*/ } - -.search-item { - border-radius: 0; - border: none; - color: #BFC3C4; - background: none; } - .search-item:hover, .search-item:focus { - border-radius: 0; - background-color: rgba(0, 169, 165, 0.3); - color: #fefefe; } - -.search-entry-large, -.search-entry-large:focus { - border: none; - font-size: 18px; - font-weight: 300; - background-image: none; - background: none; - box-shadow: none; - border-radius: 0; } - -.search-category-header { - font-weight: bold; - color: #BFC3C4; } - -/********* - * Panel * - ********/ -.panel { - background-color: transparent; - transition: all 100ms ease-in-out; } - .panel.maximized { - background-color: #131520; } - .panel.translucent { - background-color: rgba(19, 21, 32, 0.5); } - .panel.color-light.translucent { - background-color: rgba(255, 255, 255, 0.85); } - -menubar.panel, -.panel menubar { - box-shadow: none; - border: none; } - -.composited-indicator > revealer, -.composited-indicator > revealer image, -.composited-indicator > revealer label, -.composited-indicator > revealer spinner { - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); - transition: all 200ms ease-in-out; - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); } -.composited-indicator > revealer image:first-child + label { - margin-left: 5px; } - -.panel.color-light .composited-indicator > revealer, -.panel.color-light .composited-indicator > revealer image, -.panel.color-light .composited-indicator > revealer label, -.panel.color-light .composited-indicator > revealer spinner { - color: rgba(0, 0, 0, 0.6); - text-shadow: 0 1px rgba(255, 255, 255, 0.1); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.1); } - -/************** - * Calculator * - **************/ -PantheonCalculatorMainWindow { - border-radius: 0 0 4px 4px; } - PantheonCalculatorMainWindow .window-frame { - border-radius: 3px; } - -/********* - * Cards * - *********/ -.deck { - background-color: black; } - -.card { - background-color: #131520; - border: none; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 3px 3px rgba(0, 0, 0, 0.2); - transition: all 150ms ease-in-out; } - -.card.collapsed { - background-color: #090b10; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.2); } - -/********* - * Noise * - *********/ -NoiseLibraryWindow { - border-radius: 0 0 4px 4px; } - NoiseLibraryWindow .action-bar { - border-radius: 0 0 4px 4px; } - NoiseLibraryWindow .window-frame { - border-radius: 3px; } - -/******** - * Snap * - ********/ -SnapMainWindow .take-button, -SnapSnapWindow .take-button { - border-radius: 0; } - -/******************* - * Photos/Shotwell * - *******************/ -DirectWindow .the-button-in-the-combobox, -LibraryWindow .the-button-in-the-combobox { - background: none; } - -.checkerboard-layout { - background-color: #0F111A; - background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)); - background-size: 24px 24px; - background-position: 0 0, 12px 12px; } - -.checkboard-layout .item { - background-color: #BFC3C4; } - -/********* -* Avatar * -*********/ -.avatar { - border: 1px solid rgba(0, 0, 0, 0.23); - border-radius: 50%; - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 0 rgba(255, 255, 255, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.23); } - -/**level bars**/ -.sidebar .source-list.view.level-bar, .sidebar iconview.source-list.level-bar, .sidebar .source-list.view.level-bar:selected, .sidebar iconview.source-list.level-bar:selected, .sidebar .source-list.view.level-bar:selected:focus, .sidebar iconview.source-list.level-bar:selected:focus { - background: linear-gradient(to right, #292f47, #292f47); - border: 1px solid rgba(0, 0, 0, 0.14); - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); - border-radius: 2px; } -.sidebar .source-list.view.level-bar.fill-block, .sidebar iconview.source-list.level-bar.fill-block { - border: none; } -.sidebar .source-list.view.fill-block, .sidebar iconview.source-list.fill-block, .sidebar .source-list.view.fill-block:hover, .sidebar iconview.source-list.fill-block:hover, .sidebar .source-list.view.fill-block:selected, .sidebar iconview.source-list.fill-block:selected, .sidebar .source-list.view.fill-block:selected:focus, .sidebar iconview.source-list.fill-block:selected:focus { - background: linear-gradient(to right, #FFCB6B, #FFCB6B); } - -/************************** - * Colors in context menu * -**************************/ -checkbutton.color-button { - border: 1px solid #040407; - border-radius: 100px; - background-clip: border-box; - padding: 0; - margin: 2px 1px; } - checkbutton.color-button > check { - -gtk-icon-source: none; - background: none; - margin-right: 0; - padding: 2px; } - checkbutton.color-button.none > check { - background-color: transparent; - border-radius: 100px; - -gtk-icon-source: -gtk-icontheme("close-symbolic"); } - -radiobutton.color-button > radio { - -gtk-icon-source: none; - margin-right: 0; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 100px; - background-clip: border-box; } -radiobutton.color-button:active > radio { - border: 1px solid rgba(0, 0, 0, 0.35); } - -.color-button check, -.color-button check:checked, -.color-button radio, -.color-button radio:checked { - background-image: none; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 50%; - color: #131520; - -gtk-icon-source: -gtk-icontheme("check-active-symbolic"); } -.color-button.red check, .color-button.red radio, .color-button.strawberry check, .color-button.strawberry radio { - background-color: @STRAWBERRY_300; - -gtk-icon-shadow: 0 1px 1px @STRAWBERRY_500; } -.color-button.orange check, .color-button.orange radio { - background-color: @ORANGE_300; - -gtk-icon-shadow: 0 1px 1px @ORANGE_500; } -.color-button.yellow check, .color-button.yellow radio, .color-button.banana check, .color-button.banana radio { - background-color: @BANANA_500; - -gtk-icon-shadow: 0 1px 1px @BANANA_700; } -.color-button.green check, .color-button.green radio, .color-button.lime check, .color-button.lime radio { - background-color: @LIME_500; - -gtk-icon-shadow: 0 1px 1px @LIME_700; } -.color-button.blue check, .color-button.blue radio, .color-button.blueberry check, .color-button.blueberry radio { - background-color: @BLUEBERRY_500; - -gtk-icon-shadow: 0 1px 1px @BLUEBERRY_700; } -.color-button.purple check, .color-button.purple radio, .color-button.grape check, .color-button.grape radio { - background-color: @GRAPE_500; - -gtk-icon-shadow: 0 1px 1px @GRAPE_700; } -.color-button.brown check, .color-button.brown radio, .color-button.cocoa check, .color-button.cocoa radio { - background-color: @COCOA_300; - -gtk-icon-shadow: 0 1px 1px @COCOA_500; } -.color-button.mint check, .color-button.mint radio { - background-color: @MINT_500; - -gtk-icon-shadow: 0 1px 1px @MINT_700; } -.color-button.pink check, .color-button.pink radio, .color-button.bubblegum check, .color-button.bubblegum radio { - background-color: @BUBBLEGUM_500; - -gtk-icon-shadow: 0 1px 1px @BUBBLEGUM_700; } -.color-button.slate check, .color-button.slate radio { - background-color: @SLATE_300; - -gtk-icon-shadow: 0 1px 1px @SLATE_500; } -.color-button.auto radio { - background-image: url("assets/color-button-auto.png"); - background-position: -1px -1px; - background-repeat: no-repeat; - background-size: calc(100% + 2px); } - -.xfce4-panel.panel { - background-color: #131520; - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(255, 255, 255, 0.8); - border-radius: 0; - border: none; - background-color: #131520; } - #tasklist-button:hover { - color: white; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #00A9A5; } - -.xfce4-panel.panel button.flat { - color: white; - border-radius: 0; - border: none; - background-color: #131520; } - .xfce4-panel.panel button.flat:hover { - border: none; - background-color: #252a41; } - .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.flat:checked { - color: #fefefe; - border-bottom: 2px solid #00A9A5; - background-color: #1c2031; } - .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.flat:checked image { - color: inherit; } - -#whiskermenu-window button { - background-color: transparent; - border: none; - border-radius: 0; - font-weight: normal; - padding: 3px; - margin: 1px 2px; } - #whiskermenu-window button:hover, #whiskermenu-window button:checked { - background-color: #00A9A5; } - -/******** -* Unity * -*********/ -/* Unity window border color */ -/* Unity window text color */ -/* Backdrop Unity window text color */ -/* Unity panel color #454D50 */ -UnityDecoration { - /* Border properties (top, right, bottom, left) */ - -UnityDecoration-extents: 28px 1px 1px 1px; - /* the size of the decorations */ - -UnityDecoration-input-extents: 10px; - /* the extra size of the input areas */ - /* Shadows settings */ - -UnityDecoration-shadow-offset-x: 1px; - /* Size property, the shadow x offset */ - -UnityDecoration-shadow-offset-y: 1px; - /* Size property, the shadow y offset */ - -UnityDecoration-active-shadow-color: rgba 0, 0, 0, 0.647; - /* Color property, active window shadow color */ - -UnityDecoration-active-shadow-radius: 8px; - /* Size property, active window shadow radius */ - -UnityDecoration-inactive-shadow-color: rgba 0, 0, 0, 0.647; - /* Color property, inactive windows shadow color */ - -UnityDecoration-inactive-shadow-radius: 5px; - /* Size property, inactive windows shadow radius */ - /* Glow applied to the selected scaled window */ - -UnityDecoration-glow-size: 8px; - /* Size property, size of glow */ - -UnityDecoration-glow-color: #00A9A5; - /* Color property of the glow */ - /* Title settings */ - -UnityDecoration-title-indent: 10px; - /* Size property, left indent of the title */ - -UnityDecoration-title-fade: 35px; - /* Size property, space of the title that can be faded */ - -UnityDecoration-title-alignment: 0.0; - /* Float from 0.0 to 1.0, to align the title */ - background-color: #eeeeee; - color: #31363D; } - UnityDecoration .top { - padding: 0 5px 0 5px; - border-radius: 4px 4px 0px 0px; - box-shadow: none; - border: 1px solid #eeeeee; - border-bottom-width: 0; - background-color: #eeeeee; - color: #31363D; - border-top: 1px solid rgba(255, 255, 255, 0.1); } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: #1a1d21; - border-top: 1px solid rgba(255, 255, 255, 0.1); } - UnityDecoration .top .menuitem { - color: #31363D; } - UnityDecoration .top .menuitem:backdrop { - color: #1a1d21; } - -UnityDecoration.left, -UnityDecoration.right { - background-repeat: repeat-x; - background-color: #ececec; - background-size: 1px 120px; - background-clip: border-box; - background-image: linear-gradient(to bottom, #eeeeee, #ececec); } - -UnityDecoration.bottom { - background-size: 1px; - background-repeat: repeat-x; - background-color: #ececec; } - -UnityDecoration.left:backdrop, -UnityDecoration.right:backdrop, -UnityDecoration.bottom:backdrop { - background-size: 1px; - background-repeat: repeat-x; } - -/************** -* Unity Panel * -***************/ -UnityPanelWidget, -.unity-panel { - background-color: #d5d5d5; - color: #31363D; } - -UnityPanelWidget:backdrop, -.unity-panel:backdrop { - color: #1a1d21; } - -.unity-panel.menuitem, -.unity-panel .menuitem { - border-width: 0 1px; - color: #31363D; } - -.unity-panel.menubar, -.unity-panel .menubar { - color: #31363D; } - -.unity-panel.menu.menubar, -.unity-panel .menu .menubar { - background-color: #d5d5d5; - color: #31363D; } - -.unity-panel.menubar:backdrop, -.unity-panel .menubar *:backdrop { - color: #676a6f; } - -.unity-panel.menubar.menuitem, -.unity-panel.menubar .menuitem { - padding: 3px 5px; - border-width: 1px; - border-style: solid; - border: none; - background: none; - color: #31363D; - box-shadow: none; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem:hover { - border-radius: 0; - background-color: #ebebeb; - color: #31363D; - box-shadow: none; } - -.unity-panel.menubar .menuitem *:hover { - color: white; - box-shadow: none; } - -.unity-panel.menubar .menuitem.separator, -.unity-panel.menubar.menuitem.separator { - border: none; - color: #040407; } - -/* Force Quit */ -SheetStyleDialog.unity-force-quit { - background-color: #131520; } - -@keyframes playbackmenuitem_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } -.menu IdoPlaybackMenuItem.menuitem:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: playbackmenuitem_spinner 1s infinite linear; - color: #00A9A5; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid #040407; } - MsdOsdWindow.background.osd .progressbar { - background-color: #00A9A5; - border: none; - border-color: #00A9A5; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: rgba(0, 0, 0, 0.93); - border: none; - border-radius: 5px; } - -/*********************** - * App-Specific Styles * - ***********************/ -/********* - * Geary * - *********/ -.geary-titlebar-left .separator, -.geary-titlebar-right .separator { - opacity: 0; } - -ConversationListView { - -GtkTreeView-grid-line-width: 0; } - ConversationListView .view:active, ConversationListView iconview:active, ConversationListView .view:selected, ConversationListView iconview:selected { - background-color: #00A9A5; - color: #fefefe; } - ConversationListView .view:active:backdrop, ConversationListView iconview:active:backdrop, ConversationListView .view:selected:backdrop, ConversationListView iconview:selected:backdrop { - background-color: rgba(0, 169, 165, 0.6); - color: rgba(254, 254, 254, 0.5); } - ConversationListView .view .cell, ConversationListView iconview .cell { - border: solid rgba(0, 0, 0, 0.2); - border-width: 0 0 1px 0; } - ConversationListView .view .cell:selected, ConversationListView iconview .cell:selected { - color: #fefefe; - border: 0px solid #007673; } - -/*********** - * LightDm * - ***********/ -#panel_window { - background-color: #131520; - color: white; - font-weight: bold; - box-shadow: inset 0 -1px #06060a; } - #panel_window .menubar, - #panel_window .menubar > .menuitem - menubar, - #panel_window menubar > menuitem { - background-color: transparent; - color: white; - font-weight: bold; } - #panel_window .menubar .menuitem:disabled, - #panel_window menubar menuitem:disabled { - color: rgba(255, 255, 255, 0.5); } - #panel_window .menubar .menuitem:disabled GtkLabel, - #panel_window menubar menuitem:disabled GtkLabel { - color: inherit; } - #panel_window .menubar .menuitem:disabled label, - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window .menubar .menu > .menuitem, - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #BFC3C4; } - -#content_frame { - padding-bottom: 14px; - background-color: #0F111A; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - #content_frame button:hover { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #131520; - text-shadow: none; } - #content_frame button:active, #content_frame button:checked { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background: #00A9A5; - text-shadow: none; } - #content_frame button:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #0a0b11; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; } - -#buttonbox_frame button { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - -#login_window #user_combobox { - color: #BFC3C4; - font-size: 13px; } - #login_window #user_combobox .menu, - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nemo-window .places-treeview { - -NemoPlacesTreeView-disk-full-bg-color: #292f47; - -NemoPlacesTreeView-disk-full-fg-color: #FFCB6B; - -GtkTreeView-vertical-separator: 7; } - .nemo-window .places-treeview .view.cell:hover, .nemo-window .places-treeview iconview.cell:hover, - .nemo-window .places-treeview iconview.cell:hover { - background: rgba(8, 9, 13, 0.7); } - .nemo-window .places-treeview .view.cell:selected, .nemo-window .places-treeview iconview.cell:selected, - .nemo-window .places-treeview iconview.cell:selected { - background: rgba(8, 9, 13, 0.93); } -.nemo-window .sidebar { - color: #98abb2; - background-color: #0d0f17; } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar .iconview, .nemo-window .sidebar row { - background-color: transparent; } -.nemo-window .nemo-window-pane widget.entry { - background-clip: padding-box; - min-height: 28px; - padding: 5px; - color: #BFC3C4; - border: 1px solid #040407; - border-radius: 3px; - box-shadow: inset 0 1px rgba(0, 0, 0, 0.9), inset 1px 0 rgba(0, 0, 0, 0.96), inset -1px 0 rgba(0, 0, 0, 0.96), inset 0 -1px rgba(0, 0, 0, 0.98), 0 1px rgba(255, 255, 255, 0.6); } - .nemo-window .nemo-window-pane widget.entry:selected { - background-color: #00A9A5; - color: #fefefe; } -.nemo-window toolbar.primary-toolbar { - margin-bottom: -1px; - background: #0a0b11; } - .nemo-window toolbar.primary-toolbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - min-height: 24px; - padding: 3px; } - .nemo-window toolbar.primary-toolbar button:hover { - color: #fefefe; - border-radius: 0; - text-shadow: none; - background-image: linear-gradient(to bottom, #131520, #0F111A); } - .nemo-window toolbar.primary-toolbar button:selected, .nemo-window toolbar.primary-toolbar button:active, .nemo-window toolbar.primary-toolbar button:checked { - background-color: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .nemo-window toolbar.primary-toolbar button:selected:backdrop, .nemo-window toolbar.primary-toolbar button:active:backdrop, .nemo-window toolbar.primary-toolbar button:checked:backdrop { - color: rgba(254, 254, 254, 0.5); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; } - .nemo-window toolbar.primary-toolbar button:backdrop, .nemo-window toolbar.primary-toolbar button:disabled, .nemo-window toolbar.primary-toolbar button:backdrop:disabled { - color: rgba(191, 195, 196, 0.2); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; } -.nemo-window .nemo-inactive-pane .view, .nemo-window .nemo-inactive-pane iconview, -.nemo-window .nemo-inactive-pane iconview { - background-color: #0f111a; } - -/* thunar */ -.thunar toolbar { - background-color: #0a0b11; } - -/* buttons in toolbar */ -.thunar toolbar.horizontal button image { - -gtk-icon-transform: scale(0.72); } - -/* path-bar of thunar */ -window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button, -.thunar toolbar .path-bar-button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0; - border-right: 1px solid #040407; - border-left: none; - box-shadow: none; - min-height: 20px; - padding: 3px 4px; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:first-child, - .thunar toolbar .path-bar-button:first-child { - border-left: 1px solid #040407; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:last-child, - .thunar toolbar .path-bar-button:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-right-style: solid; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:only-child, - .thunar toolbar .path-bar-button:only-child { - border-radius: 4px; - border-style: solid; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:hover, - .thunar toolbar .path-bar-button:hover { - color: #00A9A5; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:checked, - .thunar toolbar .path-bar-button:checked { - background-color: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } -window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .toggle.path-bar-button:hover, -.thunar toolbar .toggle.path-bar-button:hover { - background-color: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - -/* thunar sidepane */ -.thunar scrolledwindow.sidebar treeview.view { - background: #0d0f17; - padding: 1.5px; - border-radius: 0; - box-shadow: none; } - .thunar scrolledwindow.sidebar treeview.view:hover, .thunar scrolledwindow.sidebar treeview.view:selected { - background: #1a1e2d; - color: #cccfd0; } - -.caja-notebook .frame { - border-width: 0 0 1px; } -.caja-notebook .entry { - background: #0F111A; - color: #BFC3C4; - border-color: #040407; } - .caja-notebook .entry:selected { - background: #00A9A5; - color: #fefefe; } - -/************** -* Caja sidebar * -**************/ -.caja-side-pane { - background: #0d0f17; } - .caja-side-pane .frame { - border-width: 1px 0 0; } - .caja-side-pane treeview.view, - .caja-side-pane textview.view text, - .caja-side-pane viewport.frame, - .caja-side-pane widget .vertical { - background: #0d0f17; - padding: 3px 2px; } - .caja-side-pane treeview.view:hover, - .caja-side-pane textview.view text:hover, - .caja-side-pane viewport.frame:hover, - .caja-side-pane widget .vertical:hover { - background-color: rgba(11, 13, 20, 0.95); } - .caja-side-pane treeview.view:selected, - .caja-side-pane textview.view text:selected, - .caja-side-pane viewport.frame:selected, - .caja-side-pane widget .vertical:selected { - color: #98abb2; - background: rgba(8, 9, 13, 0.93); } - .caja-side-pane treeview.view:selected:hover, - .caja-side-pane textview.view text:selected:hover, - .caja-side-pane viewport.frame:selected:hover, - .caja-side-pane widget .vertical:selected:hover { - background: rgba(8, 9, 13, 0.93); - color: #fff; } - -/************** -* Caja pathbar * -**************/ -.caja-navigation-window paned { - background: #131520; } - -.caja-navigation-window .primary-toolbar { - background: #0a0b11; } - .caja-navigation-window .primary-toolbar button, .caja-navigation-window .primary-toolbar button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .caja-navigation-window .primary-toolbar button:hover, .caja-navigation-window .primary-toolbar button:active, .caja-navigation-window .primary-toolbar button:backdrop:active, .caja-navigation-window .primary-toolbar button:backdrop:checked { - background: #00A9A5; - box-shadow: none; } - .caja-navigation-window .primary-toolbar button:hover, .caja-navigation-window .primary-toolbar button:hover label, .caja-navigation-window .primary-toolbar button:active, .caja-navigation-window .primary-toolbar button:active label, .caja-navigation-window .primary-toolbar button:backdrop:active, .caja-navigation-window .primary-toolbar button:backdrop:active label, .caja-navigation-window .primary-toolbar button:backdrop:checked, .caja-navigation-window .primary-toolbar button:backdrop:checked label { - color: #fefefe; } - -.caja-pathbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0px; - border-right: 1px solid #040407; - border-left: none; - box-shadow: none; - min-height: 20px; - padding: 3px 5px; - margin-right: -3px; } - .caja-pathbar button:first-child { - border-left: 1px solid #040407; } - .caja-pathbar button:hover { - color: #00A9A5; } - .caja-pathbar button:checked { - background-color: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - -/*# sourceMappingURL=gtk.css.map */ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/thumbnail.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/thumbnail.png deleted file mode 100644 index 69cd538..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-3.0/thumbnail.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/gtk-dark.css b/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/gtk-dark.css deleted file mode 100755 index 17079d3..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/gtk-dark.css +++ /dev/null @@ -1,6489 +0,0 @@ -/*$selected_bg_color: #00e8c6;06d6a0*/ -/* GTK NAMED COLORS - ---------------- - use responsibly! */ -/* widget text/foreground color */ -@define-color theme_fg_color #BFC3C4; -/* text color for entries, views and content in general */ -@define-color theme_text_color #BFC3C4; -/* widget base background color */ -@define-color theme_bg_color #0F111A; -/* text widgets and the like base background color */ -@define-color theme_base_color #131520; -/* base background color of selections */ -@define-color theme_selected_bg_color #00A9A5; -/* text/foreground color of selections */ -@define-color theme_selected_fg_color #fefefe; -/* base background color of disabled widgets */ -@define-color insensitive_bg_color #151722; -/* text foreground color of disabled widgets */ -@define-color insensitive_fg_color #676a6f; -/* disabled text widgets and the like base background color */ -@define-color insensitive_base_color #131520; -/* widget text/foreground color on backdrop windows */ -@define-color theme_unfocused_fg_color #676a6f; -/* text color for entries, views and content in general on backdrop windows */ -@define-color theme_unfocused_text_color #BFC3C4; -/* widget base background color on backdrop windows */ -@define-color theme_unfocused_bg_color #0F111A; -/* text widgets and the like base background color on backdrop windows */ -@define-color theme_unfocused_base_color #151724; -/* base background color of selections on backdrop windows */ -@define-color theme_unfocused_selected_bg_color #00A9A5; -/* text/foreground color of selections on backdrop windows */ -@define-color theme_unfocused_selected_fg_color #fefefe; -/* widgets main borders color */ -@define-color borders #040407; -/* widgets main borders color on backdrop windows */ -@define-color unfocused_borders #050509; -/* these are pretty self explicative */ -@define-color warning_color #f4663c; -@define-color error_color #ff3a5b; -@define-color success_color #56ceff; -@define-color fg_color #BFC3C4; -@define-color text_color #BFC3C4; -@define-color bg_color #0F111A; -@define-color base_color #131520; -@define-color selected_bg_color #00A9A5; -@define-color selected_fg_color #fefefe; -@define-color unfocused_fg_color #676a6f; -@define-color unfocused_text_color #BFC3C4; -@define-color unfocused_bg_color #0F111A; -@define-color unfocused_base_color #151724; -@define-color unfocused_selected_bg_color #00A9A5; -@define-color unfocused_selected_fg_color #fefefe; -/* 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 shade(#BFC3C4, 1.8); -@define-color wm_unfocused_title #676a6f; -@define-color wm_highlight rgba(0, 0, 0, 0); -@define-color wm_borders_edge rgba(255, 255, 255, 0.1); -@define-color wm_bg_a shade(#0F111A, 1.2); -@define-color wm_bg_b #0F111A; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_border alpha(black, 0.18); -@define-color wm_button_hover_color_a shade(#0F111A, 1.3); -@define-color wm_button_hover_color_b #0F111A; -@define-color wm_button_active_color_a shade(#0F111A, 0.85); -@define-color wm_button_active_color_b shade(#0F111A, 0.89); -@define-color wm_button_active_color_c shade(#0F111A, 0.9); -@define-color content_view_bg #131520; -@define-color text_view_bg #131520; -@define-color budgie_tasklist_indicator_color #00A9A5; -@define-color budgie_tasklist_indicator_color_active #00A9A5; -@define-color placeholder_text_color #9da1a4; -@define-color STRAWBERRY_100 #ff8c82; -@define-color STRAWBERRY_300 #ed5353; -@define-color STRAWBERRY_500 #c6262e; -@define-color STRAWBERRY_700 #a10705; -@define-color STRAWBERRY_900 #7a0000; -@define-color ORANGE_100 #ffc27d; -@define-color ORANGE_300 #ffa154; -@define-color ORANGE_500 #f37329; -@define-color ORANGE_700 #cc3b02; -@define-color ORANGE_900 #a62100; -@define-color BANANA_100 #fff394; -@define-color BANANA_300 #ffe16b; -@define-color BANANA_500 #f9c440; -@define-color BANANA_700 #d48e15; -@define-color BANANA_900 #ad5f00; -@define-color LIME_100 #d1ff82; -@define-color LIME_300 #9bdb4d; -@define-color LIME_500 #68b723; -@define-color LIME_700 #3a9104; -@define-color LIME_900 #206b00; -@define-color MINT_100 #89ffdd; -@define-color MINT_300 #43d6b5; -@define-color MINT_500 #28bca3; -@define-color MINT_700 #0e9a83; -@define-color MINT_900 #007367; -@define-color BLUEBERRY_100 #8cd5ff; -@define-color BLUEBERRY_300 #64baff; -@define-color BLUEBERRY_500 #3689e6; -@define-color BLUEBERRY_700 #0d52bf; -@define-color BLUEBERRY_900 #002e99; -@define-color BUBBLEGUM_100 #fe9ab8; -@define-color BUBBLEGUM_300 #f4679d; -@define-color BUBBLEGUM_500 #de3e80; -@define-color BUBBLEGUM_700 #bc245d; -@define-color BUBBLEGUM_900 #910e38; -@define-color GRAPE_100 #e4c6fa; -@define-color GRAPE_300 #cd9ef7; -@define-color GRAPE_500 #a56de2; -@define-color GRAPE_700 #7239b3; -@define-color GRAPE_900 #452981; -@define-color COCOA_100 #a3907c; -@define-color COCOA_300 #8a715e; -@define-color COCOA_500 #715344; -@define-color COCOA_700 #57392d; -@define-color COCOA_900 #3d211b; -@define-color SILVER_100 #fafafa; -@define-color SILVER_300 #d4d4d4; -@define-color SILVER_500 #abacae; -@define-color SILVER_700 #7e8087; -@define-color SILVER_900 #555761; -@define-color SLATE_100 #95a3ab; -@define-color SLATE_300 #667885; -@define-color SLATE_500 #485a6c; -@define-color SLATE_700 #273445; -@define-color SLATE_900 #0e141f; -@define-color BLACK_100 #666; -@define-color BLACK_300 #4d4d4d; -@define-color BLACK_500 #333; -@define-color BLACK_700 #1a1a1a; -@define-color BLACK_900 #000; -/***************** -* Drawing mixins * -*****************/ -/********* -* Common * -*********/ -* { - padding: 0; - outline-color: rgba(191, 195, 196, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 0px; - -gtk-secondary-caret-color: #00A9A5; } - -/*********** - * Widgets * - ***********/ -/*************** -* Action bars * -***************/ -.action-bar, actionbar > revealer > box { - background-color: black; - border: solid #040407; - border-width: 1px 0 0 0; - color: #BFC3C4; - box-shadow: none; } - .action-bar:backdrop, actionbar > revealer > box:backdrop { - background-color: black; - box-shadow: none; } - .action-bar:first-child, actionbar > revealer > box:first-child { - border-radius: 6px 6px 0px 0px; - border-width: 1px 1px 0px 1px; } - .action-bar:last-child, actionbar > revealer > box:last-child { - border-radius: 0 0 6px 6px; - border-width: 0px 1px 1px 1px; } - -/********************* - * App Notifications * - *********************/ -.app-notification, -.app-notification.frame { - padding: 10px; - border-radius: 0 0 5px 5px; - background-color: rgba(8, 9, 13, 0.93); - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 2px); - background-clip: padding-box; } - .app-notification:backdrop, - .app-notification.frame:backdrop { - background-image: none; - transition: 200ms ease-out; } - .app-notification border, - .app-notification.frame border { - border: none; } - -/*************** - * Base States * - ***************/ -.background { - color: #BFC3C4; - background-color: #0F111A; } - .background:backdrop { - color: #676a6f; - background-color: #0F111A; - text-shadow: none; - -gtk-icon-shadow: none; } - -/* - 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. -*/ -.gtkstyle-fallback { - color: #BFC3C4; - background-color: #0F111A; } - .gtkstyle-fallback:hover { - color: #BFC3C4; - background-color: #22263a; } - .gtkstyle-fallback:active { - color: #BFC3C4; - background-color: black; } - .gtkstyle-fallback:disabled { - color: #676a6f; - background-color: #151722; } - .gtkstyle-fallback:selected { - color: #fefefe; - background-color: #00A9A5; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #BFC3C4; - background-color: #131520; } - .view:backdrop, iconview:backdrop, - .view text:backdrop, - iconview text:backdrop, - textview text:backdrop { - color: #9da1a4; - background-color: #151724; } - .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected { - border-radius: 3px; } - -textview border { - background-color: #11131d; } - -.rubberband, -rubberband, -flowbox rubberband, -.content-view rubberband, -columnview.view > rubberband, -treeview.view > rubberband { - border: 1px solid #007673; - background-color: rgba(0, 118, 115, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 3px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label { - caret-color: currentColor; } - label.separator { - color: #BFC3C4; } - label.separator:backdrop { - color: #676a6f; } - label selection { - background-color: #00A9A5; - color: #fefefe; } - label:disabled { - color: #676a6f; } - label:disabled:backdrop { - color: #2b314b; } - label:backdrop { - color: #676a6f; } - -.dim-label, label.separator, .titlebar .subtitle, -headerbar .subtitle { - opacity: 0.55; - text-shadow: none; } - -assistant .sidebar { - background-color: #131520; - border-top: 1px solid #040407; } - assistant .sidebar:backdrop { - background-color: #151724; - border-color: #050509; } -assistant.csd .sidebar { - border-top-style: none; } -assistant .sidebar label { - padding: 6px 12px; } -assistant .sidebar label.highlight { - background-color: #32353c; } - -.app-notification, -.app-notification.frame, .osd .scale-popup, .osd popover.background > arrow, -.osd popover.background > contents, popover.background.touch-selection > arrow, -popover.background.touch-selection > contents, popover.background.magnifier > arrow, -popover.background.magnifier > contents, .osd { - color: #BFC3C4; - border: none; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - outline-color: rgba(191, 195, 196, 0.3); - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .app-notification:backdrop, .osd .scale-popup:backdrop, .osd popover.background > arrow:backdrop, - .osd popover.background > contents:backdrop, popover.background.touch-selection > arrow:backdrop, - popover.background.touch-selection > contents:backdrop, popover.background.magnifier > arrow:backdrop, - popover.background.magnifier > contents:backdrop, .osd:backdrop { - text-shadow: none; - -gtk-icon-shadow: none; } - -*:selected { - background: #00A9A5; - color: #fefefe; } - -/*********** - * Buttons * - ***********/ -@keyframes needs_attention { - from { - background-image: radial-gradient(farthest-side, #00f6f0 0%, rgba(0, 246, 240, 0) 0%); } - to { - background-image: radial-gradient(farthest-side, #00f6f0 95%, rgba(0, 246, 240, 0)); } } -notebook > header > tabs > arrow, -button { - min-height: 20px; - min-width: 16px; - padding: 2px 6px; - border: 1px solid #040407; - border-radius: 4px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - notebook > header > tabs > arrow, - button.flat { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - transition: none; } - notebook > header > tabs > arrow:hover, - button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 500ms; - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:hover:active, - button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - notebook > header > tabs > arrow:hover, - button:hover { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; - -gtk-icon-filter: brightness(1.2); } - notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, - button:active, - button:checked { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background: #00908c; - text-shadow: none; - transition-duration: 50ms; } - notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:backdrop, - button:backdrop.flat, - button:backdrop { - color: #9da1a4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #151724; - text-shadow: none; - transition: 200ms ease-out; - -gtk-icon-filter: none; } - notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, - button:backdrop.flat:active, - button:backdrop.flat:checked, - button:backdrop:active, - button:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, - button:backdrop.flat:active label, - button:backdrop.flat:checked label, - button:backdrop:active label, - button:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - notebook > header > tabs > arrow:backdrop:disabled, notebook > header > tabs > arrow:backdrop:disabled, - button:backdrop.flat:disabled, - button:backdrop:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, - button:backdrop.flat:disabled:active, - button:backdrop.flat:disabled:checked, - button:backdrop:disabled:active, - button:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:disabled, notebook > header > tabs > arrow:backdrop:disabled, - button.flat:backdrop, - button.flat:disabled, - button.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - notebook > header > tabs > arrow:disabled, - button:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - notebook > header > tabs > arrow:disabled:active, notebook > header > tabs > arrow:disabled:checked, - button:disabled:active, - button:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:disabled:active label, notebook > header > tabs > arrow:disabled:checked label, - button:disabled:active label, - button:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - notebook > header > tabs > arrow.image-button, - button.image-button { - min-width: 24px; - padding-left: 4px; - padding-right: 4px; } - notebook > header > tabs > arrow.image-button.circular, notebook > header > tabs > arrow.image-button.sidebar-button, - button.image-button.circular, - button.image-button.sidebar-button { - padding: 6px 4px; - border-radius: 50px; - box-shadow: none; } - notebook > header > tabs > arrow.text-button, - button.text-button { - padding-left: 16px; - padding-right: 16px; } - notebook > header > tabs > arrow.text-button.image-button, - button.text-button.image-button { - padding-left: 8px; - padding-right: 8px; - border-radius: 2px; } - notebook > header > tabs > arrow.text-button.image-button label, - button.text-button.image-button label { - padding-left: 8px; - padding-right: 8px; } - combobox:drop(active) button.combo, notebook > header > tabs > arrow:drop(active), - button:drop(active) { - color: #00A9A5; - border-color: #00A9A5; - box-shadow: inset 0 0 0 1px #00A9A5; } -row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled) { - color: #fefefe; - border-color: transparent; } - row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop { - color: #676a6f; } -button.osd { - min-width: 24px; - min-height: 20px; - color: #BFC3C4; - border-radius: 5px; - outline-color: rgba(191, 195, 196, 0.3); - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd.image-button { - min-width: 32px; } - button.osd:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd:active, - button.osd:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd:disabled:backdrop, - button.osd:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - border: none; } - button.osd:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - border: none; } -.app-notification button, -.app-notification.frame button, popover.background.touch-selection button, popover.background.magnifier button, -.osd button { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, - .osd button:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:active:backdrop, popover.background.touch-selection button:active:backdrop, popover.background.magnifier button:active:backdrop, .app-notification button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .app-notification button:checked:backdrop, popover.background.touch-selection button:checked:backdrop, popover.background.magnifier button:checked:backdrop, .app-notification button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, - .osd button:active:backdrop, - .osd button:active, - .osd button:checked:backdrop, - .osd button:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:disabled:backdrop, popover.background.touch-selection button:disabled:backdrop, popover.background.magnifier button:disabled:backdrop, .app-notification button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, - .osd button:disabled:backdrop, - .osd button:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button:backdrop, popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop, - .osd button:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button.flat, popover.background.touch-selection button.flat, popover.background.magnifier button.flat, - .osd button.flat { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - box-shadow: none; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .app-notification button.flat:hover, popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover, - .osd button.flat:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button.flat:disabled, popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled, - .osd button.flat:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - background-image: none; - border-color: transparent; - box-shadow: none; } - .app-notification button.flat:backdrop, popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop, - .osd button.flat:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button.flat:active, popover.background.touch-selection button.flat:active, popover.background.magnifier button.flat:active, .app-notification button.flat:checked, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked, - .osd button.flat:active, - .osd button.flat:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } -button.suggested-action { - border: none; - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .selection-mode windowcontrols button, button.suggested-action.flat { - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - button.suggested-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:active, button.suggested-action:checked { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #F78C6C; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop, button.suggested-action:backdrop, button.suggested-action.flat:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop label, button.suggested-action:backdrop label, button.suggested-action.flat:backdrop label { - color: rgba(255, 255, 255, 0.5); } - .selection-mode windowcontrols button:backdrop:active, .selection-mode windowcontrols button:backdrop:checked, button.suggested-action:backdrop:active, button.suggested-action:backdrop:checked, button.suggested-action.flat:backdrop:active, button.suggested-action.flat:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop:active label, .selection-mode windowcontrols button:backdrop:checked label, button.suggested-action:backdrop:active label, button.suggested-action:backdrop:checked label, button.suggested-action.flat:backdrop:active label, button.suggested-action.flat:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - .selection-mode windowcontrols button:backdrop:disabled, button.suggested-action:backdrop:disabled, button.suggested-action.flat:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop:disabled label, button.suggested-action:backdrop:disabled label, button.suggested-action.flat:backdrop:disabled label { - color: rgba(255, 255, 255, 0.5); } - .selection-mode windowcontrols button:backdrop:disabled:active, .selection-mode windowcontrols button:backdrop:disabled:checked, button.suggested-action:backdrop:disabled:active, button.suggested-action:backdrop:disabled:checked, button.suggested-action.flat:backdrop:disabled:active, button.suggested-action.flat:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop, .selection-mode windowcontrols button:disabled, .selection-mode windowcontrols button:backdrop:disabled, button.suggested-action.flat:backdrop, button.suggested-action.flat:disabled, button.suggested-action.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(247, 140, 108, 0.8); } - button.suggested-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:disabled:active, button.suggested-action:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:disabled:active label, button.suggested-action:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - .osd button.suggested-action { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(247, 140, 108, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(247, 140, 108, 0.7), rgba(247, 140, 108, 0.7)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:active:backdrop, .osd button.suggested-action:active, .osd button.suggested-action:checked:backdrop, .osd button.suggested-action:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, #F78C6C, #F78C6C); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:disabled:backdrop, .osd button.suggested-action:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd button.suggested-action:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(247, 140, 108, 0.5), rgba(247, 140, 108, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -button.destructive-action { - border: none; - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #FF5370, #FF5370); } - button.destructive-action.flat { - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - button.destructive-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:active, button.destructive-action:checked { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop, button.destructive-action.flat:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop label, button.destructive-action.flat:backdrop label { - color: rgba(255, 255, 255, 0.5); } - button.destructive-action:backdrop:active, button.destructive-action:backdrop:checked, button.destructive-action.flat:backdrop:active, button.destructive-action.flat:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - button.destructive-action:backdrop:active label, button.destructive-action:backdrop:checked label, button.destructive-action.flat:backdrop:active label, button.destructive-action.flat:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - button.destructive-action:backdrop:disabled, button.destructive-action.flat:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop:disabled label, button.destructive-action.flat:backdrop:disabled label { - color: rgba(255, 255, 255, 0.5); } - button.destructive-action:backdrop:disabled:active, button.destructive-action:backdrop:disabled:checked, button.destructive-action.flat:backdrop:disabled:active, button.destructive-action.flat:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - button.destructive-action.flat:backdrop, button.destructive-action.flat:disabled, button.destructive-action.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(255, 32, 70, 0.8); } - button.destructive-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:disabled:active, button.destructive-action:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:disabled:active label, button.destructive-action:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - .osd button.destructive-action { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(255, 32, 70, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(255, 32, 70, 0.7), rgba(255, 32, 70, 0.7)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:active:backdrop, .osd button.destructive-action:active, .osd button.destructive-action:checked:backdrop, .osd button.destructive-action:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, #ff2046, #ff2046); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:disabled:backdrop, .osd button.destructive-action:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd button.destructive-action:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(255, 32, 70, 0.5), rgba(255, 32, 70, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -.stack-switcher > button { - outline-offset: -3px; } - .stack-switcher > button > label { - padding-left: 6px; - padding-right: 6px; } - .stack-switcher > button > image { - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - padding-bottom: 3px; } - .stack-switcher > button.text-button { - padding-left: 10px; - padding-right: 10px; } - .stack-switcher > button.image-button { - padding-left: 2px; - padding-right: 2px; } - .stack-switcher > button.needs-attention:active > label, - .stack-switcher > button.needs-attention:active > image, .stack-switcher > button.needs-attention:checked > label, - .stack-switcher > button.needs-attention:checked > image { - animation: none; - background-image: none; } -.inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } -.primary-toolbar button, .primary-toolbar .raised button { - -gtk-icon-shadow: none; } - .primary-toolbar button:hover, .primary-toolbar button:focus, .primary-toolbar .raised button:hover, .primary-toolbar .raised button:focus { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; } - -.stack-switcher > button.needs-attention > label, -.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: radial-gradient(farthest-side, #00f6f0 96%, rgba(0, 246, 240, 0)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > button.needs-attention > label:backdrop, - .stack-switcher > button.needs-attention > image:backdrop, stacksidebar row.needs-attention > label:backdrop { - background-size: 6px 6px, 0 0; } - .stack-switcher > button.needs-attention > label:dir(rtl), - .stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 2px; } - -toolbar button:hover { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } -toolbar button:active { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - -.inline-toolbar toolbutton > button { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .inline-toolbar toolbutton > button:hover { - color: #fefefe; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #f1f1f1; } - .inline-toolbar toolbutton > button:disabled { - color: #9da1a4; } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(241, 241, 241, 0.3); } - .inline-toolbar toolbutton > button:backdrop { - color: #9da1a4; } - .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked { - color: #f1f1f1; } - .inline-toolbar toolbutton > button:backdrop:disabled { - color: #9da1a4; } - .inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked { - color: rgba(241, 241, 241, 0.3); } - -toolbar.inline-toolbar toolbutton > button.flat:backdrop, -toolbar.inline-toolbar toolbutton:backdrop > button.flat:backdrop { - border-color: transparent; - box-shadow: none; } - -.inline-toolbar button, .inline-toolbar button:backdrop, .linked > button, .linked > button:hover, .linked > button:active, .linked > button:checked, .linked > button:backdrop, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > -entry, .linked > combobox > box > button.combo:dir(ltr), .linked > combobox > box > button.combo:dir(rtl) { - border: 1px solid #040407; - border-radius: 0; - border-right-style: none; - box-shadow: none; } - .inline-toolbar button:disabled, .linked > button:disabled, .linked:not(.vertical) > spinbutton:disabled:not(.vertical), .linked:not(.vertical) > - entry:disabled, .linked > combobox > box > button.combo:disabled:dir(ltr), .linked > combobox > box > button.combo:disabled:dir(rtl) { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; - color: #676a6f; } - -.inline-toolbar button:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > -entry:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } -.inline-toolbar button:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > -entry:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } -.inline-toolbar button:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > -entry:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > button, .linked.vertical > button:hover, .linked.vertical > button:active, .linked.vertical > button:checked, .linked.vertical > button:backdrop, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > -entry, .linked.vertical > combobox > box > button.combo { - border-style: solid solid none solid; - border-radius: 0; } - -.linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > -entry:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } -.linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > -entry:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-style: solid; } -.linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > -entry:only-child { - border-radius: 3px; - border-style: solid; } - -modelbutton.flat, -.menuitem.button.flat, modelbutton.flat:backdrop, modelbutton.flat:backdrop:hover, -.menuitem.button.flat:backdrop, -.menuitem.button.flat:backdrop:hover, calendar.button, calendar.button:hover, calendar.button:backdrop, calendar.button:disabled, button:link, -button:visited, button:link:hover, button:link:active, button:link:checked, -button:visited:hover, -button:visited:active, -button:visited:checked, .scale-popup button:hover, .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - -/* menu buttons */ -modelbutton.flat, -.menuitem.button.flat { - min-height: 26px; - padding-left: 5px; - padding-right: 5px; - border-radius: 3px; - outline-offset: -2px; } - modelbutton.flat:hover, - .menuitem.button.flat:hover { - background-color: #1e2234; } - modelbutton.flat check:last-child, - modelbutton.flat radio:last-child, - .menuitem.button.flat check:last-child, - .menuitem.button.flat radio:last-child { - margin-left: 8px; } - modelbutton.flat check:first-child, - modelbutton.flat radio:first-child, - .menuitem.button.flat check:first-child, - .menuitem.button.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow { - background: none; } - modelbutton.flat arrow:hover { - background: none; } - 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 { - padding: 4px; } - button.color colorswatch:only-child, button.color colorswatch:only-child overlay { - border-radius: 0; } - -notebook button, list button, .view button, iconview button, popover button { - box-shadow: none; } - notebook button:backdrop, list button:backdrop, .view button:backdrop, iconview button:backdrop, popover button:backdrop { - box-shadow: none; } -notebook .linked > button, list .linked > button, .view .linked > button, iconview .linked > button, popover .linked > button { - box-shadow: none; } - -/************ - * Calendar * - ***********/ -calendar { - color: #BFC3C4; - border: 1px solid #040407; } - calendar:selected { - border-radius: 3px; } - calendar.header { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0; } - calendar.header:backdrop { - border-color: rgba(0, 0, 0, 0.1); } - calendar.button { - color: rgba(191, 195, 196, 0.45); } - calendar.button:hover { - color: #BFC3C4; } - calendar.button:backdrop { - color: rgba(103, 106, 111, 0.45); } - calendar.button:disabled { - color: rgba(103, 106, 111, 0.45); } - calendar:indeterminate, calendar:indeterminate:backdrop { - color: alpha(currentColor,0.55); } - calendar.highlight, calendar.highlight:backdrop { - font-size: smaller; - color: #BFC3C4; } - calendar:backdrop { - color: #9da1a4; - border-color: #050509; } - -/************************* - * Check and Radio Items * - *************************/ -check { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-dark.png"), url("../assets/radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-hover-dark.png"), url("../assets/checkbox-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -radio:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-hover-dark.png"), url("../assets/radio-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -check:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-active-dark.png"), url("../assets/checkbox-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -radio:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-active-dark.png"), url("../assets/radio-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -check:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-backdrop-dark.png"), url("../assets/checkbox-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -radio:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-backdrop-dark.png"), url("../assets/radio-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -check:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:checked { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-dark.png"), url("../assets/radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-hover-dark.png"), url("../assets/checkbox-checked-hover@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-hover-dark.png"), url("../assets/radio-checked-hover@2.png")); - -gtk-icon-shadow: none; } - -check:checked:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-active-dark.png"), url("../assets/checkbox-checked-active@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active-dark.png"), url("../assets/radio-checked-active@2.png")); - -gtk-icon-shadow: none; } - -check:checked:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-backdrop-dark.png"), url("../assets/checkbox-checked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-backdrop-dark.png"), url("../assets/radio-checked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed.png"), url("../assets/checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed.png"), url("../assets/radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-hover.png"), url("../assets/checkbox-mixed-hover@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-hover.png"), url("../assets/radio-mixed-hover@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-active.png"), url("../assets/checkbox-mixed-active@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-backdrop.png"), url("../assets/checkbox-mixed-backdrop@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-backdrop.png"), url("../assets/radio-mixed-backdrop@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check, iconview.content-view check, -.view.content-view.check, -iconview.content-view.check { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio, iconview.content-view radio, -.view.content-view.radio, -iconview.content-view.radio { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked.png"), url("../assets/radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:hover, iconview.content-view check:hover, -.view.content-view.check:hover, -iconview.content-view.check:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-hover.png"), url("../assets/checkbox-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:hover, iconview.content-view radio:hover, -.view.content-view.radio:hover, -iconview.content-view.radio:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-hover.png"), url("../assets/radio-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:active, iconview.content-view check:active, -.view.content-view.check:active, -iconview.content-view.check:active { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-active.png"), url("../assets/checkbox-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:active, iconview.content-view radio:active, -.view.content-view.radio:active, -iconview.content-view.radio:active { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-active.png"), url("../assets/radio-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:backdrop, iconview.content-view check:backdrop, -.view.content-view.check:backdrop, -iconview.content-view.check:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop.png"), url("../assets/checkbox-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:backdrop, iconview.content-view radio:backdrop, -.view.content-view.radio:backdrop, -iconview.content-view.radio:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop.png"), url("../assets/radio-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:disabled, iconview.content-view check:disabled, -.view.content-view.check:disabled, -iconview.content-view.check:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-insensitive.png"), url("../assets/checkbox-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:disabled, iconview.content-view radio:disabled, -.view.content-view.radio:disabled, -iconview.content-view.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-insensitive.png"), url("../assets/radio-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:disabled:backdrop, iconview.content-view check:disabled:backdrop, -.view.content-view.check:disabled:backdrop, -iconview.content-view.check:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop-insensitive.png"), url("../assets/checkbox-unchecked-backdrop-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:disabled:backdrop, iconview.content-view radio:disabled:backdrop, -.view.content-view.radio:disabled:backdrop, -iconview.content-view.radio:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop-insensitive.png"), url("../assets/radio-unchecked-backdrop-insensitive@2.png")); - -gtk-icon-shadow: none; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child { - margin-left: 4px; } - checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - margin: 0 4px; - min-height: 16px; - min-width: 16px; - border: none; } - menu menuitem check, menu menuitem - radio { - margin: 0; } - menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem - radio, menu menuitem - radio:hover, menu menuitem - radio:disabled { - min-height: 14px; - min-width: 14px; - background-image: none; - background-color: transparent; - box-shadow: none; - -gtk-icon-shadow: none; - color: inherit; - border-color: currentColor; - animation: none; } - -/***************** - * Color Chooser * - *****************/ -colorswatch, colorswatch:drop(active) { - border-style: none; } -colorswatch.top { - border-top-left-radius: 5.5px; - border-top-right-radius: 5.5px; } - colorswatch.top overlay { - border-top-left-radius: 5px; - border-top-right-radius: 5px; } -colorswatch.bottom { - border-bottom-left-radius: 5.5px; - border-bottom-right-radius: 5.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 5.5px; - border-bottom-left-radius: 5.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 5px; - border-bottom-left-radius: 5px; } -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 5.5px; - border-bottom-right-radius: 5.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 5px; - border-bottom-right-radius: 5px; } -colorswatch.dark overlay { - color: #fefefe; } - colorswatch.dark overlay:hover { - border-color: #040407; } - colorswatch.dark overlay:backdrop { - color: rgba(254, 254, 254, 0.5); } -colorswatch.light overlay { - color: #BFC3C4; } - colorswatch.light overlay:hover { - border-color: #040407; } - colorswatch.light overlay:backdrop { - color: #9da1a4; } -colorswatch:drop(active) { - box-shadow: none; } - colorswatch:drop(active).light overlay { - border-color: #00A9A5; - box-shadow: inset 0 0 0 2px #040407, inset 0 0 0 1px #00A9A5; } - colorswatch:drop(active).dark overlay { - border-color: #00A9A5; - box-shadow: inset 0 0 0 2px #040407, inset 0 0 0 1px #00A9A5; } -colorswatch overlay { - box-shadow: inset 0 3px 2px -2px rgba(0, 0, 0, 0.5); - border: 1px solid #040407; } - colorswatch overlay:hover { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.3); } - colorswatch overlay:backdrop, colorswatch overlay:backdrop:hover { - border-color: #040407; - box-shadow: none; } -colorswatch#add-color-button { - border-radius: 5px 5px 0 0; } - colorswatch#add-color-button:only-child { - border-radius: 5px; } - colorswatch#add-color-button overlay { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - colorswatch#add-color-button overlay:hover { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #131520; - text-shadow: none; } - colorswatch#add-color-button overlay:backdrop { - color: #9da1a4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #151724; - text-shadow: none; } -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } -row:selected colorswatch { - box-shadow: 0 0 0 2px #fefefe; } -colorswatch#editor-color-sample { - border-radius: 4px; } - colorswatch#editor-color-sample overlay { - border-radius: 4.5px; } - -colorchooser .popover.osd { - border-radius: 5px; } - -/************** - * ComboBoxes * - **************/ -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } -combobox:drop(active) { - box-shadow: none; } - -/*********** - * Dialogs * - ***********/ -messagedialog .titlebar:not(headerbar) { - background-color: rgba(15, 17, 26, 0.95); } -messagedialog .titlebar { - min-height: 20px; - background-image: none; - background-color: rgba(15, 17, 26, 0.95); - border-style: none; - border-top-left-radius: 4px; - border-top-right-radius: 4px; } -messagedialog.csd.background { - background-color: rgba(15, 17, 26, 0.95); - color: #BFC3C4; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } -messagedialog.csd .dialog-action-area button { - padding: 10px 14px; - border-radius: 0; - border-left-style: solid; - border-right-style: none; - border-bottom-style: none; - background-color: transparent; - color: #BFC3C4; - box-shadow: none; } - messagedialog.csd .dialog-action-area button:hover { - background-color: rgba(0, 169, 165, 0.9); - color: white; } - messagedialog.csd .dialog-action-area button:first-child { - border-left-style: none; - border-bottom-left-radius: 4px; } - messagedialog.csd .dialog-action-area button:last-child { - border-bottom-right-radius: 4px; } - messagedialog.csd .dialog-action-area button.destructive-action, messagedialog.csd .dialog-action-area button.suggested-action { - color: white; } - -filechooser .dialog-action-box { - border-top: 1px solid #040407; } - filechooser .dialog-action-box:backdrop { - border-top-color: #050509; } -filechooser #pathbarbox { - border-bottom: 1px solid #0F111A; } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -/**************** - * Text Entries * - ****************/ -spinbutton:not(.vertical), entry { - min-height: 28px; - padding-left: 8px; - padding-right: 8px; - border: 1px solid; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; } - spinbutton:not(.vertical) image.left, - entry image.left { - padding-left: 0; - padding-right: 6px; } - spinbutton:not(.vertical) image.right, - entry image.right { - padding-left: 6px; - padding-right: 0; } - spinbutton:not(.vertical) undershoot.left, - entry undershoot.left { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-left: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: left center; - border: none; - box-shadow: none; } - spinbutton:not(.vertical) undershoot.right, - entry undershoot.right { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-right: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: right center; - border: none; - box-shadow: none; } - spinbutton.flat:focus-within:not(.vertical), spinbutton.flat:not(.vertical), - entry.flat:focus-within, - entry.flat { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - box-shadow: none; - border-radius: 0; } - spinbutton:focus-within:not(.vertical), - entry:focus-within { - border-color: #007673; } - spinbutton:disabled:not(.vertical), - entry:disabled { - color: #676a6f; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - box-shadow: none; } - spinbutton:backdrop:not(.vertical), - entry:backdrop { - color: #9da1a4; - border-color: #050509; - background-color: #151724; - box-shadow: none; - transition: 200ms ease-out; } - spinbutton:backdrop:disabled:not(.vertical), - entry:backdrop:disabled { - color: #2b314b; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - box-shadow: none; } - spinbutton.error:not(.vertical), - entry.error { - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; - color: #ff3a5b; - border-color: #860017; } - spinbutton.error:focus-within:not(.vertical), - entry.error:focus-within { - border-color: #860017; } - spinbutton.error:selected:focus:not(.vertical), spinbutton.error:selected:not(.vertical), - entry.error:selected:focus, - entry.error:selected { - background-color: #ff3a5b; } - spinbutton.warning:not(.vertical), - entry.warning { - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; - color: #f4663c; - border-color: #772006; } - spinbutton.warning:focus-within:not(.vertical), - entry.warning:focus-within { - border-color: #772006; } - spinbutton.warning:selected:focus:not(.vertical), spinbutton.warning:selected:not(.vertical), - entry.warning:selected:focus, - entry.warning:selected { - background-color: #f4663c; } - spinbutton:not(.vertical) image, - entry image { - color: #9da0a3; } - spinbutton:not(.vertical) image:hover, - entry image:hover { - color: #BFC3C4; } - spinbutton:not(.vertical) image:active, - entry image:active { - color: #00A9A5; } - spinbutton:not(.vertical) image:backdrop, - entry image:backdrop { - color: #575960; } - spinbutton:drop(active):focus-within:not(.vertical), spinbutton:drop(active):not(.vertical), - entry:drop(active):focus-within, - entry:drop(active) { - border-color: #00A9A5; - box-shadow: inset 0 0 0 1px #00A9A5; } - .osd spinbutton:not(.vertical), - .osd entry { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(4, 4, 7, 0.5); - box-shadow: none; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:focus-within:not(.vertical), - .osd entry:focus-within { - color: #BFC3C4; - border-color: #00A9A5; - background-color: rgba(4, 4, 7, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:backdrop:not(.vertical), - .osd entry:backdrop { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(4, 4, 7, 0.5); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd spinbutton:disabled:not(.vertical), - .osd entry:disabled { - color: #646669; - border-color: #040407; - background-color: rgba(26, 28, 31, 0.5); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -spinbutton:not(.vertical) progress, -entry progress { - margin: 2px -6px; - background-color: transparent; - background-image: none; - border-radius: 0; - border-width: 0 0 2px; - border-color: #00A9A5; - border-style: solid; - box-shadow: none; } - spinbutton:not(.vertical) progress:backdrop, - entry progress:backdrop { - background-color: transparent; } -.linked:not(.vertical) > spinbutton:focus-within:not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:focus-within:not(.vertical) + button, .linked:not(.vertical) > spinbutton:focus-within:not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > -entry:focus-within + spinbutton:not(.vertical), .linked:not(.vertical) > -entry:focus-within + button, .linked:not(.vertical) > -entry:focus-within + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus-within:not(.vertical) + -entry, .linked:not(.vertical) > -entry:focus-within + -entry { - border-left-color: #007673; } -.linked:not(.vertical) > spinbutton:focus-within:not(.vertical), .linked:not(.vertical) > -entry:focus-within { - border-color: #007673; } -.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + button, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > -entry:drop(active) + spinbutton:not(.vertical), .linked:not(.vertical) > -entry:drop(active) + button, .linked:not(.vertical) > -entry:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + -entry, .linked:not(.vertical) > -entry:drop(active) + -entry { - border-left-color: #00A9A5; } -.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled), .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):not(.vertical), .linked.vertical > -entry:not(:disabled) + entry:not(:disabled), .linked.vertical > -entry:not(:disabled) + spinbutton:not(:disabled):not(.vertical) { - border-top-color: #0f1019; - background-image: linear-gradient(to bottom, #131520, #131520); } - .linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled):backdrop, .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):backdrop:not(.vertical), .linked.vertical > - entry:not(:disabled) + entry:not(:disabled):backdrop, .linked.vertical > - entry:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical) { - border-top-color: #10121c; - background-image: linear-gradient(to bottom, #151724, #151724); } -.linked.vertical > spinbutton:disabled:not(.vertical) + spinbutton:disabled:not(.vertical), .linked.vertical > spinbutton:disabled:not(.vertical) + entry:disabled, .linked.vertical > -entry:disabled + spinbutton:disabled:not(.vertical), .linked.vertical > -entry:disabled + entry:disabled { - border-top-color: #0f1019; } -.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus:not(:only-child):not(.vertical), -.linked.vertical > spinbutton:not(.vertical) + entry:focus:not(:only-child), .linked.vertical > -entry + spinbutton:focus:not(:only-child):not(.vertical), -.linked.vertical > -entry + entry:focus:not(:only-child) { - border-top-color: #007673; } -.linked.vertical > spinbutton:not(.vertical) + spinbutton:drop(active):not(:only-child):not(.vertical), -.linked.vertical > spinbutton:not(.vertical) + entry:drop(active):not(:only-child), .linked.vertical > -entry + spinbutton:drop(active):not(:only-child):not(.vertical), -.linked.vertical > -entry + entry:drop(active):not(:only-child) { - border-top-color: #00A9A5; } -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + spinbutton:not(.vertical), -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + entry, -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + button, -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > -entry:focus:not(:only-child) + spinbutton:not(.vertical), -.linked.vertical > -entry:focus:not(:only-child) + entry, -.linked.vertical > -entry:focus:not(:only-child) + button, -.linked.vertical > -entry:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #007673; } -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + spinbutton:not(.vertical), -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + entry, -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + button, -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > -entry:drop(active):not(:only-child) + spinbutton:not(.vertical), -.linked.vertical > -entry:drop(active):not(:only-child) + entry, -.linked.vertical > -entry:drop(active):not(:only-child) + button, -.linked.vertical > -entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-top-color: #00A9A5; } - -treeview entry:focus-within:dir(rtl), treeview entry:focus-within:dir(ltr) { - background-color: #131520; - transition-property: color, background; } -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #131520; } - treeview entry.flat:focus-within, treeview entry:focus-within { - border-color: #00A9A5; } - -/************* - * Expanders * - *************/ -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: white; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -/**************** - * Floating Bar * - ****************/ -.floating-bar { - background-color: #0F111A; - border-width: 1px; - border-style: solid solid none; - border-color: #040407; - border-radius: 3px 3px 0 0; - box-shadow: none; } - .floating-bar.bottom.left { - border-left-style: none; - border-top-left-radius: 0; } - .floating-bar.bottom.right { - border-right-style: none; - border-top-right-radius: 0; } - .floating-bar > button { - padding: 4px; } - .floating-bar:backdrop { - background-color: #0F111A; - border-color: #050509; } - -/********** - * Frames * - **********/ -frame > border, -.frame { - box-shadow: none; - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #040407; } - frame > border.flat, - .frame.flat { - border-style: none; } - frame > border:backdrop, - .frame:backdrop { - border-color: #050509; } - -actionbar > revealer > box { - padding: 6px; - border-top: 1px solid #040407; } - actionbar > revealer > box:backdrop { - border-color: #050509; } - -scrolledwindow viewport.frame { - border-style: none; } -scrolledwindow overshoot.top { - background-image: radial-gradient(farthest-side at top, #1c2031 85%, rgba(28, 32, 49, 0)), radial-gradient(farthest-side at top, #1c2031, rgba(28, 32, 49, 0)); - background-size: 100% 5%, 100% 100%; - background-repeat: no-repeat; - background-position: center top; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.top:backdrop { - background-image: radial-gradient(farthest-side at top, #1c2031 85%, rgba(28, 32, 49, 0)); - background-size: 100% 5%; - background-repeat: no-repeat; - background-position: center top; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.bottom { - background-image: radial-gradient(farthest-side at bottom, #1c2031 85%, rgba(28, 32, 49, 0)), radial-gradient(farthest-side at bottom, #1c2031, rgba(28, 32, 49, 0)); - background-size: 100% 5%, 100% 100%; - background-repeat: no-repeat; - background-position: center bottom; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.bottom:backdrop { - background-image: radial-gradient(farthest-side at bottom, #1c2031 85%, rgba(28, 32, 49, 0)); - background-size: 100% 5%; - background-repeat: no-repeat; - background-position: center bottom; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.left { - background-image: radial-gradient(farthest-side at left, #1c2031 85%, rgba(28, 32, 49, 0)), radial-gradient(farthest-side at left, #1c2031, rgba(28, 32, 49, 0)); - background-size: 5% 100%, 100% 100%; - background-repeat: no-repeat; - background-position: left center; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.left:backdrop { - background-image: radial-gradient(farthest-side at left, #1c2031 85%, rgba(28, 32, 49, 0)); - background-size: 5% 100%; - background-repeat: no-repeat; - background-position: left center; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.right { - background-image: radial-gradient(farthest-side at right, #1c2031 85%, rgba(28, 32, 49, 0)), radial-gradient(farthest-side at right, #1c2031, rgba(28, 32, 49, 0)); - background-size: 5% 100%, 100% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.right:backdrop { - background-image: radial-gradient(farthest-side at right, #1c2031 85%, rgba(28, 32, 49, 0)); - background-size: 5% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow undershoot.top { - background-color: transparent; - background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-top: 1px; - background-size: 10px 1px; - background-repeat: repeat-x; - background-origin: content-box; - background-position: center top; - border: none; - box-shadow: none; } -scrolledwindow undershoot.bottom { - background-color: transparent; - background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-bottom: 1px; - background-size: 10px 1px; - background-repeat: repeat-x; - background-origin: content-box; - background-position: center bottom; - border: none; - box-shadow: none; } -scrolledwindow undershoot.left { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-left: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: left center; - border: none; - box-shadow: none; } -scrolledwindow undershoot.right { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-right: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: right center; - border: none; - box-shadow: none; } -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #040407 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #11131d; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - scrolledwindow junction:backdrop { - border-image-source: linear-gradient(to bottom, #050509 1px, transparent 1px); - background-color: #090b10; - transition: 200ms ease-out; } - -separator { - background: rgba(0, 0, 0, 0.1); } - -/************ - * Popovers * - ************/ -GraniteWidgetsPopOver { - border: 1px solid #131520; - background: #131520; - color: #BFC3C4; } - GraniteWidgetsPopOver .button { - background-image: none; - background: none; - border: none; } - GraniteWidgetsPopOver .button:active, GraniteWidgetsPopOver .button:active:hover { - color: #00A9A5; } - GraniteWidgetsPopOver > .frame { - border: none; } - GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar { - border: none; - background: none; } - -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.popover_bg { - background-color: #131520; - background-image: none; - border: 1px solid #131520; - color: #BFC3C4; } - -/*********** - * Welcome * - **********/ -GraniteWidgetsWelcome { - background-color: #131520; } - GraniteWidgetsWelcome GtkLabel { - color: #BFC3C4; } - GraniteWidgetsWelcome .h1, GraniteWidgetsWelcome .h3 { - color: rgba(191, 195, 196, 0.8); } - -/************** -* Source List * -***************/ -.source-list { - background-color: #0F111A; - border: solid #040407; - color: #BFC3C4; - border-right-width: 1px; } - .source-list .category-expander { - color: transparent; } - .source-list .badge { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - color: #0F111A; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - .source-list .badge:selected:backdrop, .source-list .badge:selected:hover:backdrop { - background-color: rgba(0, 0, 0, 0.2); - color: #06060a; } - .source-list row, - .source-list .list-row { - border: none; - padding: 0; } - .source-list row > GtkLabel, - .source-list row > label, - .source-list .list-row > GtkLabel, - .source-list .list-row > label { - padding-left: 6px; - padding-right: 6px; } - -/************** -* Text Styles * -**************/ -.h1 { - font-size: 24px; } - -.h2 { - font-weight: 300; - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - font-size: 12px; - padding: 6px; - color: rgba(191, 195, 196, 0.3); - font-weight: bold; - text-shadow: 0 1px rgba(255, 255, 255, 0.2); } - -/************** -* Storage Bar * -**************/ -.storage-bar .trough { - border: none; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); - background-image: none; - background-color: transparent; - padding: 8px 6px; } -.storage-bar .fill-block { - background-color: #FFCB6B; - border: none; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); - transition: all 200ms ease-in-out; - padding: 8px 6px; } - .storage-bar .fill-block:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - border-left-width: 1px; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } - .storage-bar .fill-block:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset -1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } - .storage-bar .fill-block.empty-block { - background-color: #131520; } - .storage-bar .fill-block.app { - background-color: #82AAFF; } - .storage-bar .fill-block.audio { - background-color: #F78C6C; } - .storage-bar .fill-block.photo { - background-color: #FF5370; } - .storage-bar .fill-block.video { - background-color: #C792EA; } - .storage-bar .fill-block .legend { - padding: 12px; - border-radius: 4px; } - -/*************** - * Header bars * - ***************/ -.titlebar:not(headerbar), .titlebar, headerbar { - padding: 0 13px; - min-height: 34px; - background: #0a0b11; - color: #BFC3C4; - border-radius: 0; } - .titlebar:backdrop, - headerbar:backdrop { - border-color: #050509; - transition: 200ms ease-out; } - .titlebar .title, - headerbar .title { - font-weight: bold; - padding-left: 12px; - padding-right: 12px; } - .titlebar .subtitle, - headerbar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .titlebar entry, - headerbar entry { - min-height: 24px; } - .titlebar button, - headerbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - min-height: 20px; - margin-top: 5px; - margin-bottom: 5px; - box-shadow: none; } - .titlebar button.image-button, - headerbar button.image-button { - padding: 3px 4px; } - .titlebar button.suggested-action, - headerbar button.suggested-action { - box-shadow: none; - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.suggested-action:disabled, .titlebar button.suggested-action:disabled:backdrop, .titlebar button.suggested-action:backdrop, - headerbar button.suggested-action:disabled, - headerbar button.suggested-action:disabled:backdrop, - headerbar button.suggested-action:backdrop { - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.suggested-action:disabled:hover, .titlebar button.suggested-action:disabled:active, .titlebar button.suggested-action:disabled:checked, .titlebar button.suggested-action:disabled:backdrop:hover, .titlebar button.suggested-action:disabled:backdrop:active, .titlebar button.suggested-action:disabled:backdrop:checked, .titlebar button.suggested-action:backdrop:hover, .titlebar button.suggested-action:backdrop:active, .titlebar button.suggested-action:backdrop:checked, - headerbar button.suggested-action:disabled:hover, - headerbar button.suggested-action:disabled:active, - headerbar button.suggested-action:disabled:checked, - headerbar button.suggested-action:disabled:backdrop:hover, - headerbar button.suggested-action:disabled:backdrop:active, - headerbar button.suggested-action:disabled:backdrop:checked, - headerbar button.suggested-action:backdrop:hover, - headerbar button.suggested-action:backdrop:active, - headerbar button.suggested-action:backdrop:checked { - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.appmenu, - headerbar button.appmenu { - background: transparent; } - .titlebar button.appmenu:backdrop, - headerbar button.appmenu:backdrop { - background: transparent; } - .titlebar button:hover, .titlebar button:active, .titlebar button:checked, - headerbar button:hover, - headerbar button:active, - headerbar button:checked { - background-color: transparent; - color: #00A9A5; - box-shadow: none; } - .titlebar button:backdrop, .titlebar button:disabled, .titlebar button:backdrop:disabled, - headerbar button:backdrop, - headerbar button:disabled, - headerbar button:backdrop:disabled { - color: rgba(191, 195, 196, 0.2); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; - background-image: linear-gradient(to bottom, #0d0f17, #0d0f17); - border: 1px solid #040407; - border-radius: 4px; } - .titlebar button:backdrop:hover, .titlebar button:backdrop:active, .titlebar button:backdrop:checked, - headerbar button:backdrop:hover, - headerbar button:backdrop:active, - headerbar button:backdrop:checked { - background-color: transparent; - color: #00A9A5; - box-shadow: none; } - .titlebar button.suggested-action, - headerbar button.suggested-action { - font-weight: bold; - min-height: 14px; - margin-top: 5px; - margin-bottom: 5px; - border-radius: 4px; - font-weight: normal; - color: white; - background-color: #191c2c; - text-shadow: none; - box-shadow: none; } - .titlebar button.suggested-action:hover, - headerbar button.suggested-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:active, - headerbar button.suggested-action:active { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:disabled, - headerbar button.suggested-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:disabled label, - headerbar button.suggested-action:disabled label { - color: rgba(255, 255, 255, 0.5); } - .titlebar button.suggested-action:backdrop, - headerbar button.suggested-action:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; - border-radius: 3px; } - .titlebar button.suggested-action:backdrop:disabled, - headerbar button.suggested-action:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.destructive-action, - headerbar button.destructive-action { - font-weight: bold; - min-height: 14px; - margin-top: 5px; - margin-bottom: 5px; - border-radius: 4px; - font-weight: normal; - color: white; - background-color: #191c2c; - text-shadow: none; - box-shadow: none; } - .titlebar button.destructive-action:hover, - headerbar button.destructive-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:active, - headerbar button.destructive-action:active { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:disabled, - headerbar button.destructive-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:disabled label, - headerbar button.destructive-action:disabled label { - color: rgba(255, 255, 255, 0.5); } - .titlebar button.destructive-action:backdrop, - headerbar button.destructive-action:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; - border-radius: 3px; } - .titlebar button.destructive-action:backdrop:disabled, - headerbar button.destructive-action:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.titlebutton, - headerbar button.titlebutton { - color: transparent; - box-shadow: none; - border: none; - background-color: transparent; - background-repeat: no-repeat; } - .titlebar button.titlebutton:hover, .titlebar button.titlebutton:active, .titlebar button.titlebutton:checked, .titlebar button.titlebutton:backdrop, .titlebar button.titlebutton:backdrop:hover, .titlebar button.titlebutton *, - headerbar button.titlebutton:hover, - headerbar button.titlebutton:active, - headerbar button.titlebutton:checked, - headerbar button.titlebutton:backdrop, - headerbar button.titlebutton:backdrop:hover, - headerbar button.titlebutton * { - color: transparent; - box-shadow: none; - background-color: transparent; } - .titlebar .linked > button, .titlebar .path-bar-box button, - .titlebar headerbar .linked > button, - headerbar .path-bar-box .titlebar button, .titlebar .linked > button:hover, - .titlebar .linked > button:backdrop, - .titlebar headerbar .linked > button, - headerbar .path-bar-box .titlebar button, - headerbar .titlebar .linked > button, - headerbar .linked > button, - headerbar .titlebar .path-bar-box button, - .titlebar .path-bar-box headerbar button, - headerbar .path-bar-box button, - headerbar .titlebar .linked > button:hover, - .titlebar headerbar .linked > button:hover, - headerbar .titlebar .linked > button:backdrop, - .titlebar headerbar .linked > button:backdrop, - headerbar .linked > button:hover, - headerbar .linked > button:backdrop { - border-radius: 0; - border-right-style: none; - box-shadow: none; - margin: 5px 0px; - min-height: 20px; } - .titlebar .linked > button:first-child, .titlebar .path-bar-box button:first-child, - .titlebar headerbar .linked > button:first-child, - headerbar .path-bar-box .titlebar button:first-child, - headerbar .titlebar .linked > button:first-child, - headerbar .linked > button:first-child, - .titlebar .path-bar-box headerbar button:first-child, - headerbar .path-bar-box button:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - .titlebar .linked > button:last-child, .titlebar .path-bar-box button:last-child, - .titlebar headerbar .linked > button:last-child, - headerbar .path-bar-box .titlebar button:last-child, - headerbar .titlebar .linked > button:last-child, - headerbar .linked > button:last-child, - .titlebar .path-bar-box headerbar button:last-child, - headerbar .path-bar-box button:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-right-style: solid; } - .titlebar .linked > button:only-child, .titlebar .path-bar-box button:only-child, - .titlebar headerbar .linked > button:only-child, - headerbar .path-bar-box .titlebar button:only-child, - headerbar .titlebar .linked > button:only-child, - headerbar .linked > button:only-child, - .titlebar .path-bar-box headerbar button:only-child, - headerbar .path-bar-box button:only-child { - border-radius: 4px; - border-style: solid; } - .titlebar .linked > button:active, - .titlebar headerbar .linked > button:active, .titlebar .path-bar-box button:active, - headerbar .path-bar-box .titlebar button:active, .titlebar .linked > button:checked, - .titlebar headerbar .linked > button:checked, .titlebar .path-bar-box button:checked, - headerbar .path-bar-box .titlebar button:checked, - headerbar .titlebar .linked > button:active, - headerbar .linked > button:active, - .titlebar .path-bar-box headerbar button:active, - headerbar .path-bar-box button:active, - headerbar .titlebar .linked > button:checked, - headerbar .linked > button:checked, - .titlebar .path-bar-box headerbar button:checked, - headerbar .path-bar-box button:checked { - background: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .titlebar .linked > button:active:backdrop, - .titlebar headerbar .linked > button:active:backdrop, .titlebar .path-bar-box button:active:backdrop, - headerbar .path-bar-box .titlebar button:active:backdrop, .titlebar .linked > button:checked:backdrop, - .titlebar headerbar .linked > button:checked:backdrop, .titlebar .path-bar-box button:checked:backdrop, - headerbar .path-bar-box .titlebar button:checked:backdrop, - headerbar .titlebar .linked > button:active:backdrop, - headerbar .linked > button:active:backdrop, - .titlebar .path-bar-box headerbar button:active:backdrop, - headerbar .path-bar-box button:active:backdrop, - headerbar .titlebar .linked > button:checked:backdrop, - headerbar .linked > button:checked:backdrop, - .titlebar .path-bar-box headerbar button:checked:backdrop, - headerbar .path-bar-box button:checked:backdrop { - color: rgba(254, 254, 254, 0.5); } - .titlebar .linked > button:active:backdrop label, .titlebar .path-bar-box button:active:backdrop label, - headerbar .path-bar-box .titlebar button:active:backdrop label, .titlebar .linked > button:checked:backdrop label, .titlebar .path-bar-box button:checked:backdrop label, - headerbar .path-bar-box .titlebar button:checked:backdrop label, - headerbar .linked > button:active:backdrop label, - .titlebar .path-bar-box headerbar button:active:backdrop label, - headerbar .path-bar-box button:active:backdrop label, - headerbar .linked > button:checked:backdrop label, - .titlebar .path-bar-box headerbar button:checked:backdrop label, - headerbar .path-bar-box button:checked:backdrop label { - color: rgba(254, 254, 254, 0.5); } - .titlebar .path-bar-box .dim-label, .titlebar .path-bar-box label.separator, .titlebar .path-bar-box .subtitle, - headerbar .path-bar-box .dim-label, - headerbar .path-bar-box label.separator, - headerbar .path-bar-box .subtitle { - color: transparent; - margin-right: -6px; } - .titlebar .path-bar-box button:last-child, - headerbar .path-bar-box button:last-child { - margin-left: -1px; - border-radius: 0px; } - .titlebar .path-bar-box button:last-child:active, .titlebar .path-bar-box button:last-child:checked, - headerbar .path-bar-box button:last-child:active, - headerbar .path-bar-box button:last-child:checked { - border-radius: 0px 4px 4px 0px; } - .titlebar .path-bar-box button:first-child, - headerbar .path-bar-box button:first-child { - border-radius: 4px 0px 0px 4px; } - .titlebar .path-bar-box button:first-child:active, .titlebar .path-bar-box button:first-child:checked, - headerbar .path-bar-box button:first-child:active, - headerbar .path-bar-box button:first-child:checked { - border-radius: 4px; } - .titlebar .path-bar-box widget > .text-button:last-child, - headerbar .path-bar-box widget > .text-button:last-child { - border-radius: 0px 4px 4px 0px; - background: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .titlebar .path-bar-box widget > .text-button:last-child:backdrop, .titlebar .path-bar-box widget > .text-button:last-child:backdrop label, - headerbar .path-bar-box widget > .text-button:last-child:backdrop, - headerbar .path-bar-box widget > .text-button:last-child:backdrop label { - color: rgba(254, 254, 254, 0.5); } - .titlebar .path-bar-box widget > .text-button:last-child:only-child, - headerbar .path-bar-box widget > .text-button:last-child:only-child { - border-radius: 4px; } - .selection-mode.titlebar button:backdrop.flat:active, .selection-mode.titlebar button:backdrop.flat:checked, .selection-mode.titlebar button:backdrop:active, .selection-mode.titlebar button:backdrop:checked, - headerbar.selection-mode button:backdrop.flat:active, - headerbar.selection-mode button:backdrop.flat:checked, - headerbar.selection-mode button:backdrop:active, - headerbar.selection-mode button:backdrop:checked { - border-color: #007673; } - .selection-mode.titlebar button:backdrop.flat:active label, .selection-mode.titlebar button:backdrop.flat:checked label, .selection-mode.titlebar button:backdrop:active label, .selection-mode.titlebar button:backdrop:checked label, - headerbar.selection-mode button:backdrop.flat:active label, - headerbar.selection-mode button:backdrop.flat:checked label, - headerbar.selection-mode button:backdrop:active label, - headerbar.selection-mode button:backdrop:checked label { - color: rgba(0, 169, 165, 0.6); } - .tiled .titlebar, .maximized .titlebar, - .tiled headerbar.titlebar, .maximized headerbar.titlebar { - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } - .tiled .titlebar:backdrop, .tiled .titlebar, .maximized .titlebar:backdrop, .maximized .titlebar, - .tiled headerbar:backdrop, - .tiled headerbar, .maximized headerbar:backdrop, .maximized headerbar { - border-radius: 0; } - .default-decoration.titlebar, headerbar.default-decoration { - padding: 5px 4px; - min-height: 20px; } - .default-decoration.titlebar button.titlebutton, headerbar.default-decoration button.titlebutton { - min-height: 20px; - min-width: 20px; - margin: 0; - padding: 0; } - -headerbar entry, -headerbar spinbutton, -headerbar separator:not(.sidebar), -headerbar button, -headerbar menubutton { - margin-top: 3px; - margin-bottom: 3px; } -headerbar menubutton > button, -headerbar spinbutton > button, -headerbar splitbutton > button, -headerbar splitbutton > menubutton, -headerbar entry > menubutton { - margin-top: 0px; - margin-bottom: 0px; } -headerbar switch { - margin-top: 0; - margin-bottom: 0; } -headerbar separator { - background: transparent; } - -.background:not(.tiled):not(.maximized) .titlebar { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px rgba(0, 0, 0, 0.1); } - .background:not(.tiled):not(.maximized) .titlebar:backdrop, .background:not(.tiled):not(.maximized) .titlebar { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - -window:not(.tiled):not(.maximized) separator:first-child + headerbar:backdrop, window:not(.tiled):not(.maximized) separator:first-child + headerbar, window:not(.tiled):not(.maximized) headerbar:first-child:backdrop, window:not(.tiled):not(.maximized) headerbar:first-child { - border-top-left-radius: 4px; } -window:not(.tiled):not(.maximized) headerbar:last-child:backdrop, window:not(.tiled):not(.maximized) headerbar:last-child { - border-top-right-radius: 4px; } - -window { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - -window.csd > .titlebar:not(headerbar) { - padding: 0; - background-color: transparent; - background-image: none; - border-style: none; - border-color: transparent; - box-shadow: none; } -.titlebar:not(headerbar) > separator, .titlebar:not(headerbar) > separator:backdrop { - background: #0a0b11; } - -/************** - * GtkInfoBar * - **************/ -.info, .warning, .question, .error, -infobar { - text-shadow: none; - color: #BFC3C4; - background-color: #0F111A; - border-bottom: 1px solid black; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.15); } - -.info, .warning, .question, .error { - text-shadow: none; - color: #fefefe; - border: none; } - .info .label, .warning .label, .question .label, .error .label { - color: #fefefe; } - .info .label:backdrop, .warning .label:backdrop, .question .label:backdrop, .error .label:backdrop { - color: rgba(254, 254, 254, 0.5); } - .info button, .warning button, .question button, .error button { - border-radius: 2px; - border: none; - background: rgba(19, 21, 32, 0.98); - color: #BFC3C4; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2); } - .info button .label, .warning button .label, .question button .label, .error button .label { - color: #BFC3C4; } - .info button:active, .warning button:active, .question button:active, .error button:active { - background: #131520; - color: #BFC3C4; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); } - .info button:active:backdrop, .warning button:active:backdrop, .question button:active:backdrop, .error button:active:backdrop { - background: rgba(19, 21, 32, 0.8); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:hover, .warning button:hover, .question button:hover, .error button:hover, .info button:focus, .warning button:focus, .question button:focus, .error button:focus { - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); } - .info button:disabled, .warning button:disabled, .question button:disabled, .error button:disabled { - background: rgba(19, 21, 32, 0.6); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:disabled:backdrop, .warning button:disabled:backdrop, .question button:disabled:backdrop, .error button:disabled:backdrop { - background: rgba(19, 21, 32, 0.5); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:backdrop, .warning button:backdrop, .question button:backdrop, .error button:backdrop { - background: rgba(19, 21, 32, 0.8); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - -.info, .info:backdrop { - color: #C3E88D; - background-color: transparent; } - -.warning, .warning:backdrop { - color: #f4663c; - background-color: transparent; } - -.question, .question:backdrop { - color: #89DDFF; - background-color: transparent; } - -.error, .error:backdrop { - color: #ff3a5b; - background-color: transparent; } - -/************* - * Level Bar * - *************/ -levelbar block { - min-width: 32px; - min-height: 6px; } -levelbar.vertical block { - min-width: 6px; - min-height: 32px; } -levelbar:backdrop { - transition: 200ms ease-out; } -levelbar trough { - padding: 3px; - border-radius: 3px; - background-color: rgba(255, 255, 255, 0.2); - box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - levelbar trough:backdrop { - background-color: rgba(255, 255, 255, 0.06); - box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } -levelbar.horizontal.discrete block { - margin: 0 1px; } -levelbar.vertical.discrete block { - margin: 1px 0; } -levelbar block { - border-radius: 2px; } - levelbar block:backdrop { - box-shadow: none; } - levelbar block.low { - background-color: #f4663c; } - levelbar block.low:backdrop { - border-color: #f4663c; } - levelbar block.high, levelbar block:not(.empty) { - background-color: #89DDFF; } - levelbar block.high:backdrop, levelbar block:not(.empty):backdrop { - border-color: #89DDFF; } - levelbar block.full { - background-color: #56ceff; } - levelbar block.full:backdrop { - border-color: #56ceff; } - levelbar block.empty { - background-color: rgba(0, 0, 0, 0.35); - box-shadow: none; } - -/********* - * Links * - *********/ -*:link, button:link, -button:visited { - color: #82AAFF; } - *:link:visited, - button:visited { - color: rgba(130, 170, 255, 0.5); } - *:selected *:link:visited, *:selected button:visited:link, - *:selected button:visited { - color: #98dcda; } - *:link:hover, button:hover:link, - button:hover:visited { - color: #b5cdff; } - *:selected *:link:hover, *:selected button:hover:link, - *:selected button:hover:visited { - color: #e5f6f5; } - *:link:active, button:active:link, - button:active:visited { - color: #82AAFF; } - *:selected *:link:active, *:selected button:active:link, - *:selected button:active:visited { - color: #cbedec; } - *:link:backdrop:backdrop:hover, button:backdrop:backdrop:hover:link, - button:backdrop:backdrop:hover:visited, *:link:backdrop:backdrop:hover:selected, button:backdrop:backdrop:hover:selected:link, - button:backdrop:backdrop:hover:selected:visited, *:link:backdrop, button:backdrop:link, - button:backdrop:visited { - color: #00A9A5; } - *:link:selected, button:selected:link, - button:selected:visited, *:selected *:link, *:selected button:link, - *:selected button:visited { - color: #cbedec; } - -button:link, -button:visited { - text-shadow: none; } - button:link:hover, button:link:active, button:link:checked, - button:visited:hover, - button:visited:active, - button:visited:checked { - text-shadow: none; } - button:link > label, - button:visited > label { - text-decoration-line: underline; } - -/********* - * Lists * - *********/ -list, listview { - color: #BFC3C4; - background-color: #131520; - border-color: #040407; } - list:backdrop, listview:backdrop { - background-color: #151724; - border-color: #050509; } - list.horizontal row.separator, list.separators.horizontal > row:not(.separator), listview.horizontal row.separator, listview.separators.horizontal > row:not(.separator) { - border-left: 1px solid #040407; } - list:not(.horizontal) row.separator, list.separators:not(.horizontal) > row:not(.separator), listview:not(.horizontal) row.separator, listview.separators:not(.horizontal) > row:not(.separator) { - border-bottom: 1px solid #040407; } - -row { - padding: 1px 11px; - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - row label { - padding-left: 8px; } - row:hover { - transition: none; } - row:backdrop { - transition: 200ms ease-out; } - row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(191, 195, 196, 0.05); } - row.activatable:active { - box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } - row.activatable:backdrop:hover { - background-color: transparent; } - row.activatable button.flat { - background-color: transparent; } - row.activatable:selected:active { - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } - row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: rgba(0, 169, 165, 0.5); } - row.activatable:selected:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - -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: #040407; } -columnview.data-table > listview > row > cell { - padding-top: 2px; - padding-bottom: 2px; } - -treeexpander { - border-spacing: 4px; } - -/******************************************************** - * Data Tables * - * treeview like tables with individual focusable cells * - * https://gitlab.gnome.org/GNOME/gtk/-/issues/2929 * - ********************************************************/ -columnview row:not(:selected) cell editablelabel:not(.editing):focus-within { - outline: 2px solid #040407; } - -columnview row:not(:selected) cell editablelabel.editing:focus-within { - outline: 2px solid #00A9A5; } - -columnview row:not(:selected) cell editablelabel.editing text selection { - background-color: rgba(0, 169, 165, 0.6); - color: transparent; } - columnview row:not(:selected) cell editablelabel.editing text selection:focus-within { - background-color: #00A9A5; - color: #BFC3C4; } - -/******************************************************* - * Rich Lists * - * Large list usually containing lots of widgets * - * https://gitlab.gnome.org/GNOME/gtk/-/issues/3073 * - *******************************************************/ -.rich-list { - /* rich lists usually containing other widgets than just labels/text */ } - .rich-list > row { - padding: 8px 12px; - min-height: 32px; - /* should be tall even when only containing a label */ } - .rich-list > row > box { - border-spacing: 12px; } - -/******************************************************** - * Complex Lists * - * Put padding on the cell content so event controllers * - * can cover the whole area. * - ********************************************************/ -columnview.complex > listview > row > cell { - padding: 0; } - columnview.complex > listview > row > cell > * { - padding: 8px 6px; } -columnview.complex.data-table > listview > row > cell { - padding: 0; } - columnview.complex.data-table > listview > row > cell > * { - padding-top: 2px; - padding-bottom: 2px; } - -/********* - * Menus * - *********/ -menubar, -.menubar { - background-color: #0a0b11; - color: #BFC3C4; - padding: 0px; - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } - menubar > item, - .menubar > item { - min-height: 16px; - padding: 4px 8px; } - menubar > item:hover, - .menubar > item:hover { - box-shadow: inset 0 -3px #00A9A5; } - menubar > item:disabled, - .menubar > item:disabled { - color: #676a6f; - box-shadow: none; } - -menu, .menu, .context-menu { - margin: 4px; - padding: 2px 0px; - background: #0d0f17; - border-radius: 5px; - font: initial; } - .csd menu, - .csd .menu, - .csd .context-menu { - border: none; } - menu:backdrop, .menu:backdrop, .context-menu:backdrop { - background-color: #141622; } - menu menuitem, .menu menuitem, .context-menu menuitem { - min-height: 17px; - min-width: 40px; - padding: 4px 6px; - text-shadow: none; } - menu menuitem:hover, .menu menuitem:hover, .context-menu menuitem:hover { - color: #fefefe; - background-color: #00A9A5; } - menu menuitem:disabled, .menu menuitem:disabled, .context-menu menuitem:disabled { - color: #676a6f; } - menu menuitem:disabled:backdrop, .menu menuitem:disabled:backdrop, .context-menu menuitem:disabled:backdrop { - color: #2b314b; } - menu menuitem:backdrop, menu menuitem:backdrop:hover, .menu menuitem:backdrop, .menu menuitem:backdrop:hover, .context-menu menuitem:backdrop, .context-menu menuitem:backdrop:hover { - color: #676a6f; - background-color: transparent; } - menu menuitem arrow, .menu menuitem arrow, .context-menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), .menu menuitem arrow:dir(ltr), .context-menu menuitem arrow:dir(ltr) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - margin-left: 10px; } - 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: 10px; } - menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), .menu menuitem label:dir(rtl), .menu menuitem label:dir(ltr), .context-menu menuitem label:dir(rtl), .context-menu menuitem label:dir(ltr) { - color: inherit; } - menu > arrow, .menu > arrow, .context-menu > arrow { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - min-height: 16px; - min-width: 16px; - padding: 4px; - background-color: #12141f; - border-radius: 0; } - menu > arrow.top, .menu > arrow.top, .context-menu > arrow.top { - margin-top: -6px; - border-bottom: 1px solid #242630; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - menu > arrow.bottom, .menu > arrow.bottom, .context-menu > arrow.bottom { - margin-bottom: -6px; - border-top: 1px solid #242630; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - menu > arrow:hover, .menu > arrow:hover, .context-menu > arrow:hover { - background-color: #242630; } - menu > arrow:backdrop, .menu > arrow:backdrop, .context-menu > arrow:backdrop { - background-color: #141622; } - menu > arrow:disabled, .menu > arrow:disabled, .context-menu > arrow:disabled { - color: transparent; - background-color: transparent; - border-color: transparent; } - -menuitem accelerator { - color: alpha(currentColor,0.55); } -menuitem check, -menuitem radio { - min-height: 16px; - min-width: 16px; } - menuitem check:dir(ltr), - menuitem radio:dir(ltr) { - margin-right: 7px; } - menuitem check:dir(rtl), - menuitem radio:dir(rtl) { - margin-left: 7px; } - -.csd.popup { - background: transparent; } - -/******** - * Misc * - ********/ -.content-view { - background-color: #020203; } - .content-view:hover { - -gtk-icon-filter: brightness(1.2); } - .content-view:backdrop { - background-color: #020203; } - -.osd .scale-popup button.flat { - border-style: none; - border-radius: 5px; } -.scale-popup button:hover { - background-color: rgba(191, 195, 196, 0.1); - border-radius: 5px; } - -/************ -* Assistant * -*************/ -assistant { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; } - assistant .sidebar { - background-color: #131520; - border-top: 1px solid #040407; - border-bottom-left-radius: 4px; } - assistant .sidebar:backdrop { - background-color: #151724; - border-color: #050509; } - assistant.csd .sidebar { - border-top-style: none; } - assistant .sidebar GtkLabel, - assistant .sidebar label { - padding: 6px 12px; } - assistant .sidebar GtkLabel.highlight, - assistant .sidebar label.highlight { - background-color: #32353c; } - -/************* - * Notebooks * - *************/ -notebook > header { - padding: 1px; - border-color: #040407; - border-width: 1px; - background-color: #090b10; } - notebook > header:backdrop { - border-color: #050509; - background-color: #0F111A; } - notebook > header tabs { - margin: 0px; } - notebook > header.top { - border-bottom-style: solid; } - notebook > header.top > tabs { - margin-bottom: -2px; } - notebook > header.top > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.top > tabs > tab:checked { - background-color: #131520; } - notebook > header.top > tabs > tab:checked:hover { - background-color: #131520; } - notebook > header.bottom { - border-top-style: solid; } - notebook > header.bottom > tabs { - margin-top: -2px; } - notebook > header.bottom > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.bottom > tabs > tab:checked { - background-color: #131520; - box-shadow: -1px 0 0 #040407, 0px 1px 0 #040407, 1px 0 0 #040407; } - notebook > header.left { - border-right-style: solid; } - notebook > header.left > tabs { - margin-right: -2px; } - notebook > header.left > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.left > tabs > tab:checked { - background-color: #131520; - box-shadow: 0px 1px 0 #040407, 0px -1px 0 #040407, 0px 1px 0 #040407; } - notebook > header.right { - border-left-style: solid; } - notebook > header.right > tabs { - margin-left: -2px; } - notebook > header.right > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.right > tabs > tab:checked { - background-color: #131520; - box-shadow: 0px 1px 0 #040407, 0px -1px 0 #040407, 1px 0 0 #040407; } - 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 { - margin-left: -5px; - margin-right: -5px; - padding-left: 4px; - padding-right: 4px; } - 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 { - border-left-style: none; } - notebook > header.right > tabs > arrow { - border-right-style: none; } - notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { - margin-top: -5px; - margin-bottom: -5px; - padding-top: 4px; - padding-bottom: 4px; } - 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: 14px; - min-width: 14px; - border-radius: 0; } - notebook > header > tabs > arrow:hover:not(:active):not(:backdrop) { - background-clip: padding-box; - background-image: none; - background-color: rgba(255, 255, 255, 0.3); - border-color: transparent; - box-shadow: none; } - notebook > header > tabs > arrow:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - notebook > header tab { - min-height: 24px; - min-width: 24px; - padding: 1px 12px; - outline-offset: -5px; - color: #676a6f; - font-weight: normal; - border-width: 1px; - border-color: transparent; } - notebook > header tab:hover { - color: #93979a; } - notebook > header tab:hover.reorderable-page { - border-color: rgba(4, 4, 7, 0.3); - background-color: rgba(15, 17, 26, 0.2); } - notebook > header tab:backdrop { - color: #44464d; } - notebook > header tab:backdrop.reorderable-page { - border-color: transparent; - background-color: transparent; } - notebook > header tab:checked { - color: #BFC3C4; - box-shadow: -1px 0 0 #040407, 0px -1px 0 #040407, 1px 0 0 #040407; } - notebook > header tab:checked.reorderable-page { - border-color: rgba(4, 4, 7, 0.5); - background-color: rgba(15, 17, 26, 0.5); } - notebook > header tab:checked.reorderable-page:hover { - background-color: rgba(15, 17, 26, 0.7); } - notebook > header tab:hover button.flat, notebook > header tab:checked button.flat, notebook > header tab:backdrop:checked button.flat { - color: alpha(currentColor,0.3); } - notebook > header tab:backdrop:checked { - color: #676a6f; } - notebook > header tab:backdrop:checked.reorderable-page { - border-color: #050509; - background-color: #151724; } - notebook > header tab button.flat { - padding: 0; - margin-top: 4px; - margin-bottom: 4px; - border: none; - background: transparent; - min-width: 20px; - min-height: 20px; } - notebook > header tab button.flat:hover { - background: transparent; - box-shadow: none; - color: #FF5370; } - notebook > header tab button.flat, notebook > header tab button.flat:backdrop { - border: none; - background: transparent; - color: alpha(currentColor,0); } - notebook > header tab button.flat:last-child { - margin-left: 4px; - margin-right: -4px; } - notebook > header tab button.flat:first-child { - margin-left: -4px; - margin-right: 4px; } - notebook > header.top tabs, notebook > header.bottom tabs { - padding-left: 0px; - padding-right: 0px; } - notebook > header.top tabs:not(:only-child), notebook > header.bottom tabs:not(:only-child) { - margin-left: 0.5px; - margin-right: 0.5px; } - notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { - margin-left: -1px; } - notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { - margin-right: -1px; } - notebook > header.top tabs tab, notebook > header.bottom tabs tab { - margin-left: 0.5px; - margin-right: 0.5px; } - notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { - border-style: none solid; } - notebook > header.left tabs, notebook > header.right tabs { - padding-top: 4px; - padding-bottom: 4px; } - notebook > header.left tabs:not(:only-child), notebook > header.right tabs:not(:only-child) { - margin-top: 3px; - margin-bottom: 3px; } - notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { - margin-top: -1px; } - notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { - margin-bottom: -1px; } - notebook > header.left tabs tab, notebook > header.right tabs tab { - margin-top: 4px; - margin-bottom: 4px; } - notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { - border-style: solid none; } - notebook > header.top tab { - padding-bottom: 1px; } - notebook > header.bottom tab { - padding-top: 1px; } -notebook > stack:not(:only-child) { - background-color: #131520; } - notebook > stack:not(:only-child):backdrop { - background-color: #151724; } - -tabbar:backdrop .box > scrolledwindow, -tabbar:backdrop .box > .start-action, -tabbar:backdrop .box > .end-action { - filter: opacity(1); } -tabbar tabbox { - background-color: #090b10; - padding: 0px; - color: #BFC3C4; } - tabbar tabbox > tab:checked, tabbar tabbox > tab:selected, - tabbar tabbox > tabboxchild > tab:checked, - tabbar tabbox > tabboxchild > tab:selected { - background-color: #131520; } - -/********* - * Paned * - *********/ -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: image(#040407); - background-size: 1px 1px; } - paned > separator:selected { - background-image: image(#00A9A5); } - paned > separator:backdrop { - background-image: image(#050509); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #0F111A; - background-image: image(#040407), image(#040407); - background-size: 1px 1px, 1px 1px; } - paned > separator.wide:backdrop { - background-color: #0F111A; - background-image: image(#050509), image(#050509); } -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; } - -/************ - * Pathbars * - ************/ -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 4px; - padding-right: 4px; } -.path-bar button.text-button.image-button label { - padding-left: 0; - padding-right: 0; } -.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child { - padding-right: 8px; } -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 8px; } -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } -.path-bar button.slider-button { - padding-left: 0; - padding-right: 0; } - -/*************** - * Popovers * - ***************/ -popover.background { - background-color: transparent; - font: initial; } - popover.background > arrow, - popover.background > contents { - background-color: #0d0f17; - background-clip: padding-box; - border: 1px solid #040407; - box-shadow: 0 4px 6px #040407; - color: #BFC3C4; } - popover.background:backdrop { - background-color: transparent; - box-shadow: none; } - popover.background > contents { - padding: 8px; - border-radius: 5px; } - popover.background > contents > list, - popover.background > contents > .view, - popover.background > contents > iconview, - popover.background > contents > toolbar { - border-style: none; - background-color: transparent; } - popover.background > contents separator { - background-color: #07080d; - margin: 3px; } - popover.background > contents list separator { - margin: 0; } - .osd popover.background, popover.background.touch-selection, popover.background.magnifier { - background-color: transparent; } - .osd popover.background > arrow, - .osd popover.background > contents, popover.background.touch-selection > arrow, - popover.background.touch-selection > contents, popover.background.magnifier > arrow, - popover.background.magnifier > contents { - border: 1px solid rgba(255, 255, 255, 0.1); - box-shadow: none; } - -magnifier { - background-color: #131520; } - -/********************** - * Popover Base Menus * - **********************/ -popover.menu { - padding: 0; } - popover.menu box.inline-buttons { - padding: 0 12px; } - popover.menu box.inline-buttons button.image-button.model { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - min-height: 30px; - min-width: 30px; - padding: 0; - border: none; - outline: none; - transition: none; } - popover.menu box.inline-buttons button.image-button.model:selected { - background: image(#1e2234); } - popover.menu box.circular-buttons { - padding: 12px 12px 6px; } - popover.menu box.circular-buttons button.circular.image-button.model { - padding: 11px; } - popover.menu box.circular-buttons button.circular.image-button.model:focus { - background-color: #1e2234; - border-color: #1e2234; } - popover.menu > arrow, popover.menu.background > contents { - background-color: #0d0f17; - color: #BFC3C4; - padding: 5px; } - popover.menu.background separator { - margin: 6px 0; } - popover.menu accelerator { - color: alpha(currentColor,0.55); } - popover.menu accelerator:dir(ltr) { - margin-left: 12px; } - popover.menu accelerator:dir(rtl) { - margin-right: 12px; } - popover.menu check:hover, popover.menu check:active, - popover.menu radio:hover, - popover.menu radio:active { - background-color: transparent; } - popover.menu radio { - border-color: #040407; } - popover.menu radio:active { - border-color: rgba(4, 4, 7, 0.5); } - popover.menu arrow.left, - popover.menu radio.left, - popover.menu check.left { - margin-left: -2px; - margin-right: 6px; } - popover.menu arrow.right, - popover.menu radio.right, - popover.menu check.right { - margin-left: 6px; - margin-right: -2px; } - popover.menu modelbutton { - min-height: 30px; - min-width: 40px; - padding: 0 12px; - border-radius: 5px; } - popover.menu modelbutton:selected { - color: #fefefe; - background-color: #1e2234; } - popover.menu modelbutton:selected:active { - background-color: #313754; } - popover.menu label.title { - font-weight: bold; - padding: 4px 32px; } - -/***************** - * Progress bars * - *****************/ -progressbar { - font-size: smaller; - color: rgba(191, 195, 196, 0.4); } - progressbar.horizontal trough, - progressbar.horizontal progress { - min-height: 6px; } - progressbar.vertical trough, - progressbar.vertical progress { - min-width: 6px; } - progressbar.horizontal progress { - margin: 0; } - progressbar.vertical progress { - margin: 0; } - progressbar:backdrop { - box-shadow: none; - transition: 200ms ease-out; } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - border-radius: 0; - background-color: transparent; - box-shadow: none; } - progressbar.osd progress { - border-style: none; - border-radius: 0; } - -/************ - * GtkScale * - ************/ -progressbar trough, scale trough, scale fill { - background-color: rgba(255, 255, 255, 0.14); - border: none; - border-radius: 3px; - margin: 0; } - progressbar trough:disabled, scale trough:disabled, scale fill:disabled { - background-color: rgba(255, 255, 255, 0.06); } - progressbar trough:backdrop, progressbar:backdrop trough, scale trough:backdrop, scale fill:backdrop { - background-color: rgba(255, 255, 255, 0.06); - transition: 200ms ease-out; } - progressbar trough:backdrop:disabled, progressbar:backdrop trough:disabled, scale trough:backdrop:disabled, scale fill:backdrop:disabled { - background-color: rgba(255, 255, 255, 0.06); } - -progressbar progress, scale highlight { - border: none; - background-color: #00A9A5; - border-radius: 3px; - margin: 0; } - progressbar progress:disabled, scale highlight:disabled { - border: none; - background-color: rgba(255, 255, 255, 0.14); } - progressbar progress:backdrop, progressbar:backdrop progress, scale highlight:backdrop, progressbar progress:active:backdrop, progressbar:backdrop progress:active, scale highlight:active:backdrop { - border-color: #00c3be; - background-color: #00c3be; } - progressbar progress:backdrop:disabled, progressbar:backdrop progress:disabled, scale highlight:backdrop:disabled, progressbar progress:active:backdrop:disabled, progressbar:backdrop progress:active:disabled, scale highlight:active:backdrop:disabled { - background-color: rgba(255, 255, 255, 0.06); } - -scale { - min-height: 16px; - min-width: 16px; - padding: 8px; } - scale.horizontal trough, - scale.horizontal progress { - min-height: 6px; } - scale.vertical trough, - scale.vertical progress { - min-width: 6px; } - scale slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - background-color: #131520; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); - border-radius: 12px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border, box-shadow; } - scale slider:active { - background-color: #00A9A5; } - scale slider:active:disabled { - background-color: #151722; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.05); } - scale.fine-tune.horizontal { - padding-top: 9px; - padding-bottom: 9px; - min-height: 16px; } - scale.fine-tune.vertical { - padding-left: 9px; - padding-right: 9px; - min-width: 16px; } - scale.fine-tune slider { - margin: -6px; } - scale.fine-tune fill, - scale.fine-tune highlight, - scale.fine-tune trough { - border-radius: 5px; } - scale trough { - outline-offset: 2px; - outline-color: transparent; } - scale fill:backdrop, scale fill { - background-color: #040407; } - scale fill:disabled:backdrop, scale fill:disabled { - border-color: transparent; - background-color: transparent; } - .osd scale fill { - background-color: #333436; } - .osd scale fill:disabled:backdrop, .osd scale fill:disabled { - border-color: transparent; - background-color: transparent; } - scale slider { - border-color: #d1d1d1; - border: none; - border-radius: 12px; - background-color: #d1d1d1; } - scale slider:active { - border-color: #007673; } - scale slider:disabled { - background-color: #a5a5a5; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale slider:backdrop, scale slider:backdrop:disabled { - transition: 200ms ease-out; - background-color: #a5a5a5; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - row:selected scale slider:disabled, row:selected scale slider { - border-color: #007673; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 6px; - margin-top: -12px; } - scale marks.bottom { - margin-top: 6px; - margin-bottom: -12px; } - scale marks.top { - margin-right: 6px; - margin-left: -12px; } - scale marks.bottom { - margin-left: 6px; - margin-right: -12px; } - scale.fine-tune marks.top { - margin-bottom: 6px; - margin-top: -9px; } - scale.fine-tune marks.bottom { - margin-top: 6px; - margin-bottom: -9px; } - scale.fine-tune marks.top { - margin-right: 6px; - margin-left: -9px; } - scale.fine-tune marks.bottom { - margin-left: 6px; - margin-right: -9px; } - scale.horizontal indicator { - min-height: 6px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 3px; } - scale.vertical indicator { - min-height: 1px; - min-width: 6px; } - scale.vertical.fine-tune indicator { - min-width: 3px; } - scale.horizontal.marks-before:not(.marks-after) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.color { - min-height: 0; - min-width: 0; } - scale.color trough { - background-image: image(#040407); - background-repeat: no-repeat; } - scale.color.horizontal { - padding: 0 0 15px 0; } - scale.color.horizontal trough { - padding-bottom: 4px; - background-position: 0 -3px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - scale.color.horizontal slider:dir(ltr):hover, scale.color.horizontal slider:dir(ltr):backdrop, scale.color.horizontal slider:dir(ltr):disabled, scale.color.horizontal slider:dir(ltr):backdrop:disabled, scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl):hover, scale.color.horizontal slider:dir(rtl):backdrop, scale.color.horizontal slider:dir(rtl):disabled, scale.color.horizontal slider:dir(rtl):backdrop:disabled, scale.color.horizontal slider:dir(rtl) { - margin-bottom: -15px; - margin-top: 6px; } - scale.color.vertical:dir(ltr) { - padding: 0 0 0 15px; } - scale.color.vertical:dir(ltr) trough { - padding-left: 4px; - background-position: 3px 0; - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - scale.color.vertical:dir(ltr) slider:hover, scale.color.vertical:dir(ltr) slider:backdrop, scale.color.vertical:dir(ltr) slider:disabled, scale.color.vertical:dir(ltr) slider:backdrop:disabled, scale.color.vertical:dir(ltr) slider { - margin-left: -15px; - margin-right: 6px; } - scale.color.vertical:dir(rtl) { - padding: 0 15px 0 0; } - scale.color.vertical:dir(rtl) trough { - padding-right: 4px; - background-position: -3px 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - scale.color.vertical:dir(rtl) slider:hover, scale.color.vertical:dir(rtl) slider:backdrop, scale.color.vertical:dir(rtl) slider:disabled, scale.color.vertical:dir(rtl) slider:backdrop:disabled, scale.color.vertical:dir(rtl) slider { - margin-right: -15px; - margin-left: 6px; } - scale.color.fine-tune.horizontal:dir(ltr), scale.color.fine-tune.horizontal:dir(rtl) { - padding: 0 0 12px 0; } - scale.color.fine-tune.horizontal:dir(ltr) trough, scale.color.fine-tune.horizontal:dir(rtl) trough { - padding-bottom: 7px; - background-position: 0 -6px; } - scale.color.fine-tune.horizontal:dir(ltr) slider, scale.color.fine-tune.horizontal:dir(rtl) slider { - margin-bottom: -15px; - margin-top: 6px; } - scale.color.fine-tune.vertical:dir(ltr) { - padding: 0 0 0 12px; } - scale.color.fine-tune.vertical:dir(ltr) trough { - padding-left: 7px; - background-position: 6px 0; } - scale.color.fine-tune.vertical:dir(ltr) slider { - margin-left: -15px; - margin-right: 6px; } - scale.color.fine-tune.vertical:dir(rtl) { - padding: 0 12px 0 0; } - scale.color.fine-tune.vertical:dir(rtl) trough { - padding-right: 7px; - background-position: -6px 0; } - scale.color.fine-tune.vertical:dir(rtl) slider { - margin-right: -15px; - margin-left: 6px; } - -/************** - * Scrollbars * - **************/ -scrollbar { - background-color: #11131d; - transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - scrollbar.top { - border-bottom: 1px solid #040407; } - scrollbar.bottom { - border-top: 1px solid #040407; } - scrollbar.left { - border-right: 1px solid #040407; } - scrollbar.right { - border-left: 1px solid #040407; } - scrollbar:backdrop { - background-color: #090b10; - border-color: #050509; - transition: 200ms ease-out; } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #797c80; } - scrollbar slider:hover { - background-color: #9c9fa2; } - scrollbar slider:hover:active { - background-color: #00dcd7; } - scrollbar slider:backdrop { - background-color: #32353c; } - scrollbar slider:disabled { - background-color: transparent; } - scrollbar.fine-tune slider { - min-width: 4px; - min-height: 4px; } - scrollbar.fine-tune.horizontal slider { - border-width: 5px 4px; } - scrollbar.fine-tune.vertical slider { - border-width: 4px 5px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) { - border-color: transparent; - opacity: 0.4; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 3px; - min-height: 3px; - background-color: #BFC3C4; - border: 1px solid black; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - min-width: 5px; - min-height: 5px; - background-color: #BFC3C4; - background-clip: padding-box; - border-radius: 100%; - border: 1px solid black; - -gtk-icon-source: none; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { - margin: 1px 2px; - min-width: 5px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { - margin: 2px 1px; - min-height: 5px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.8; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - scrollbar button { - padding: 0; - min-width: 12px; - min-height: 12px; - border-style: none; - border-radius: 0; - transition-property: min-height, min-width, color; - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #797c80; } - scrollbar button:hover { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #9c9fa2; } - scrollbar button:active, scrollbar button:checked { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #00dcd7; } - scrollbar button:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(121, 124, 128, 0.2); } - scrollbar button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #32353c; } - scrollbar button:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(50, 53, 60, 0.2); } - scrollbar.vertical button.down { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - scrollbar.vertical button.up { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - scrollbar.horizontal button.down { - -gtk-icon-source: -gtk-icontheme("pan-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - -treeview ~ scrollbar.vertical { - border-top: 1px solid #040407; - margin-top: -1px; } - -/*********** - * Sidebar * - ***********/ -.sidebar { - border-style: none; - border-width: 0; - background-color: #11131d; } - .sidebar .frame { - border: none; } - stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: none; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list - .sidebar:dir(rtl), stacksidebar.sidebar.right list - .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #040407; - border-right-style: none; } - .sidebar:backdrop { - background-color: #12141f; - border-color: #050509; - transition: 200ms ease-out; } - .sidebar row { - padding: 8px 12px; - transition: all .12s ease-in; } - .sidebar row label { - color: #98abb2; } - .sidebar row:selected { - color: #fefefe; } - .sidebar row:selected:backdrop { - color: rgba(254, 254, 254, 0.5); - background: rgba(0, 169, 165, 0.6); } - .sidebar row:selected:backdrop label { - color: #fefefe; } - .sidebar row:selected label { - color: #fefefe; } - .sidebar.source-list { - background: #0d0f17; - padding: 4px 0px; } - .sidebar.source-list.view, iconview.sidebar.source-list { - transition: all .12s ease-in; } - .sidebar.source-list.view:selected, iconview.sidebar.source-list:selected { - background: rgba(8, 9, 13, 0.93); - color: #98abb2; } - .sidebar.source-list.view:selected:active, iconview.sidebar.source-list:selected:active { - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } - .sidebar.source-list.view:selected.has-open-popup, iconview.sidebar.source-list:selected.has-open-popup, .sidebar.source-list.view:selected:hover, iconview.sidebar.source-list:selected:hover { - background: rgba(8, 9, 13, 0.93); - color: #fff; } - .sidebar.source-list.view:selected:backdrop, iconview.sidebar.source-list:selected:backdrop { - background: rgba(8, 9, 13, 0.93); } - .sidebar.source-list.view:hover, iconview.sidebar.source-list:hover, .sidebar.source-list.view iconview.source-list:hover, iconview.sidebar.source-list iconview.source-list:hover { - background-color: rgba(15, 17, 26, 0.4); } - paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { - border-style: none; - border-color: #040407; } - -stacksidebar row { - padding: 10px 4px; } - stacksidebar row > label { - padding-left: 6px; - padding-right: 6px; } - stacksidebar row.needs-attention > label { - background-size: 6px 6px, 0 0; } - -/*******************************************************************/ -/* PLACESSIDEBAR */ -/*******************************************************************/ -/*--*/ -placessidebar.sidebar, .nautilus-window .navigation-sidebar { - background-color: #0d0f17; } - placessidebar.sidebar row.sidebar-row.sidebar-row, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-row { - margin: 0; - border-radius: 0; } - placessidebar.sidebar row.sidebar-row.sidebar-row .sidebar-icon, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-row .sidebar-icon { - margin-left: -14px; - margin-right: 5px; - padding-left: 14px; - padding-right: 5px; - color: #98abb2; } - placessidebar.sidebar row.sidebar-row:hover, placessidebar.sidebar row.sidebar-row:active, placessidebar.sidebar row.sidebar-row:selected, .nautilus-window .navigation-sidebar row.sidebar-row:hover, .nautilus-window .navigation-sidebar row.sidebar-row:active, .nautilus-window .navigation-sidebar row.sidebar-row:selected { - background-color: #1a1e2d; } - placessidebar.sidebar row.sidebar-row:hover, placessidebar.sidebar row.sidebar-row:hover label, placessidebar.sidebar row.sidebar-row:active, placessidebar.sidebar row.sidebar-row:active label, placessidebar.sidebar row.sidebar-row:selected, placessidebar.sidebar row.sidebar-row:selected label, .nautilus-window .navigation-sidebar row.sidebar-row:hover, .nautilus-window .navigation-sidebar row.sidebar-row:hover label, .nautilus-window .navigation-sidebar row.sidebar-row:active, .nautilus-window .navigation-sidebar row.sidebar-row:active label, .nautilus-window .navigation-sidebar row.sidebar-row:selected, .nautilus-window .navigation-sidebar row.sidebar-row:selected label { - color: #fefefe; - font-weight: normal; } - placessidebar.sidebar row.sidebar-row:selected:backdrop, .nautilus-window .navigation-sidebar row.sidebar-row:selected:backdrop { - color: #9da1a4; - background-color: transparent; - background-image: linear-gradient(to right, rgba(8, 9, 13, 0.93) 40px, rgba(8, 9, 13, 0.93) 36px, rgba(8, 9, 13, 0.93) 97%); } - placessidebar.sidebar row.sidebar-row:selected:backdrop label, .nautilus-window .navigation-sidebar row.sidebar-row:selected:backdrop label { - color: #9da1a4; } - placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, .nautilus-window .navigation-sidebar row.sidebar-row:selected .sidebar-icon { - color: inherit; } - placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row label, placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-new-bookmark-row, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-new-bookmark-row label, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: #FFCB6B; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #00A9A5, inset 0 -1px #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) image, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled), .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled) label, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled) image { - color: #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background: #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected image, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled):selected, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled):selected label, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled):selected image { - color: #fefefe; } - placessidebar.sidebar list, .nautilus-window .navigation-sidebar list { - background-color: transparent; } - placessidebar.sidebar list:backdrop, .nautilus-window .navigation-sidebar list:backdrop { - background-color: transparent; } - -/***************** - * GtkSpinButton * - *****************/ -spinbutton:not(.vertical) { - padding: 0; } - spinbutton:not(.vertical) entry { - min-width: 28px; - margin: 0; - background: none; - background-color: transparent; - border: none; - border-radius: 0; - box-shadow: none; } - spinbutton:not(.vertical) button { - min-height: 16px; - margin: 0; - padding-bottom: 0; - padding-top: 0; - color: #aeb2b4; - background-image: none; - border-style: none none none solid; - border-color: rgba(4, 4, 7, 0.3); - border-radius: 0; - box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); } - spinbutton:not(.vertical) button:dir(rtl) { - border-style: none solid none none; } - spinbutton:not(.vertical) button:hover { - color: #BFC3C4; - background-color: rgba(191, 195, 196, 0.05); } - spinbutton:not(.vertical) button:disabled { - color: rgba(103, 106, 111, 0.3); } - spinbutton:not(.vertical) button:active { - background-color: rgba(0, 0, 0, 0.1); - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } - spinbutton:not(.vertical) button:backdrop { - color: #5f6268; - background-color: transparent; - border-color: rgba(5, 5, 9, 0.3); - transition: 200ms ease-out; } - spinbutton:not(.vertical) button:backdrop:disabled { - color: rgba(43, 49, 75, 0.3); - background-image: none; - border-style: none none none solid; - box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); } - spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { - border-style: none solid none none; } - spinbutton:not(.vertical) button:last-child { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } -.osd spinbutton:not(.vertical) button { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-style: none none none solid; - border-color: rgba(4, 4, 7, 0.7); - border-radius: 0; - box-shadow: none; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:not(.vertical) button:dir(rtl) { - border-style: none solid none none; } - .osd spinbutton:not(.vertical) button:hover { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-color: rgba(4, 4, 7, 0.5); - background-color: rgba(191, 195, 196, 0.1); - -gtk-icon-shadow: 0 1px black; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-color: rgba(4, 4, 7, 0.5); - -gtk-icon-shadow: none; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #646669; - border-color: rgba(4, 4, 7, 0.5); - -gtk-icon-shadow: none; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:last-child { - border-radius: 0 3px 3px 0; } - .osd spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 3px 0 0 3px; } -spinbutton.vertical:disabled { - color: #676a6f; } -spinbutton.vertical:backdrop:disabled { - color: #2b314b; } -spinbutton.vertical:drop(active) { - border-color: transparent; - box-shadow: none; } -spinbutton.vertical entry { - min-height: 32px; - min-width: 32px; - padding: 0; - border-radius: 0; } -spinbutton.vertical button { - min-height: 32px; - min-width: 32px; - padding: 0; - border-width: 1px; - border-color: #040407; - box-shadow: 0 1px rgba(255, 255, 255, 0.1); } -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; - border-style: solid solid none solid; } -spinbutton.vertical button.down { - border-radius: 0 0 3px 3px; - border-style: none solid solid solid; } -.osd spinbutton.vertical button:first-child { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:active { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd spinbutton.vertical button:first-child:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -treeview spinbutton:not(.vertical) { - min-height: 0; - border-style: none; - border-radius: 0; } - treeview spinbutton:not(.vertical) entry { - min-height: 0; - padding: 1px 2px; } - -/*********** - * Spinner * - ***********/ -menu spinner { - color: #00A9A5; } - -/********************* - * 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; } - -/********** - * Switch * - **********/ -switch { - font-size: 1px; - font-weight: bold; - outline-offset: -4px; - transition: all 200ms ease-in; - border: none; - border-radius: 14px; - color: transparent; - padding: 2.3px 0px; - background-color: #2f3551; - box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 1px rgba(0, 0, 0, 0.1); } - switch:disabled { - background-color: #1e2234; } - switch:backdrop { - background-color: #22263a; - transition: 200ms ease-out; } - switch:backdrop:disabled { - background-color: #1a1e2d; } - switch:active, switch:checked { - background-color: #00A9A5; } - switch:active:backdrop, switch:checked:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - switch:active:backdrop slider:backdrop, switch:checked:backdrop slider:backdrop { - box-shadow: none; - background-color: rgba(19, 21, 32, 0.9); - border: none; } - switch slider { - padding: 2px; - margin: 0 2.3px; - min-width: 12px; - min-height: 12px; - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - background-color: #131520; - box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2); } - switch slider:backdrop { - padding: 2px; - box-shadow: none; - background-color: #131520; } - switch trough:active, switch trough:checked { - background-color: #00A9A5; } - switch trough:active:backdrop, switch trough:checked:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - -/************ - * Toolbars * - ************/ -toolbar, .inline-toolbar, searchbar > revealer > box { - padding: 4px; - background-color: #0F111A; } - -toolbar { - padding: 4px 3px 3px 4px; } - .osd toolbar { - background-color: transparent; } - toolbar.osd { - padding: 13px; - border: none; - border-radius: 5px; - background-color: rgba(8, 9, 13, 0.93); } - toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { - border-radius: 0; } - toolbar.horizontal separator { - margin: 0 7px 1px 6px; } - toolbar.vertical separator { - margin: 6px 1px 7px 0; } - toolbar:not(.inline-toolbar):not(.osd) switch, - 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-right: 1px; - margin-bottom: 1px; } - -.inline-toolbar { - padding: 3px; - border-width: 0 1px 1px; - border-radius: 0 0 5px 5px; } - -searchbar > revealer > box { - border-width: 0 0 1px; - padding: 3px; } - -.inline-toolbar, searchbar > revealer > box { - border-style: solid; - border-color: #040407; - background-color: #0c0d14; } - .inline-toolbar:backdrop, searchbar > revealer > box:backdrop { - border-color: #050509; - background-color: #0c0d14; - box-shadow: none; - transition: 200ms ease-out; } - -searchbar { - background: #131520; } - -/************ - * Tooltips * - ************/ -tooltip { - padding: 4px; - /* not working */ - border-radius: 5px; - box-shadow: none; - text-shadow: 0 1px black; } - tooltip.background { - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - border: 1px solid #040407; } - tooltip decoration { - background-color: transparent; } - tooltip * { - padding: 4px; - background-color: transparent; - color: white; } - -columnview.view, -treeview.view { - border-left-color: #040407; - border-top-color: #040407; } - columnview.view:selected:focus, columnview.view:selected, - treeview.view:selected:focus, - treeview.view:selected { - border-radius: 0; - outline-color: #FF5370; } - columnview.view:disabled, - treeview.view:disabled { - color: #676a6f; } - columnview.view:disabled:selected, - treeview.view:disabled:selected { - color: #66cbc9; } - columnview.view:disabled:selected:backdrop, - treeview.view:disabled:selected:backdrop { - color: rgba(32, 180, 176, 0.85); } - columnview.view.separator, - treeview.view.separator { - min-height: 2px; - color: #040407; } - columnview.view:backdrop, - treeview.view:backdrop { - border-left-color: #242630; - border-top: #242630; } - 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: 1px; - border-color: #007673; } - 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: #8b8f93; } - 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: #BFC3C4; } - columnview.view.expander:selected, - treeview.view.expander:selected { - color: #b2e5e3; } - columnview.view.expander:selected:hover, - treeview.view.expander:selected:hover { - color: #fefefe; } - columnview.view.expander:checked, - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - columnview.view.progressbar, - treeview.view.progressbar { - border: 1px solid #007673; - border-radius: 4px; - background-color: #00A9A5; - background-image: linear-gradient(to bottom, #00A9A5, #007673); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.1); } - columnview.view.progressbar:selected:focus, columnview.view.progressbar:selected, - treeview.view.progressbar:selected:focus, - treeview.view.progressbar:selected { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); - background-image: image(#131520); } - columnview.view.progressbar:selected:focus:backdrop, columnview.view.progressbar:selected:backdrop, - treeview.view.progressbar:selected:focus:backdrop, - treeview.view.progressbar:selected:backdrop { - background-color: #151724; } - columnview.view.trough, - treeview.view.trough { - background-color: rgba(191, 195, 196, 0.1); } - columnview.view.trough:selected:focus, columnview.view.trough:selected, - treeview.view.trough:selected:focus, - treeview.view.trough:selected { - background-color: #007673; } - columnview.view > header > button, - treeview.view > header > button { - color: #a9b0cc; - background-color: #131520; - font-weight: bold; - text-shadow: none; - box-shadow: none; } - columnview.view > header > button:hover, - treeview.view > header > button:hover { - color: #b4bac8; - box-shadow: none; - transition: none; } - columnview.view > header > button:active, - treeview.view > header > button:active { - color: #BFC3C4; - transition: none; } - columnview.view > header > button sort-indicator, - treeview.view > header > button sort-indicator { - min-height: 16px; - min-width: 16px; } - columnview.view > header > button sort-indicator.ascending, - treeview.view > header > button sort-indicator.ascending { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - columnview.view > header > button sort-indicator.descending, - treeview.view > header > button sort-indicator.descending { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - columnview.view button.dnd:active, columnview.view button.dnd:selected, columnview.view button.dnd:hover, columnview.view button.dnd, - columnview.view header.button.dnd:active, - columnview.view header.button.dnd:selected, - columnview.view header.button.dnd:hover, - columnview.view header.button.dnd, - treeview.view button.dnd:active, - treeview.view button.dnd:selected, - treeview.view button.dnd:hover, - treeview.view button.dnd, - treeview.view header.button.dnd:active, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd { - padding: 0 6px; - color: #FF5370; - background-image: none; - background-color: #00A9A5; - border-style: none; - border-radius: 0; - box-shadow: inset 0 0 0 1px #131520; - text-shadow: none; - transition: none; } - columnview.view acceleditor > label, - treeview.view acceleditor > label { - background-color: #00A9A5; } - -columnview.view > header > button, -treeview.view > header > button, columnview.view > header > button:hover, -treeview.view > header > button:hover, columnview.view > header > button:active, -treeview.view > header > button:active { - padding: 0 6px; - background-image: none; - border-style: none none solid solid; - border-color: #040407; - border-radius: 0; - text-shadow: none; } - columnview.view > header > button:disabled, - treeview.view > header > button:disabled { - border-color: #0F111A; - background-image: none; } - columnview.view > header > button:last-child:backdrop, - treeview.view > header > button:last-child:backdrop, columnview.view > header > button:last-child, - treeview.view > header > button:last-child { - border-right-style: none; } - -/********************** - * Window Decorations * - *********************/ -window { - border-width: 0px; } - window.csd { - box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.75); - margin: 0px; - border-radius: 4px 4px 0 0; } - window.csd:backdrop { - box-shadow: 0 3px 9px 1px transparent, 0 2px 6px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.75); - transition: 200ms ease-out; } - window.csd.popup { - border-radius: 7px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.65); } - window.csd.dialog.message { - border-radius: 4px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.65); } - window.solid-csd { - margin: 0; - padding: 4px; - border: solid 1px #040407; - border-radius: 0; - box-shadow: inset 0 0 0 4px #040407, inset 0 0 0 3px #0a0b11, inset 0 1px rgba(191, 195, 196, 0.07); } - window.solid-csd:backdrop { - box-shadow: inset 0 0 0 4px #040407, inset 0 0 0 3px #0F111A, inset 0 1px rgba(191, 195, 196, 0.07); } - window.maximized, window.fullscreen { - border-radius: 0; - box-shadow: none; } - window.tiled, window.tiled-top, window.tiled-left, window.tiled-right, window.tiled-bottom { - border-radius: 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75), 0 0 0 20px transparent; } - window:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75), 0 0 0 20px transparent; } - window.popup { - box-shadow: none; } - window.ssd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75); } - -windowcontrols button.close, windowcontrols button.maximize, windowcontrols button.minimize { - min-width: 20px; - min-height: 20px; - margin: 0; - padding: 0 1px; - background-position: center; - background-repeat: no-repeat; - background-size: 16px 16px; } - windowcontrols button.close, windowcontrols button.close:hover, windowcontrols button.close:focus, windowcontrols button.close:active, windowcontrols button.close:backdrop, windowcontrols button.close:backdrop:hover, windowcontrols button.maximize, windowcontrols button.maximize:hover, windowcontrols button.maximize:focus, windowcontrols button.maximize:active, windowcontrols button.maximize:backdrop, windowcontrols button.maximize:backdrop:hover, windowcontrols button.minimize, windowcontrols button.minimize:hover, windowcontrols button.minimize:focus, windowcontrols button.minimize:active, windowcontrols button.minimize:backdrop, windowcontrols button.minimize:backdrop:hover { - background-color: transparent; - border: none; - box-shadow: none; - color: transparent; } - windowcontrols button.close:backdrop, windowcontrols button.maximize:backdrop, windowcontrols button.minimize:backdrop { - -gtk-icon-shadow: none; - background-image: -gtk-scaled(url("../assets/close_unfocused.png"), url("../assets/close_unfocused@2.png")); } -windowcontrols button.close { - background-image: -gtk-scaled(url("../assets/close.png"), url("../assets/close@2.png")); } - windowcontrols button.close:hover, windowcontrols button.close:active { - background-image: -gtk-scaled(url("../assets/close_prelight.png"), url("../assets/close_prelight@2.png")); } -windowcontrols button.maximize { - background-image: -gtk-scaled(url("../assets/maximize.png"), url("../assets/maximize@2.png")); } - windowcontrols button.maximize:hover, windowcontrols button.maximize:active { - background-image: -gtk-scaled(url("../assets/maximize_prelight.png"), url("../assets/maximize_prelight@2.png")); } -windowcontrols button.minimize { - background-image: -gtk-scaled(url("../assets/min.png"), url("../assets/min@2.png")); } - windowcontrols button.minimize:hover, windowcontrols button.minimize:active { - background-image: -gtk-scaled(url("../assets/min_prelight.png"), url("../assets/min_prelight@2.png")); } - -headerbar.selection-mode button.titlebutton, -.titlebar.selection-mode button.titlebutton { - text-shadow: 0 -1px rgba(0, 0, 0, 0.7349019608); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.7349019608); } - headerbar.selection-mode button.titlebutton:backdrop, - .titlebar.selection-mode button.titlebutton:backdrop { - -gtk-icon-shadow: none; } - -.view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, -.view text:selected:focus, -iconview text:selected:focus, -textview text:selected:focus, -.view text:selected, -iconview text:selected, -textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, -.menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection, -entry selection:focus, -entry selection, row:selected, columnview.view:selected:focus, columnview.view:selected, -treeview.view:selected:focus, -treeview.view:selected { - background-color: #00A9A5; } - row:selected label, label:selected, .selection-mode windowcontrols button, .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, - .menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection, - entry selection:focus, - entry selection, row:selected, columnview.view:selected:focus, columnview.view:selected, - treeview.view:selected:focus, - treeview.view:selected { - color: #fefefe; - font-weight: normal; } - row:selected label:disabled, label:disabled:selected, .selection-mode windowcontrols button:disabled, iconview:disabled:selected:focus, .view:disabled:selected, iconview:disabled:selected, - iconview text:disabled:selected:focus, - textview text:disabled:selected:focus, - .view text:disabled:selected, - iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, modelbutton.flat:disabled:selected, - .menuitem.button.flat:disabled:selected, calendar:disabled:selected, spinbutton:not(.vertical) selection:disabled, - entry selection:disabled, row:disabled:selected { - color: #7fd4d2; } - row:selected label:backdrop, label:backdrop:selected, .selection-mode windowcontrols button:backdrop, iconview:backdrop:selected:focus, .view:backdrop:selected, iconview:backdrop:selected, - iconview text:backdrop:selected:focus, - textview text:backdrop:selected:focus, - .view text:backdrop:selected, - iconview text:backdrop:selected, - textview text:backdrop:selected, iconview text selection:backdrop:focus, .view text selection:backdrop, iconview text selection:backdrop, - textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label:backdrop selection, modelbutton.flat:backdrop:selected, - .menuitem.button.flat:backdrop:selected, calendar:backdrop:selected, spinbutton:not(.vertical) selection:backdrop, - entry selection:backdrop, row:backdrop:selected { - color: rgba(254, 254, 254, 0.5); } - row:selected label:backdrop:disabled, label:backdrop:disabled:selected, .selection-mode windowcontrols button:backdrop:disabled, .view:backdrop:disabled:selected, iconview:backdrop:disabled:selected, - .view text:backdrop:disabled:selected, - iconview text:backdrop:disabled:selected, - textview text:backdrop:disabled:selected, .view text selection:backdrop:disabled, iconview text selection:backdrop:disabled, - textview text selection:backdrop:disabled, flowbox flowboxchild:backdrop:disabled:selected, label:disabled selection:backdrop, label:backdrop selection:disabled, modelbutton.flat:backdrop:disabled:selected, - .menuitem.button.flat:backdrop:disabled:selected, calendar:backdrop:disabled:selected, spinbutton:not(.vertical) selection:backdrop:disabled, - entry selection:backdrop:disabled, row:backdrop:disabled:selected { - color: rgba(32, 180, 176, 0.85); } - -.monospace { - font-family: Monospace; } - -/********************** - * DE-Specific Styles * - **********************/ -/********* -* Budgie * -*********/ -.budgie-container { - background-color: transparent; } - .budgie-container:backdrop { - background-color: transparent; } - .budgie-container popover list, - .budgie-container popover row { - border: none; - background: none; - padding: 0; - margin: 0; } - -.budgie-popover .container, -.budgie-popover border, -.budgie-popover list, -.budgie-popover row { - padding: 0; - margin: 0; - background: none; - border: none; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - opacity: 1; - min-width: 0; - min-height: 0; } - -.budgie-popover, -.budgie-popover.background { - border-radius: 2px; - padding: 0; - background: rgba(0, 0, 0, 0.95); - background-clip: border-box; - box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.35); - border: 1px solid #040407; } - .budgie-popover list:hover, - .budgie-popover row:hover, - .budgie-popover.background list:hover, - .budgie-popover.background row:hover { - background: none; } - .budgie-popover > frame.container, - .budgie-popover.background > frame.container { - margin: 0 -1px -1px; - padding: 2px 0 0; } - .budgie-popover button, - .budgie-popover.background button { - color: #BFC3C4; - border: none; - background: transparent; } - .budgie-popover button:hover, - .budgie-popover.background button:hover { - color: #00A9A5; } - -.budgie-popover > .container { - padding: 2px; } - -.budgie-menu { - color: #BFC3C4; } - .budgie-menu .container { - padding: 0; } - .budgie-menu button:hover { - -gtk-icon-filter: none; } - .budgie-menu entry.search { - border: none; - background: none; - padding: 5px 2px; - border-bottom: 1px solid #040407; - border-radius: 0; - font-size: 120%; - box-shadow: none; - color: #BFC3C4; } - .budgie-menu entry.search image:dir(ltr) { - padding-left: 8px; - padding-right: 12px; } - .budgie-menu entry.search image:dir(rtl) { - padding-left: 12px; - padding-right: 8px; } - .budgie-menu .categories { - border-width: 0; - margin-left: 3px; - background: transparent; } - .budgie-menu .categories:dir(ltr) { - border-right: 1px solid #040407; } - .budgie-menu .categories:dir(rtl) { - border-left: 1px solid #040407; } - .budgie-menu .category-button { - padding: 7px; - border-radius: 2px 0 0 2px; } - .budgie-menu .category-button:hover { - background-color: rgba(191, 195, 196, 0.05); - color: #BFC3C4; } - .budgie-menu .category-button:active { - box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } - .budgie-menu .category-button:checked { - color: #fefefe; - background: #00A9A5; } - .budgie-menu .category-button:checked:hover { - color: rgba(254, 254, 254, 0.6); } - .budgie-menu .category-button:checked:disabled { - opacity: 0.5; } - .budgie-menu .category-button:checked:disabled label { - color: rgba(254, 254, 254, 0.7); } - .budgie-menu scrollbar { - background-color: transparent; - border-color: #040407; } - .budgie-menu button:not(.category-button) { - padding-top: 5px; - padding-bottom: 5px; - border-radius: 0; - box-shadow: none; - background: yellow; } - .budgie-menu button { - border: none; - background: transparent; } - .budgie-menu undershoot, .budgie-menu overshoot { - background: none; } - .budgie-menu list { - color: rgba(191, 195, 196, 0.7); } - -button.budgie-menu-launcher { - padding: 0 2px; - color: #BFC3C4; - box-shadow: none; - background-color: transparent; } - button.budgie-menu-launcher:hover { - color: #BFC3C4; } - button.budgie-menu-launcher:active, button.budgie-menu-launcher:checked { - color: #BFC3C4; } - button.budgie-menu-launcher:backdrop { - color: #BFC3C4; - background-color: transparent; } - button.budgie-menu-launcher:backdrop:hover { - color: #BFC3C4; } - button.budgie-menu-launcher:backdrop:active, button.budgie-menu-launcher:backdrop:checked { - color: #00A9A5; - box-shadow: none; - background-color: #12141f; } - -.user-menu .content-box separator { - margin-left: 6px; - margin-right: 6px; - background-color: rgba(191, 195, 196, 0.1); } -.user-menu button { - margin: 5px; } -.user-menu > box.vertical row.activatable:first-child .indicator-item, -.user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item { - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); - background-color: #00A9A5; - transition-duration: 0.2s; } - .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(ltr), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(ltr) { - padding-left: 7px; - background-position: left center; - background-repeat: no-repeat; - background-size: 38px auto; } - .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(rtl), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(rtl) { - padding-right: 7px; - background-position: right center; - background-repeat: no-repeat; - background-size: 38px auto; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label { - color: #fefefe; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(ltr), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(ltr) { - padding-left: 5px; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(rtl), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(rtl) { - padding-right: 5px; } - .user-menu > box.vertical row.activatable:first-child .indicator-item image, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image { - color: #fefefe; } - .user-menu > box.vertical row.activatable:first-child .indicator-item image:first-child, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image:first-child { - min-width: 24px; - min-height: 20px; } - -button.raven-trigger { - padding-left: 2px; - padding-right: 2px; - color: #BFC3C4; - box-shadow: none; } - button.raven-trigger:hover { - color: #BFC3C4; - background-color: transparent; } - button.raven-trigger:active, button.raven-trigger:checked { - box-shadow: none; - background-color: transparent; - color: #00A9A5; } - button.raven-trigger:backdrop { - color: #BFC3C4; } - button.raven-trigger:backdrop:hover { - color: #BFC3C4; } - button.raven-trigger:backdrop:active, button.raven-trigger:backdrop:checked { - box-shadow: none; - color: #00A9A5; - background-color: transparent; } - -.places-menu .container { - padding: 0; } -.places-menu .message-bar { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } -.places-menu .name-button { - border: 0; - border-radius: 0; - padding: 4px 6px; } -.places-menu .unmount-button { - padding: 4px 4px; - border: 0; - border-radius: 0; } -.places-menu .places-section-header { - padding: 0px; - border-bottom: 1px solid rgba(4, 4, 7, 0.95); - box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.03); } -.places-menu .places-section-header > button { - padding: 8px; - border: none; - border-bottom-left-radius: 0px; - border-bottom-right-radius: 0px; } -.places-menu .places-list { - background: rgba(191, 195, 196, 0.04); - border-bottom: 1px solid rgba(4, 4, 7, 0.95); } -.places-menu .unlock-area { - border-top: 1px solid rgba(4, 4, 7, 0.85); - border-bottom: 1px solid rgba(4, 4, 7, 0.85); } -.places-menu .unlock-area entry { - border-radius: 0; - border: 0; } -.places-menu .unlock-area button { - border-radius: 0; - border: 0; - border-left: 1px solid rgba(4, 4, 7, 0.85); } -.places-menu .alternative-label { - font-size: 15px; - padding: 3px; } -.places-menu .always-expand { - background: transparent; - border-bottom: none; } - -.night-light-indicator .container { - padding: 0; } -.night-light-indicator .view-header { - font-size: 14px; - padding: 10px; - border-bottom: 1px solid mix(@theme_base_color, #000000, 0.35); - box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.04); } -.night-light-indicator .display-settings-button { - border-top-left-radius: 0px; - border-top-right-radius: 0px; - border: none; - padding: 3px; - border-top: 1px solid mix(@theme_base_color, #000000, 0.35); - box-shadow: inset 0px 1px 1px alpha(@theme_fg_color, 0.04); } - -.budgie-panel { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); - background-image: none; - box-shadow: none; - border: none; - transition: all 150ms ease-in; } - .budgie-panel .alert { - color: #FF5370; } - .budgie-panel:backdrop { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-panel button { - border-top-width: 0; - border-bottom-width: 0; - border-radius: 0; } - .budgie-panel button.flat { - background: transparent; - border: none; } - .budgie-panel button.flat:hover, .budgie-panel button.flat:active, .budgie-panel button.flat:checked { - background: transparent; - color: #00A9A5; } - .budgie-panel popover list, - .budgie-panel popover row { - padding: 0; - margin: 0; } - .budgie-panel label { - color: #BFC3C4; - font-weight: 700; } - .budgie-panel.transparent { - background-color: rgba(0, 0, 0, 0.2); } - .top .budgie-panel.transparent { - border-bottom-color: transparent; } - .bottom .budgie-panel.transparent { - border-top-color: transparent; } - .left .budgie-panel.transparent { - border-right-color: transparent; } - .right .budgie-panel.transparent { - border-left-color: transparent; } - .budgie-panel .end-region { - border-radius: 0px; } - .budgie-panel .end-region separator { - background-color: rgba(191, 195, 196, 0.15); } - .budgie-panel .end-region label { - font-weight: 700; - color: #BFC3C4; } - -.budgie-panel #tasklist-button, -.budgie-panel #tasklist-button:backdrop { - outline-color: transparent; - transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border-color: rgba(0, 0, 0, 0); - border-radius: 0; - background-color: transparent; - box-shadow: none; - background-clip: padding-box; } - -.budgie-panel button.flat.launcher { - outline-color: transparent; - transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border-color: rgba(0, 0, 0, 0); - border-radius: 0; - padding: 0; - background-clip: padding-box; - background-color: transparent; } - .budgie-panel button.flat.launcher { - box-shadow: none; } - -.budgie-panel #tasklist-button:hover, .budgie-panel .unpinned button.flat.launcher:hover, -.budgie-panel .pinned button.flat.launcher.running:hover { - box-shadow: none; } -.budgie-panel #tasklist-button:active, .budgie-panel .unpinned button.flat.launcher:active, -.budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel #tasklist-button:checked, .budgie-panel .unpinned button.flat.launcher:checked, -.budgie-panel .pinned button.flat.launcher.running:checked { - box-shadow: none; } -.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, -.top .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .top button.flat.launcher.running { - padding-bottom: 2px; - border-top: 2px solid transparent; } - .top .budgie-panel .pinned button.flat.launcher:not(.running) { - border-top: 2px solid transparent; } - - .top .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-top: 2px solid rgba(255, 255, 255, 0.1); } - - .top .budgie-panel .unpinned button.flat.launcher, - .top .budgie-panel .pinned button.flat.launcher.running { - border-top: 2px solid rgba(255, 255, 255, 0.1); } - .top .budgie-panel #tasklist-button:hover, .budgie-panel .top #tasklist-button:hover, .top .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .top button.flat.launcher:hover, - .top .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .top button.flat.launcher.running:hover { - border-top: 2px solid rgba(255, 255, 255, 0.25); } - .top .budgie-panel #tasklist-button:active, .budgie-panel .top #tasklist-button:active, .top .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .top button.flat.launcher:active, - .top .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .top button.flat.launcher.running:active, .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .top button.flat.launcher:checked, - .top .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .top button.flat.launcher.running:checked { - border-top: 2px solid #00A9A5; } -.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, -.bottom .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .bottom button.flat.launcher.running { - padding-top: 2px; - border-bottom: 2px solid transparent; } - .bottom .budgie-panel .pinned button.flat.launcher:not(.running) { - border-bottom: 2px solid transparent; } - - .bottom .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-bottom: 2px solid rgba(255, 255, 255, 0.1); } - - .bottom .budgie-panel .unpinned button.flat.launcher, - .bottom .budgie-panel .pinned button.flat.launcher.running { - border-bottom: 2px solid rgba(255, 255, 255, 0.1); } - .bottom .budgie-panel #tasklist-button:hover, .budgie-panel .bottom #tasklist-button:hover, .bottom .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .bottom button.flat.launcher:hover, - .bottom .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .bottom button.flat.launcher.running:hover { - border-bottom: 2px solid rgba(255, 255, 255, 0.25); } - .bottom .budgie-panel #tasklist-button:active, .budgie-panel .bottom #tasklist-button:active, .bottom .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .bottom button.flat.launcher:active, - .bottom .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .bottom button.flat.launcher.running:active, .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .bottom button.flat.launcher:checked, - .bottom .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .bottom button.flat.launcher.running:checked { - border-bottom: 2px solid #00A9A5; } -.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, -.left .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .left button.flat.launcher.running { - padding-right: 2px; - border-left: 2px solid transparent; } - .left .budgie-panel .pinned button.flat.launcher:not(.running) { - border-left: 2px solid transparent; } - - .left .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-left: 2px solid rgba(255, 255, 255, 0.1); } - - .left .budgie-panel .unpinned button.flat.launcher, - .left .budgie-panel .pinned button.flat.launcher.running { - border-left: 2px solid rgba(255, 255, 255, 0.1); } - .left .budgie-panel #tasklist-button:hover, .budgie-panel .left #tasklist-button:hover, .left .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .left button.flat.launcher:hover, - .left .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .left button.flat.launcher.running:hover { - border-left: 2px solid rgba(255, 255, 255, 0.25); } - .left .budgie-panel #tasklist-button:active, .budgie-panel .left #tasklist-button:active, .left .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .left button.flat.launcher:active, - .left .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .left button.flat.launcher.running:active, .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .left button.flat.launcher:checked, - .left .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .left button.flat.launcher.running:checked { - border-left: 2px solid #00A9A5; } -.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, -.right .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .right button.flat.launcher.running { - padding-left: 2px; - border-right: 2px solid transparent; } - .right .budgie-panel .pinned button.flat.launcher:not(.running) { - border-right: 2px solid transparent; } - - .right .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-right: 2px solid rgba(255, 255, 255, 0.1); } - - .right .budgie-panel .unpinned button.flat.launcher, - .right .budgie-panel .pinned button.flat.launcher.running { - border-right: 2px solid rgba(255, 255, 255, 0.1); } - .right .budgie-panel #tasklist-button:hover, .budgie-panel .right #tasklist-button:hover, .right .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .right button.flat.launcher:hover, - .right .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .right button.flat.launcher.running:hover { - border-right: 2px solid rgba(255, 255, 255, 0.25); } - .right .budgie-panel #tasklist-button:active, .budgie-panel .right #tasklist-button:active, .right .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .right button.flat.launcher:active, - .right .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .right button.flat.launcher.running:active, .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .right button.flat.launcher:checked, - .right .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .right button.flat.launcher.running:checked { - border-right: 2px solid #00A9A5; } - -.top .budgie-panel { - border-bottom: 1px solid rgba(0, 0, 0, 0.92); } - -.top .raven-frame { - padding: 0; - background: none; } - .top .raven-frame border { - border: none; - border-bottom: 1px solid rgba(4, 4, 7, 0.92); } - -.top .shadow-block { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent); } - -.bottom .budgie-panel { - border-top: 1px solid rgba(0, 0, 0, 0.92); } - -.bottom .raven-frame { - padding: 0; - background: none; } - .bottom .raven-frame border { - border: none; - border-top: 1px solid rgba(4, 4, 7, 0.92); } - -.bottom .shadow-block { - background-color: transparent; - background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); } - -.left .budgie-panel { - border-right: 1px solid rgba(0, 0, 0, 0.92); } - -.left .raven-frame { - padding: 0; - background: none; } - .left .raven-frame border { - border: none; - border-right: 1px solid rgba(4, 4, 7, 0.92); } - -.left .shadow-block { - background-color: transparent; - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent); } - -.right .budgie-panel { - border-left: 1px solid rgba(0, 0, 0, 0.92); } - -.right .raven-frame { - padding: 0; - background: none; } - .right .raven-frame border { - border: none; - border-left: 1px solid rgba(4, 4, 7, 0.92); } - -.right .shadow-block { - background-color: transparent; - background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent); } - -.raven { - padding: 0; - color: #FF5370; - background: rgba(0, 0, 0, 0.95); - transition: 170ms ease-out; } - .raven .raven-header { - min-height: 32px; - color: #BFC3C4; - border: solid rgba(4, 4, 7, 0.95); - border-width: 1px 0; - background-color: rgba(28, 31, 48, 0.45); } - .raven .raven-header * { - padding-top: 0; - padding-bottom: 0; } - .raven .raven-header.top { - border-top-style: none; - border-color: transparent; - margin-top: 3px; - min-height: 32px; } - .raven .raven-header.top button.image-button:hover { - color: #00908c; - box-shadow: none; } - .raven .raven-header > button.text-button { - border-radius: 2px; - color: #fefefe; - background-color: rgba(255, 58, 91, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header > button.text-button:hover { - border-radius: 2px; - color: #fefefe; - background-color: rgba(255, 83, 112, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header > button.text-button:active { - color: #fefefe; - background-color: rgba(255, 109, 133, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header.bottom { - border-bottom-style: none; } - .raven .raven-header button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0; } - .raven .raven-header button:hover { - color: #00A9A5; - border-radius: 0; - text-shadow: none; - background-image: linear-gradient(to bottom, #131520, #0F111A); - border-radius: 0; } - .raven .raven-header button:active, .raven .raven-header button:checked { - color: #00A9A5; - background-color: #090b10; } - .raven .raven-header button:disabled { - color: #676a6f; } - .raven list { - color: #BFC3C4; - background-color: transparent; } - .raven list:selected { - background-color: rgba(0, 169, 165, 0.9); } - .raven list row, - .raven list row.activatable { - background-color: transparent; } - .raven list row:hover, - .raven list row.activatable:hover { - background-color: rgba(28, 31, 48, 0.25); } - .raven list row:selected, - .raven list row.activatable:selected { - background-color: rgba(0, 169, 165, 0.9); } - .raven .raven-background { - color: #BFC3C4; - background-color: transparent; - border-color: transparent; } - .raven .raven-background.middle { - border-bottom-style: none; } - .raven .powerstrip { - background-color: transparent; - border-top-color: transparent; } - .raven .powerstrip button.image-button { - border-radius: 50%; - padding: 5px; - min-width: 32px; - min-height: 32px; - margin-bottom: 3px; - background: #C792EA; - color: #fefefe; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); - border: none; - font-size: 100%; } - .raven .powerstrip button.image-button:hover { - background: rgba(199, 146, 234, 0.85); - color: #fefefe; } - .raven .powerstrip button.image-button:active { - background: #C792EA; - color: #fefefe; } - .raven .powerstrip button.image-button:first-child { - background: #00A9A5; } - .raven .powerstrip button.image-button:first-child:hover { - background: rgba(0, 169, 165, 0.85); } - .raven .powerstrip button.image-button:first-child:active { - background: #00A9A5; } - .raven .powerstrip button.image-button:last-child { - background: linear-gradient(to right, #FF5370, #FF5370); } - .raven .powerstrip button.image-button:last-child:hover { - background: rgba(255, 83, 112, 0.85); } - .raven .powerstrip button.image-button:last-child:active { - background: #FF5370; } - .raven .option-subtitle { - font-size: 13px; } - -calendar.raven-calendar { - padding: 4px; - color: #BFC3C4; - background: transparent; - border-color: transparent; } - calendar.raven-calendar:indeterminate { - color: alpha(currentColor,0.3); } - calendar.raven-calendar:selected { - background: transparent; - color: #009591; - font-weight: bold; } - calendar.raven-calendar:backdrop { - background-color: transparent; } - calendar.raven-calendar.header { - color: #BFC3C4; - border: none; - border-radius: 0; - background-color: transparent; } - calendar.raven-calendar button, calendar.raven-calendar button:focus { - color: alpha(currentColor,0.5); - background-color: transparent; } - calendar.raven-calendar button:hover, calendar.raven-calendar button:focus:hover { - color: #BFC3C4; - background-color: transparent; } - -.raven-mpris { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.9); - border: solid rgba(255, 255, 255, 0.1); - border-width: 1px 0; - border-bottom-color: rgba(0, 0, 0, 0.1); } - .raven-mpris button.image-button { - padding: 10px; - background-color: #131520; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); } - .raven-mpris button.image-button:hover { - background-color: #00A9A5; } - .raven-mpris button.image-button:active { - background-color: #00908c; } - .raven-mpris button.image-button:first-child { - margin-right: 4px; } - .raven-mpris button.image-button:last-child { - margin-left: 4px; } - .raven-mpris button.image-button:last-child, .raven-mpris button.image-button:first-child { - padding: 4px; - margin-top: 6px; - margin-bottom: 6px; } - -.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { - background: none; - border-radius: 1px; } - .budgie-notification-window button, .budgie-osd-window button, .budgie-switcher-window button { - background-color: #00A9A5; - color: #fefefe; - border: none; } - .budgie-notification-window button:hover, .budgie-osd-window button:hover, .budgie-switcher-window button:hover { - background-color: #00908c; - border: none; } - .budgie-notification-window button:active, .budgie-osd-window button:active, .budgie-switcher-window button:active, .budgie-notification-window button:checked, .budgie-osd-window button:checked, .budgie-switcher-window button:checked { - background-color: #00908c; } - -.budgie-notification.background, .background.budgie-osd, .background.budgie-switcher { - border-radius: 1px; } -.budgie-notification .notification-title, .budgie-osd .notification-title, .budgie-switcher .notification-title { - font-size: 110%; - color: #BFC3C4; } -.budgie-notification .notification-body, .budgie-osd .notification-body, .budgie-switcher .notification-body { - color: rgba(191, 195, 196, 0.7); } -.budgie-notification button, .budgie-osd button, .budgie-switcher button { - background-color: transparent; - color: #fefefe; } - .budgie-notification button:hover, .budgie-osd button:hover, .budgie-switcher button:hover { - background-color: transparent; - color: #FF5370; - box-shadow: none; } - .budgie-notification button:active, .budgie-osd button:active, .budgie-switcher button:active, .budgie-notification button:checked, .budgie-osd button:checked, .budgie-switcher button:checked { - background-color: transparent; - color: #ff3a5b; } - -.drop-shadow, .budgie-session-dialog.background, .background.budgie-polkit-dialog, .background.budgie-run-dialog { - color: #BFC3C4; - background-color: rgba(15, 17, 26, 0.95); - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); - border-radius: 2px; } - -.budgie-switcher-window flowbox { - color: #BFC3C4; } -.budgie-switcher-window flowboxchild { - padding: 3px; - margin: 3px; - color: #BFC3C4; } - .budgie-switcher-window flowboxchild:hover { - background-color: transparent; } - .budgie-switcher-window flowboxchild:active { - color: #BFC3C4; } - .budgie-switcher-window flowboxchild:selected { - color: #fefefe; - background-color: rgba(0, 169, 165, 0.5); } - .budgie-switcher-window flowboxchild:selected:active { - color: #fefefe; } - .budgie-switcher-window flowboxchild:selected:hover { - background-color: #009895; } - .budgie-switcher-window flowboxchild:selected:disabled { - color: rgba(254, 254, 254, 0.7); - background-color: rgba(0, 169, 165, 0.7); } - .budgie-switcher-window flowboxchild:selected:disabled label { - color: rgba(254, 254, 254, 0.7); } - -.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-session-dialog label:backdrop, .budgie-polkit-dialog label:backdrop, .budgie-run-dialog label:backdrop { - color: rgba(191, 195, 196, 0.8); } - .budgie-session-dialog .dialog-title, .budgie-polkit-dialog .dialog-title, .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 { - margin-bottom: 0; - min-height: 32px; - border-bottom: none; - border-color: #040407; - border-radius: 0; - color: #BFC3C4; - background-color: transparent; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(0, 0, 0, 0.2); } - .budgie-session-dialog .linked.horizontal > button label, .budgie-polkit-dialog .linked.horizontal > button label, .budgie-run-dialog .linked.horizontal > button label { - font-weight: 700; } - .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-left: none; - border-bottom-left-radius: 2px; } - .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-right: none; - border-bottom-right-radius: 2px; - background: transparent; } - .budgie-session-dialog .linked.horizontal > button:hover, .budgie-polkit-dialog .linked.horizontal > button:hover, .budgie-run-dialog .linked.horizontal > button:hover { - background-color: rgba(0, 169, 165, 0.9); } - .budgie-session-dialog .linked.horizontal > button:hover:backdrop label, .budgie-polkit-dialog .linked.horizontal > button:hover:backdrop label, .budgie-run-dialog .linked.horizontal > button:hover:backdrop label { - color: rgba(255, 255, 255, 0.5); } - .budgie-session-dialog .linked.horizontal > button.suggested-action, .budgie-polkit-dialog .linked.horizontal > button.suggested-action, .budgie-run-dialog .linked.horizontal > button.suggested-action { - background: linear-gradient(to right, #FF5370 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.suggested-action:hover, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:hover, .budgie-run-dialog .linked.horizontal > button.suggested-action:hover { - background: linear-gradient(to right, #ff2a4e 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.suggested-action:active, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:active, .budgie-run-dialog .linked.horizontal > button.suggested-action:active, .budgie-session-dialog .linked.horizontal > button.suggested-action:checked, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:checked, .budgie-run-dialog .linked.horizontal > button.suggested-action:checked { - background: linear-gradient(to right, #ff2a4e 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action, .budgie-polkit-dialog .linked.horizontal > button.destructive-action, .budgie-run-dialog .linked.horizontal > button.destructive-action { - background: linear-gradient(to right, #FF5370 0%, #ff2046 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action:hover, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:hover, .budgie-run-dialog .linked.horizontal > button.destructive-action:hover { - background: linear-gradient(to right, #ff2a4e 0%, #ff2046 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action:active, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:active, .budgie-run-dialog .linked.horizontal > button.destructive-action:active, .budgie-session-dialog .linked.horizontal > button.destructive-action:checked, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:checked, .budgie-run-dialog .linked.horizontal > button.destructive-action:checked { - background: linear-gradient(to right, #ff2a4e 0%, #ff2046 100%); } - .budgie-session-dialog entry, .budgie-polkit-dialog entry, .budgie-run-dialog entry { - background-color: #505359; - color: #BFC3C4; } - .budgie-session-dialog entry:focus, .budgie-polkit-dialog entry:focus, .budgie-run-dialog entry:focus { - background-color: #505359; } - .budgie-session-dialog entry:backdrop, .budgie-polkit-dialog entry:backdrop, .budgie-run-dialog entry:backdrop { - background-color: #505359; } - -.budgie-polkit-dialog .message { - color: rgba(191, 195, 196, 0.7); } -.budgie-polkit-dialog .failure { - color: #FF5370; } - -.budgie-run-dialog entry.search, .budgie-run-dialog entry.search:focus { - font-size: 120%; - padding: 8px 5px; - border: none; - box-shadow: none; } - .budgie-run-dialog entry.search image, .budgie-run-dialog entry.search:focus image { - color: #BFC3C4; } - .budgie-run-dialog entry.search image:dir(ltr), .budgie-run-dialog entry.search:focus image:dir(ltr) { - padding-left: 8px; - padding-right: 12px; } - .budgie-run-dialog entry.search image:dir(rtl), .budgie-run-dialog entry.search:focus image:dir(rtl) { - padding-left: 12px; - padding-right: 8px; } -.budgie-run-dialog list row:selected .dim-label, .budgie-run-dialog list row:selected label.separator, .budgie-run-dialog list row:selected .titlebar .subtitle, .titlebar .budgie-run-dialog list row:selected .subtitle, -.budgie-run-dialog list row:selected headerbar .subtitle, -headerbar .budgie-run-dialog list row:selected .subtitle { - opacity: 1; } -.budgie-run-dialog scrolledwindow { - border-top: 1px solid rgba(0, 0, 0, 0); } - -.budgie-menubar menu { - margin: 4px; - padding: 5px; - border-radius: 0; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-menubar menu menuitem:hover { - background-color: #00A9A5; - color: #fefefe; } -.budgie-menubar arrow { - border: none; - min-width: 16px; - min-height: 16px; } - .budgie-menubar arrow.top { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); - border-bottom: 1px solid rgba(31, 32, 38, 0.928); } - .budgie-menubar arrow.bottom { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - border-top: 1px solid rgba(31, 32, 38, 0.928); } -.budgie-menubar menuitem accelerator { - color: rgba(191, 195, 196, 0.35); } -.budgie-menubar menuitem check, .budgie-menubar menuitem radio { - min-height: 16px; - min-width: 16px; } - -window.background.budgie-settings-window.csd > box.horizontal > stack > scrolledwindow buttonbox.inline-toolbar { - border-style: none none solid; } - -.workspace-switcher .workspace-layout { - border: 0 solid rgba(0, 0, 0, 0.95); } - .top .workspace-switcher .workspace-layout:dir(ltr), .bottom .workspace-switcher .workspace-layout:dir(ltr) { - border-left-width: 1px; } - .top .workspace-switcher .workspace-layout:dir(rtl), .bottom .workspace-switcher .workspace-layout:dir(rtl) { - border-right-width: 1px; } - .left .workspace-switcher .workspace-layout, .right .workspace-switcher .workspace-layout { - border-top-width: 1px; } -.workspace-switcher .workspace-item, .workspace-switcher .workspace-add-button { - border: 0 solid rgba(19, 21, 32, 0.95); } - .top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr), - .top .workspace-switcher .workspace-add-button:dir(ltr), .bottom .workspace-switcher .workspace-add-button:dir(ltr) { - border-right-width: 1px; } - .top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl), - .top .workspace-switcher .workspace-add-button:dir(rtl), .bottom .workspace-switcher .workspace-add-button:dir(rtl) { - border-left-width: 1px; } - .left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item, .left .workspace-switcher .workspace-add-button, .right .workspace-switcher .workspace-add-button { - border-bottom-width: 1px; } -.workspace-switcher .workspace-item.current-workspace { - background-color: rgba(0, 0, 0, 0.95); } -.workspace-switcher .workspace-add-button { - border: none; - background: transparent; } - .workspace-switcher .workspace-add-button:hover { - box-shadow: none; } - .workspace-switcher .workspace-add-button:active { - background-image: none; } - .workspace-switcher .workspace-add-button:active image { - margin: 1px 0 -1px; } -.budgie-panel .workspace-switcher .workspace-icon-button { - min-height: 24px; - min-width: 24px; - padding: 0; - border-radius: 2px; } - -/************ - * Nautilus * - ************/ -.nautilus-window .frame *:selected, .nautilus-window .frame *:selected:backdrop { - background: transparent; - color: #00A9A5; } - .nautilus-window .frame *:selected label, .nautilus-window .frame *:selected:backdrop label { - color: #00A9A5; } -.nautilus-window paned > separator { - background-image: none; } -.nautilus-window .sidebar { - background-color: transparent; } - .nautilus-window .sidebar:backdrop { - background-color: transparent; } - .nautilus-window .sidebar .list-row button { - border: none; - background-color: rgba(13, 15, 23, 0.95); } - .nautilus-window .sidebar .list-row button:active { - background-color: rgba(0, 169, 165, 0.75); } - .nautilus-window .sidebar .list-row:selected { - background-color: rgba(0, 169, 165, 0.75); } - .nautilus-window .sidebar .list-row:selected:hover { - background-color: rgba(0, 169, 165, 0.9); } - .nautilus-window .sidebar .list-row:hover { - background-color: rgba(19, 21, 32, 0.5); } - .nautilus-window .sidebar .list-row:hover:active { - background-color: rgba(0, 169, 165, 0.9); } -.nautilus-window.background { - background-color: rgba(13, 15, 23, 0.95); } - .nautilus-window.background:backdrop { - background-color: rgba(13, 15, 23, 0.95); } -.nautilus-window #NautilusPathBar { - height: 20px; - margin-top: 7px; - margin-bottom: 7px; - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); } - .nautilus-window #NautilusPathBar .dim-label, .nautilus-window #NautilusPathBar label.separator, .nautilus-window #NautilusPathBar .titlebar .subtitle, .titlebar .nautilus-window #NautilusPathBar .subtitle, - .nautilus-window #NautilusPathBar headerbar .subtitle, - headerbar .nautilus-window #NautilusPathBar .subtitle { - color: transparent; - margin-right: -5px; } - .nautilus-window #NautilusPathBar button .horizontal > .dim-label, .nautilus-window #NautilusPathBar button .horizontal > label.separator, .nautilus-window #NautilusPathBar button .titlebar .horizontal > .subtitle, .titlebar .nautilus-window #NautilusPathBar button .horizontal > .subtitle, - .nautilus-window #NautilusPathBar button headerbar .horizontal > .subtitle, - headerbar .nautilus-window #NautilusPathBar button .horizontal > .subtitle { - color: #BFC3C4; - padding: 3px 12px; - margin: 0; - border-right: 1px solid #040407; } - .nautilus-window #NautilusPathBar button:hover .dim-label, .nautilus-window #NautilusPathBar button:hover label.separator, .nautilus-window #NautilusPathBar button:hover .titlebar .subtitle, .titlebar .nautilus-window #NautilusPathBar button:hover .subtitle, - .nautilus-window #NautilusPathBar button:hover headerbar .subtitle, - headerbar .nautilus-window #NautilusPathBar button:hover .subtitle, .nautilus-window #NautilusPathBar button:focus .dim-label, .nautilus-window #NautilusPathBar button:focus label.separator, .nautilus-window #NautilusPathBar button:focus .titlebar .subtitle, .titlebar .nautilus-window #NautilusPathBar button:focus .subtitle, - .nautilus-window #NautilusPathBar button:focus headerbar .subtitle, - headerbar .nautilus-window #NautilusPathBar button:focus .subtitle { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } - .nautilus-window #NautilusPathBar button > .horizontal > image.dim-label, .nautilus-window #NautilusPathBar .titlebar button > .horizontal > image.subtitle, .titlebar .nautilus-window #NautilusPathBar button > .horizontal > image.subtitle, - .nautilus-window #NautilusPathBar headerbar button > .horizontal > image.subtitle, - headerbar .nautilus-window #NautilusPathBar button > .horizontal > image.subtitle { - padding: 3px 0px 3px 12px; - border-right: none; - margin-right: -6px; } - .nautilus-window #NautilusPathBar button { - background: transparent; - border: none; - margin: 0; - padding: 0; } - .nautilus-window #NautilusPathBar .current-dir label { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; - padding: 1px 12px; } - .nautilus-window #NautilusPathBar .current-dir image { - background-color: rgba(8, 9, 13, 0.93); - border-bottom: 1px solid #00A9A5; } - .nautilus-window #NautilusPathBar button.current-dir:only-child image { - margin-right: -6px; - padding: 0px 0px 0px 12px; - border-radius: 4px 0px 0px 4px; } -.nautilus-window #NautilusQueryEditor { - margin-top: 8px; - margin-bottom: 8px; } - .nautilus-window #NautilusQueryEditor #NautilusQueryEditorTag > button { - margin: 0; } - .nautilus-window #NautilusQueryEditor > menubutton > button { - min-width: 16px; - min-height: 16px; - margin: 0; - -gtk-icon-size: 12px; - padding: 0 4px; } - .nautilus-window #NautilusQueryEditor > text, .nautilus-window #NautilusQueryEditor > image { - margin: 0; } -.nautilus-window notebook > stack:only-child { - background-color: #131520; } - .nautilus-window notebook > stack:only-child:backdrop { - background-color: #151724; } -.nautilus-window searchbar { - border-top: 1px solid rgba(0, 0, 0, 0.12); } -.nautilus-window .searchbar-container { - margin-top: -1px; } -.nautilus-window .linked:not(.vertical) > entry { - border-radius: 10px; - margin-right: 5px; } - .nautilus-window .linked:not(.vertical) > entry:focus { - border-color: rgba(0, 169, 165, 0.3); } - .nautilus-window .linked:not(.vertical) > entry:focus + button { - border-left-color: #040407; } - -.nautilus-circular-button { - border-radius: 20px; } - -.disk-space-display { - border: 2px solid; } - .disk-space-display .unknown { - background-color: #888a85; - border-color: #555653; } - .disk-space-display .used { - background-color: #9FB0B9; - border-color: #667f8c; } - .disk-space-display .free { - background-color: #D8D8D8; - border-color: #a5a5a5; } - -.nautilus-desktop { - color: #BFC3C4; } - .nautilus-desktop .nautilus-canvas-item { - border-radius: 5px; - color: #fefefe; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop .nautilus-canvas-item:active { - color: #BFC3C4; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item:hover { - color: #BFC3C4; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item:selected { - color: #fefefe; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item .dim-label:selected, .nautilus-desktop .nautilus-canvas-item label.separator:selected, .nautilus-desktop .nautilus-canvas-item .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-canvas-item .subtitle:selected, - .nautilus-desktop .nautilus-canvas-item headerbar .subtitle:selected, - headerbar .nautilus-desktop .nautilus-canvas-item .subtitle:selected { - color: #fefefe; } - .nautilus-desktop .nautilus-list .dim-label:selected, .nautilus-desktop .nautilus-list label.separator:selected, .nautilus-desktop .nautilus-list .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-list .subtitle:selected, - .nautilus-desktop .nautilus-list headerbar .subtitle:selected, - headerbar .nautilus-desktop .nautilus-list .subtitle:selected { - color: #fefefe; } - -/********* - * Gedit * - *********/ -.gedit-search-slider { - padding: 4px; - border-radius: 0 0 3px 3px; - border: 0; - background-color: #0F111A; } - - /********* - * Gnucash * -*********/ -#gnc-id-main-window entry.gnc-class-register-foreground { - background: transparent; - border: none; - box-shadow: none; } -#gnc-id-main-window .arrow.button.toggle { - transition: none; - box-shadow: none; } - #gnc-id-main-window .arrow.button.toggle:hover { - border-color: #00A9A5; } - -/******** - * Gala * - *******/ -.gala-notification { - border-width: 0; - border-radius: 2px; - color: white; - border: 1px solid #131520; - background-color: #131520; } - .gala-notification .title, - .gala-notification .label { - color: #BFC3C4; } - -.gala-button { - padding: 3px; - color: #131520; - border: none; - border-radius: 50%; - background-image: linear-gradient(to bottom, #7e7e7e, #3e3e3e); - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.98), inset 0 1px 0 0 rgba(255, 255, 255, 0.93), inset 0 -1px 0 0 rgba(255, 255, 255, 0.99), 0 0 0 1px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.84), 0 3px 6px rgba(0, 0, 0, 0.77); - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -/********** - * Notify * - *********/ -.notify { - /*-notify-shadow: 0px 2px 18px transparentize(black, 0.60);*/ - border-radius: 5px; - border: 1px solid rgba(0, 0, 0, 0.7); - background-color: rgba(19, 21, 32, 0.05); } - -/*************** - * SwitchBoard * - ***************/ -.category-label { - font-weight: bold; - color: #BFC3C4; } - -/************* - * Slingshot * - ************/ -.button.app { - border: none; - border-radius: 0; - box-shadow: none; - background-image: none; } - .button.app .app:hover { - border-radius: 8px; - border: none; - background-color: rgba(0, 169, 165, 0.3); - color: white; } - .button.app .app:focus { - /*background-color: transparentize(black, 0.20);*/ } - -.search-item { - border-radius: 0; - border: none; - color: #BFC3C4; - background: none; } - .search-item:hover, .search-item:focus { - border-radius: 0; - background-color: rgba(0, 169, 165, 0.3); - color: #fefefe; } - -.search-entry-large, -.search-entry-large:focus { - border: none; - font-size: 18px; - font-weight: 300; - background-image: none; - background: none; - box-shadow: none; - border-radius: 0; } - -.search-category-header { - font-weight: bold; - color: #BFC3C4; } - -/********* - * Panel * - ********/ -.panel { - background-color: transparent; - transition: all 100ms ease-in-out; } - .panel.maximized { - background-color: #131520; } - .panel.translucent { - background-color: rgba(19, 21, 32, 0.5); } - .panel.color-light.translucent { - background-color: rgba(255, 255, 255, 0.85); } - -menubar.panel, -.panel menubar { - box-shadow: none; - border: none; } - -.composited-indicator > revealer, -.composited-indicator > revealer image, -.composited-indicator > revealer label, -.composited-indicator > revealer spinner { - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); - transition: all 200ms ease-in-out; - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); } -.composited-indicator > revealer image:first-child + label { - margin-left: 5px; } - -.panel.color-light .composited-indicator > revealer, -.panel.color-light .composited-indicator > revealer image, -.panel.color-light .composited-indicator > revealer label, -.panel.color-light .composited-indicator > revealer spinner { - color: rgba(0, 0, 0, 0.6); - text-shadow: 0 1px rgba(255, 255, 255, 0.1); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.1); } - -/************** - * Calculator * - **************/ -PantheonCalculatorMainWindow { - border-radius: 0 0 4px 4px; } - PantheonCalculatorMainWindow .window-frame { - border-radius: 3px; } - -/********* - * Cards * - *********/ -.deck { - background-color: black; } - -.card { - background-color: #131520; - border: none; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 3px 3px rgba(0, 0, 0, 0.2); - transition: all 150ms ease-in-out; } - -.card.collapsed { - background-color: #090b10; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.2); } - -/********* - * Noise * - *********/ -NoiseLibraryWindow { - border-radius: 0 0 4px 4px; } - NoiseLibraryWindow .action-bar { - border-radius: 0 0 4px 4px; } - NoiseLibraryWindow .window-frame { - border-radius: 3px; } - -/******** - * Snap * - ********/ -SnapMainWindow .take-button, -SnapSnapWindow .take-button { - border-radius: 0; } - -/******************* - * Photos/Shotwell * - *******************/ -DirectWindow .the-button-in-the-combobox, -LibraryWindow .the-button-in-the-combobox { - background: none; } - -.checkerboard-layout { - background-color: #0F111A; - background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)); - background-size: 24px 24px; - background-position: 0 0, 12px 12px; } - -.checkboard-layout .item { - background-color: #BFC3C4; } - -/********* -* Avatar * -*********/ -.avatar { - border: 1px solid rgba(0, 0, 0, 0.23); - border-radius: 50%; - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 0 rgba(255, 255, 255, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.23); } - -/**level bars**/ -.sidebar .source-list.view.level-bar, .sidebar iconview.source-list.level-bar, .sidebar .source-list.view.level-bar:selected, .sidebar iconview.source-list.level-bar:selected, .sidebar .source-list.view.level-bar:selected:focus, .sidebar iconview.source-list.level-bar:selected:focus { - background: linear-gradient(to right, #292f47, #292f47); - border: 1px solid rgba(0, 0, 0, 0.14); - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); - border-radius: 2px; } -.sidebar .source-list.view.level-bar.fill-block, .sidebar iconview.source-list.level-bar.fill-block { - border: none; } -.sidebar .source-list.view.fill-block, .sidebar iconview.source-list.fill-block, .sidebar .source-list.view.fill-block:hover, .sidebar iconview.source-list.fill-block:hover, .sidebar .source-list.view.fill-block:selected, .sidebar iconview.source-list.fill-block:selected, .sidebar .source-list.view.fill-block:selected:focus, .sidebar iconview.source-list.fill-block:selected:focus { - background: linear-gradient(to right, #FFCB6B, #FFCB6B); } - -/************************** - * Colors in context menu * -**************************/ -checkbutton.color-button { - border: 1px solid #040407; - border-radius: 100px; - background-clip: border-box; - padding: 0; - margin: 2px 1px; } - checkbutton.color-button > check { - -gtk-icon-source: none; - background: none; - margin-right: 0; - padding: 2px; } - checkbutton.color-button.none > check { - background-color: transparent; - border-radius: 100px; - -gtk-icon-source: -gtk-icontheme("close-symbolic"); } - -radiobutton.color-button > radio { - -gtk-icon-source: none; - margin-right: 0; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 100px; - background-clip: border-box; } -radiobutton.color-button:active > radio { - border: 1px solid rgba(0, 0, 0, 0.35); } - -.color-button check, -.color-button check:checked, -.color-button radio, -.color-button radio:checked { - background-image: none; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 50%; - color: #131520; - -gtk-icon-source: -gtk-icontheme("check-active-symbolic"); } -.color-button.red check, .color-button.red radio, .color-button.strawberry check, .color-button.strawberry radio { - background-color: @STRAWBERRY_300; - -gtk-icon-shadow: 0 1px 1px @STRAWBERRY_500; } -.color-button.orange check, .color-button.orange radio { - background-color: @ORANGE_300; - -gtk-icon-shadow: 0 1px 1px @ORANGE_500; } -.color-button.yellow check, .color-button.yellow radio, .color-button.banana check, .color-button.banana radio { - background-color: @BANANA_500; - -gtk-icon-shadow: 0 1px 1px @BANANA_700; } -.color-button.green check, .color-button.green radio, .color-button.lime check, .color-button.lime radio { - background-color: @LIME_500; - -gtk-icon-shadow: 0 1px 1px @LIME_700; } -.color-button.blue check, .color-button.blue radio, .color-button.blueberry check, .color-button.blueberry radio { - background-color: @BLUEBERRY_500; - -gtk-icon-shadow: 0 1px 1px @BLUEBERRY_700; } -.color-button.purple check, .color-button.purple radio, .color-button.grape check, .color-button.grape radio { - background-color: @GRAPE_500; - -gtk-icon-shadow: 0 1px 1px @GRAPE_700; } -.color-button.brown check, .color-button.brown radio, .color-button.cocoa check, .color-button.cocoa radio { - background-color: @COCOA_300; - -gtk-icon-shadow: 0 1px 1px @COCOA_500; } -.color-button.mint check, .color-button.mint radio { - background-color: @MINT_500; - -gtk-icon-shadow: 0 1px 1px @MINT_700; } -.color-button.pink check, .color-button.pink radio, .color-button.bubblegum check, .color-button.bubblegum radio { - background-color: @BUBBLEGUM_500; - -gtk-icon-shadow: 0 1px 1px @BUBBLEGUM_700; } -.color-button.slate check, .color-button.slate radio { - background-color: @SLATE_300; - -gtk-icon-shadow: 0 1px 1px @SLATE_500; } -.color-button.auto radio { - background-image: url("assets/color-button-auto.png"); - background-position: -1px -1px; - background-repeat: no-repeat; - background-size: calc(100% + 2px); } - -.xfce4-panel.panel { - background-color: #131520; - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(255, 255, 255, 0.8); - border-radius: 0; - border: none; - background-color: rgba(19, 21, 32, 0); } - #tasklist-button:hover { - color: white; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #00A9A5; } - -.xfce4-panel.panel button.flat { - color: white; - border-radius: 0; - border: none; - background-color: rgba(19, 21, 32, 0); } - .xfce4-panel.panel button.flat:hover { - border: none; - background-color: #252a41; } - .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.flat:checked { - color: #fefefe; - border-bottom: 2px solid #00A9A5; - background-color: #1c2031; } - .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.flat:checked image { - color: inherit; } - -#whiskermenu-window button { - background-color: transparent; - border: none; - border-radius: 0; - font-weight: normal; - padding: 3px; - margin: 1px 2px; } - #whiskermenu-window button:hover, #whiskermenu-window button:checked { - background-color: #00A9A5; } - -/******** -* Unity * -*********/ -/* Unity window border color */ -/* Unity window text color */ -/* Backdrop Unity window text color */ -/* Unity panel color #454D50 */ -UnityDecoration { - background-color: #eeeeee; - color: #31363D; } - UnityDecoration .top { - padding: 0 5px 0 5px; - border-radius: 4px 4px 0px 0px; - box-shadow: none; - border: 1px solid #eeeeee; - border-bottom-width: 0; - background-color: #eeeeee; - color: #31363D; - border-top: 1px solid rgba(255, 255, 255, 0.1); } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: #1a1d21; - border-top: 1px solid rgba(255, 255, 255, 0.1); } - UnityDecoration .top .menuitem { - color: #31363D; } - UnityDecoration .top .menuitem:backdrop { - color: #1a1d21; } - -UnityDecoration.left, -UnityDecoration.right { - background-repeat: repeat-x; - background-color: #ececec; - background-size: 1px 120px; - background-clip: border-box; - background-image: linear-gradient(to bottom, #eeeeee, #ececec); } - -UnityDecoration.bottom { - background-size: 1px; - background-repeat: repeat-x; - background-color: #ececec; } - -UnityDecoration.left:backdrop, -UnityDecoration.right:backdrop, -UnityDecoration.bottom:backdrop { - background-size: 1px; - background-repeat: repeat-x; } - -/************** -* Unity Panel * -***************/ -UnityPanelWidget, -.unity-panel { - background-color: #d5d5d5; - color: #31363D; } - -UnityPanelWidget:backdrop, -.unity-panel:backdrop { - color: #1a1d21; } - -.unity-panel.menuitem, -.unity-panel .menuitem { - border-width: 0 1px; - color: #31363D; } - -.unity-panel.menubar, -.unity-panel .menubar { - color: #31363D; } - -.unity-panel.menu.menubar, -.unity-panel .menu .menubar { - background-color: #d5d5d5; - color: #31363D; } - -.unity-panel.menubar:backdrop, -.unity-panel .menubar *:backdrop { - color: #676a6f; } - -.unity-panel.menubar.menuitem, -.unity-panel.menubar .menuitem { - padding: 3px 5px; - border-width: 1px; - border-style: solid; - border: none; - background: none; - color: #31363D; - box-shadow: none; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem:hover { - border-radius: 0; - background-color: #ebebeb; - color: #31363D; - box-shadow: none; } - -.unity-panel.menubar .menuitem *:hover { - color: white; - box-shadow: none; } - -.unity-panel.menubar .menuitem.separator, -.unity-panel.menubar.menuitem.separator { - border: none; - color: #040407; } - -/* Force Quit */ -SheetStyleDialog.unity-force-quit { - background-color: #131520; } - -@keyframes playbackmenuitem_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } -.menu IdoPlaybackMenuItem.menuitem:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: playbackmenuitem_spinner 1s infinite linear; - color: #00A9A5; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid #040407; } - MsdOsdWindow.background.osd .progressbar { - background-color: #00A9A5; - border: none; - border-color: #00A9A5; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: rgba(0, 0, 0, 0.93); - border: none; - border-radius: 5px; } - -/*********************** - * App-Specific Styles * - ***********************/ -/********* - * Geary * - *********/ -.geary-titlebar-left .separator, -.geary-titlebar-right .separator { - opacity: 0; } - -ConversationListView .view:active, ConversationListView iconview:active, ConversationListView .view:selected, ConversationListView iconview:selected { - background-color: #00A9A5; - color: #fefefe; } - ConversationListView .view:active:backdrop, ConversationListView iconview:active:backdrop, ConversationListView .view:selected:backdrop, ConversationListView iconview:selected:backdrop { - background-color: rgba(0, 169, 165, 0.6); - color: rgba(254, 254, 254, 0.5); } -ConversationListView .view .cell, ConversationListView iconview .cell { - border: solid rgba(0, 0, 0, 0.2); - border-width: 0 0 1px 0; } - ConversationListView .view .cell:selected, ConversationListView iconview .cell:selected { - color: #fefefe; - border: 0px solid #007673; } - -/*********** - * LightDm * - ***********/ -#panel_window { - background-color: #131520; - color: white; - font-weight: bold; - box-shadow: inset 0 -1px #06060a; } - #panel_window .menubar, - #panel_window .menubar > .menuitem - menubar, - #panel_window menubar > menuitem { - background-color: transparent; - color: white; - font-weight: bold; } - #panel_window .menubar .menuitem:disabled, - #panel_window menubar menuitem:disabled { - color: rgba(255, 255, 255, 0.5); } - #panel_window .menubar .menuitem:disabled GtkLabel, - #panel_window menubar menuitem:disabled GtkLabel { - color: inherit; } - #panel_window .menubar .menuitem:disabled label, - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window .menubar .menu > .menuitem, - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #BFC3C4; } - -#content_frame { - padding-bottom: 14px; - background-color: #0F111A; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - #content_frame button:hover { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #131520; - text-shadow: none; } - #content_frame button:active, #content_frame button:checked { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background: #00A9A5; - text-shadow: none; } - #content_frame button:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #0a0b11; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; } - -#buttonbox_frame button { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - -#login_window #user_combobox { - color: #BFC3C4; - font-size: 13px; } - #login_window #user_combobox .menu, - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nemo-window .places-treeview .view.cell:hover, .nemo-window .places-treeview iconview.cell:hover, -.nemo-window .places-treeview iconview.cell:hover { - background: rgba(8, 9, 13, 0.7); } -.nemo-window .places-treeview .view.cell:selected, .nemo-window .places-treeview iconview.cell:selected, -.nemo-window .places-treeview iconview.cell:selected { - background: rgba(8, 9, 13, 0.93); } -.nemo-window .sidebar { - color: #98abb2; - background-color: #0d0f17; } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar .iconview, .nemo-window .sidebar row { - background-color: transparent; } -.nemo-window .nemo-window-pane widget.entry { - background-clip: padding-box; - min-height: 28px; - padding: 5px; - color: #BFC3C4; - border: 1px solid #040407; - border-radius: 3px; - box-shadow: inset 0 1px rgba(0, 0, 0, 0.9), inset 1px 0 rgba(0, 0, 0, 0.96), inset -1px 0 rgba(0, 0, 0, 0.96), inset 0 -1px rgba(0, 0, 0, 0.98), 0 1px rgba(255, 255, 255, 0.6); } - .nemo-window .nemo-window-pane widget.entry:selected { - background-color: #00A9A5; - color: #fefefe; } -.nemo-window toolbar.primary-toolbar { - margin-bottom: -1px; - background: #0a0b11; } - .nemo-window toolbar.primary-toolbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - min-height: 24px; - padding: 3px; } - .nemo-window toolbar.primary-toolbar button:hover { - color: #fefefe; - border-radius: 0; - text-shadow: none; - background-image: linear-gradient(to bottom, #131520, #0F111A); } - .nemo-window toolbar.primary-toolbar button:selected, .nemo-window toolbar.primary-toolbar button:active, .nemo-window toolbar.primary-toolbar button:checked { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } - .nemo-window toolbar.primary-toolbar button:selected:backdrop, .nemo-window toolbar.primary-toolbar button:active:backdrop, .nemo-window toolbar.primary-toolbar button:checked:backdrop { - color: rgba(254, 254, 254, 0.5); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; } - .nemo-window toolbar.primary-toolbar button:backdrop, .nemo-window toolbar.primary-toolbar button:disabled, .nemo-window toolbar.primary-toolbar button:backdrop:disabled { - color: rgba(191, 195, 196, 0.2); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; } -.nemo-window .nemo-inactive-pane .view, .nemo-window .nemo-inactive-pane iconview, -.nemo-window .nemo-inactive-pane iconview { - background-color: #0d0f17; } - -/* thunar */ -.thunar toolbar { - background-color: #0a0b11; } - -/* buttons in toolbar */ -.thunar toolbar.horizontal button image { - -gtk-icon-transform: scale(0.72); } - -scrolledwindow.sidebar treeview.view { - background: #0d0f17; - padding: 1.5px; } - -/* path-bar of thunar */ -window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button, -.thunar toolbar .path-bar-button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0; - border-right: 1px solid #040407; - border-left: none; - box-shadow: none; - min-height: 20px; - padding: 3px 4px; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:first-child, - .thunar toolbar .path-bar-button:first-child { - border-left: 1px solid #040407; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:last-child, - .thunar toolbar .path-bar-button:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-right-style: solid; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:only-child, - .thunar toolbar .path-bar-button:only-child { - border-radius: 4px; - border-style: solid; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:hover, - .thunar toolbar .path-bar-button:hover { - color: #00A9A5; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:checked, - .thunar toolbar .path-bar-button:checked { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } -window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .toggle.path-bar-button:hover, -.thunar toolbar .toggle.path-bar-button:hover { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } - -/* thunar sidepane */ -window.thunar paned > scrolledwindow treeview.view { - border-radius: 0; - box-shadow: none; } - window.thunar paned > scrolledwindow treeview.view:hover { - background: rgba(8, 9, 13, 0.7); } - window.thunar paned > scrolledwindow treeview.view:selected { - background: rgba(8, 9, 13, 0.93); } - -.caja-notebook .frame { - border-width: 0 0 1px; } -.caja-notebook .entry { - background: #0F111A; - color: #BFC3C4; - border-color: #040407; } - .caja-notebook .entry:selected { - background: #00A9A5; - color: #fefefe; } - -/************** -* Caja sidebar * -**************/ -.caja-side-pane { - background: #0d0f17; } - .caja-side-pane .frame { - border-width: 1px 0 0; } - .caja-side-pane treeview.view, - .caja-side-pane textview.view text, - .caja-side-pane viewport.frame, - .caja-side-pane widget .vertical { - background: #0d0f17; - padding: 3px 2px; } - .caja-side-pane treeview.view:hover, - .caja-side-pane textview.view text:hover, - .caja-side-pane viewport.frame:hover, - .caja-side-pane widget .vertical:hover { - background-color: rgba(11, 13, 20, 0.95); } - .caja-side-pane treeview.view:selected, - .caja-side-pane textview.view text:selected, - .caja-side-pane viewport.frame:selected, - .caja-side-pane widget .vertical:selected { - color: #98abb2; - background: rgba(8, 9, 13, 0.93); } - .caja-side-pane treeview.view:selected:hover, - .caja-side-pane textview.view text:selected:hover, - .caja-side-pane viewport.frame:selected:hover, - .caja-side-pane widget .vertical:selected:hover { - background: rgba(8, 9, 13, 0.93); - color: #fff; } - -/************** -* Caja pathbar * -**************/ -.caja-navigation-window paned { - background: #131520; } - -.caja-navigation-window .primary-toolbar { - background: #0a0b11; } - .caja-navigation-window .primary-toolbar button, .caja-navigation-window .primary-toolbar button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .caja-navigation-window .primary-toolbar button:hover, .caja-navigation-window .primary-toolbar button:active, .caja-navigation-window .primary-toolbar button:backdrop:active, .caja-navigation-window .primary-toolbar button:backdrop:checked { - background: #00A9A5; - box-shadow: none; } - .caja-navigation-window .primary-toolbar button:hover, .caja-navigation-window .primary-toolbar button:hover label, .caja-navigation-window .primary-toolbar button:active, .caja-navigation-window .primary-toolbar button:active label, .caja-navigation-window .primary-toolbar button:backdrop:active, .caja-navigation-window .primary-toolbar button:backdrop:active label, .caja-navigation-window .primary-toolbar button:backdrop:checked, .caja-navigation-window .primary-toolbar button:backdrop:checked label { - color: #fefefe; } - -.caja-pathbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0px; - border-right: 1px solid #040407; - border-left: none; - box-shadow: none; - min-height: 20px; - padding: 3px 5px; - margin-right: -3px; } - .caja-pathbar button:first-child { - border-left: 1px solid #040407; } - .caja-pathbar button:hover { - color: #00A9A5; } - .caja-pathbar button:checked { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } - -/*# sourceMappingURL=gtk-dark.css.map */ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/gtk.css b/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/gtk.css deleted file mode 100755 index 7583db0..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/gtk.css +++ /dev/null @@ -1,6489 +0,0 @@ -/*$selected_bg_color: #00e8c6;06d6a0*/ -/* GTK NAMED COLORS - ---------------- - use responsibly! */ -/* widget text/foreground color */ -@define-color theme_fg_color #BFC3C4; -/* text color for entries, views and content in general */ -@define-color theme_text_color #BFC3C4; -/* widget base background color */ -@define-color theme_bg_color #0F111A; -/* text widgets and the like base background color */ -@define-color theme_base_color #131520; -/* base background color of selections */ -@define-color theme_selected_bg_color #00A9A5; -/* text/foreground color of selections */ -@define-color theme_selected_fg_color #fefefe; -/* base background color of disabled widgets */ -@define-color insensitive_bg_color #151722; -/* text foreground color of disabled widgets */ -@define-color insensitive_fg_color #676a6f; -/* disabled text widgets and the like base background color */ -@define-color insensitive_base_color #131520; -/* widget text/foreground color on backdrop windows */ -@define-color theme_unfocused_fg_color #676a6f; -/* text color for entries, views and content in general on backdrop windows */ -@define-color theme_unfocused_text_color #BFC3C4; -/* widget base background color on backdrop windows */ -@define-color theme_unfocused_bg_color #0F111A; -/* text widgets and the like base background color on backdrop windows */ -@define-color theme_unfocused_base_color #151724; -/* base background color of selections on backdrop windows */ -@define-color theme_unfocused_selected_bg_color #00A9A5; -/* text/foreground color of selections on backdrop windows */ -@define-color theme_unfocused_selected_fg_color #fefefe; -/* widgets main borders color */ -@define-color borders #040407; -/* widgets main borders color on backdrop windows */ -@define-color unfocused_borders #050509; -/* these are pretty self explicative */ -@define-color warning_color #f4663c; -@define-color error_color #ff3a5b; -@define-color success_color #56ceff; -@define-color fg_color #BFC3C4; -@define-color text_color #BFC3C4; -@define-color bg_color #0F111A; -@define-color base_color #131520; -@define-color selected_bg_color #00A9A5; -@define-color selected_fg_color #fefefe; -@define-color unfocused_fg_color #676a6f; -@define-color unfocused_text_color #BFC3C4; -@define-color unfocused_bg_color #0F111A; -@define-color unfocused_base_color #151724; -@define-color unfocused_selected_bg_color #00A9A5; -@define-color unfocused_selected_fg_color #fefefe; -/* 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 shade(#BFC3C4, 1.8); -@define-color wm_unfocused_title #676a6f; -@define-color wm_highlight rgba(0, 0, 0, 0); -@define-color wm_borders_edge rgba(255, 255, 255, 0.1); -@define-color wm_bg_a shade(#0F111A, 1.2); -@define-color wm_bg_b #0F111A; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_border alpha(black, 0.18); -@define-color wm_button_hover_color_a shade(#0F111A, 1.3); -@define-color wm_button_hover_color_b #0F111A; -@define-color wm_button_active_color_a shade(#0F111A, 0.85); -@define-color wm_button_active_color_b shade(#0F111A, 0.89); -@define-color wm_button_active_color_c shade(#0F111A, 0.9); -@define-color content_view_bg #131520; -@define-color text_view_bg #131520; -@define-color budgie_tasklist_indicator_color #00A9A5; -@define-color budgie_tasklist_indicator_color_active #00A9A5; -@define-color placeholder_text_color #9da1a4; -@define-color STRAWBERRY_100 #ff8c82; -@define-color STRAWBERRY_300 #ed5353; -@define-color STRAWBERRY_500 #c6262e; -@define-color STRAWBERRY_700 #a10705; -@define-color STRAWBERRY_900 #7a0000; -@define-color ORANGE_100 #ffc27d; -@define-color ORANGE_300 #ffa154; -@define-color ORANGE_500 #f37329; -@define-color ORANGE_700 #cc3b02; -@define-color ORANGE_900 #a62100; -@define-color BANANA_100 #fff394; -@define-color BANANA_300 #ffe16b; -@define-color BANANA_500 #f9c440; -@define-color BANANA_700 #d48e15; -@define-color BANANA_900 #ad5f00; -@define-color LIME_100 #d1ff82; -@define-color LIME_300 #9bdb4d; -@define-color LIME_500 #68b723; -@define-color LIME_700 #3a9104; -@define-color LIME_900 #206b00; -@define-color MINT_100 #89ffdd; -@define-color MINT_300 #43d6b5; -@define-color MINT_500 #28bca3; -@define-color MINT_700 #0e9a83; -@define-color MINT_900 #007367; -@define-color BLUEBERRY_100 #8cd5ff; -@define-color BLUEBERRY_300 #64baff; -@define-color BLUEBERRY_500 #3689e6; -@define-color BLUEBERRY_700 #0d52bf; -@define-color BLUEBERRY_900 #002e99; -@define-color BUBBLEGUM_100 #fe9ab8; -@define-color BUBBLEGUM_300 #f4679d; -@define-color BUBBLEGUM_500 #de3e80; -@define-color BUBBLEGUM_700 #bc245d; -@define-color BUBBLEGUM_900 #910e38; -@define-color GRAPE_100 #e4c6fa; -@define-color GRAPE_300 #cd9ef7; -@define-color GRAPE_500 #a56de2; -@define-color GRAPE_700 #7239b3; -@define-color GRAPE_900 #452981; -@define-color COCOA_100 #a3907c; -@define-color COCOA_300 #8a715e; -@define-color COCOA_500 #715344; -@define-color COCOA_700 #57392d; -@define-color COCOA_900 #3d211b; -@define-color SILVER_100 #fafafa; -@define-color SILVER_300 #d4d4d4; -@define-color SILVER_500 #abacae; -@define-color SILVER_700 #7e8087; -@define-color SILVER_900 #555761; -@define-color SLATE_100 #95a3ab; -@define-color SLATE_300 #667885; -@define-color SLATE_500 #485a6c; -@define-color SLATE_700 #273445; -@define-color SLATE_900 #0e141f; -@define-color BLACK_100 #666; -@define-color BLACK_300 #4d4d4d; -@define-color BLACK_500 #333; -@define-color BLACK_700 #1a1a1a; -@define-color BLACK_900 #000; -/***************** -* Drawing mixins * -*****************/ -/********* -* Common * -*********/ -* { - padding: 0; - outline-color: rgba(191, 195, 196, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 0px; - -gtk-secondary-caret-color: #00A9A5; } - -/*********** - * Widgets * - ***********/ -/*************** -* Action bars * -***************/ -.action-bar, actionbar > revealer > box { - background-color: black; - border: solid #040407; - border-width: 1px 0 0 0; - color: #BFC3C4; - box-shadow: none; } - .action-bar:backdrop, actionbar > revealer > box:backdrop { - background-color: black; - box-shadow: none; } - .action-bar:first-child, actionbar > revealer > box:first-child { - border-radius: 6px 6px 0px 0px; - border-width: 1px 1px 0px 1px; } - .action-bar:last-child, actionbar > revealer > box:last-child { - border-radius: 0 0 6px 6px; - border-width: 0px 1px 1px 1px; } - -/********************* - * App Notifications * - *********************/ -.app-notification, -.app-notification.frame { - padding: 10px; - border-radius: 0 0 5px 5px; - background-color: rgba(8, 9, 13, 0.93); - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 2px); - background-clip: padding-box; } - .app-notification:backdrop, - .app-notification.frame:backdrop { - background-image: none; - transition: 200ms ease-out; } - .app-notification border, - .app-notification.frame border { - border: none; } - -/*************** - * Base States * - ***************/ -.background { - color: #BFC3C4; - background-color: #0F111A; } - .background:backdrop { - color: #676a6f; - background-color: #0F111A; - text-shadow: none; - -gtk-icon-shadow: none; } - -/* - 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. -*/ -.gtkstyle-fallback { - color: #BFC3C4; - background-color: #0F111A; } - .gtkstyle-fallback:hover { - color: #BFC3C4; - background-color: #22263a; } - .gtkstyle-fallback:active { - color: #BFC3C4; - background-color: black; } - .gtkstyle-fallback:disabled { - color: #676a6f; - background-color: #151722; } - .gtkstyle-fallback:selected { - color: #fefefe; - background-color: #00A9A5; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #BFC3C4; - background-color: #131520; } - .view:backdrop, iconview:backdrop, - .view text:backdrop, - iconview text:backdrop, - textview text:backdrop { - color: #9da1a4; - background-color: #151724; } - .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected { - border-radius: 3px; } - -textview border { - background-color: #11131d; } - -.rubberband, -rubberband, -flowbox rubberband, -.content-view rubberband, -columnview.view > rubberband, -treeview.view > rubberband { - border: 1px solid #007673; - background-color: rgba(0, 118, 115, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 3px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label { - caret-color: currentColor; } - label.separator { - color: #BFC3C4; } - label.separator:backdrop { - color: #676a6f; } - label selection { - background-color: #00A9A5; - color: #fefefe; } - label:disabled { - color: #676a6f; } - label:disabled:backdrop { - color: #2b314b; } - label:backdrop { - color: #676a6f; } - -.dim-label, label.separator, .titlebar .subtitle, -headerbar .subtitle { - opacity: 0.55; - text-shadow: none; } - -assistant .sidebar { - background-color: #131520; - border-top: 1px solid #040407; } - assistant .sidebar:backdrop { - background-color: #151724; - border-color: #050509; } -assistant.csd .sidebar { - border-top-style: none; } -assistant .sidebar label { - padding: 6px 12px; } -assistant .sidebar label.highlight { - background-color: #32353c; } - -.app-notification, -.app-notification.frame, .osd .scale-popup, .osd popover.background > arrow, -.osd popover.background > contents, popover.background.touch-selection > arrow, -popover.background.touch-selection > contents, popover.background.magnifier > arrow, -popover.background.magnifier > contents, .osd { - color: #BFC3C4; - border: none; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - outline-color: rgba(191, 195, 196, 0.3); - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .app-notification:backdrop, .osd .scale-popup:backdrop, .osd popover.background > arrow:backdrop, - .osd popover.background > contents:backdrop, popover.background.touch-selection > arrow:backdrop, - popover.background.touch-selection > contents:backdrop, popover.background.magnifier > arrow:backdrop, - popover.background.magnifier > contents:backdrop, .osd:backdrop { - text-shadow: none; - -gtk-icon-shadow: none; } - -*:selected { - background: #00A9A5; - color: #fefefe; } - -/*********** - * Buttons * - ***********/ -@keyframes needs_attention { - from { - background-image: radial-gradient(farthest-side, #00f6f0 0%, rgba(0, 246, 240, 0) 0%); } - to { - background-image: radial-gradient(farthest-side, #00f6f0 95%, rgba(0, 246, 240, 0)); } } -notebook > header > tabs > arrow, -button { - min-height: 20px; - min-width: 16px; - padding: 2px 6px; - border: 1px solid #040407; - border-radius: 4px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - notebook > header > tabs > arrow, - button.flat { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - transition: none; } - notebook > header > tabs > arrow:hover, - button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 500ms; - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:hover:active, - button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - notebook > header > tabs > arrow:hover, - button:hover { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; - -gtk-icon-filter: brightness(1.2); } - notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, - button:active, - button:checked { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background: #00908c; - text-shadow: none; - transition-duration: 50ms; } - notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:backdrop, - button:backdrop.flat, - button:backdrop { - color: #9da1a4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #151724; - text-shadow: none; - transition: 200ms ease-out; - -gtk-icon-filter: none; } - notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, - button:backdrop.flat:active, - button:backdrop.flat:checked, - button:backdrop:active, - button:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, notebook > header > tabs > arrow:backdrop:active label, notebook > header > tabs > arrow:backdrop:checked label, - button:backdrop.flat:active label, - button:backdrop.flat:checked label, - button:backdrop:active label, - button:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - notebook > header > tabs > arrow:backdrop:disabled, notebook > header > tabs > arrow:backdrop:disabled, - button:backdrop.flat:disabled, - button:backdrop:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, - button:backdrop.flat:disabled:active, - button:backdrop.flat:disabled:checked, - button:backdrop:disabled:active, - button:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:backdrop, notebook > header > tabs > arrow:disabled, notebook > header > tabs > arrow:backdrop:disabled, - button.flat:backdrop, - button.flat:disabled, - button.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - notebook > header > tabs > arrow:disabled, - button:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - notebook > header > tabs > arrow:disabled:active, notebook > header > tabs > arrow:disabled:checked, - button:disabled:active, - button:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(191, 195, 196, 0.3); - background-color: #00A9A5; - text-shadow: none; } - notebook > header > tabs > arrow:disabled:active label, notebook > header > tabs > arrow:disabled:checked label, - button:disabled:active label, - button:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - notebook > header > tabs > arrow.image-button, - button.image-button { - min-width: 24px; - padding-left: 4px; - padding-right: 4px; } - notebook > header > tabs > arrow.image-button.circular, notebook > header > tabs > arrow.image-button.sidebar-button, - button.image-button.circular, - button.image-button.sidebar-button { - padding: 6px 4px; - border-radius: 50px; - box-shadow: none; } - notebook > header > tabs > arrow.text-button, - button.text-button { - padding-left: 16px; - padding-right: 16px; } - notebook > header > tabs > arrow.text-button.image-button, - button.text-button.image-button { - padding-left: 8px; - padding-right: 8px; - border-radius: 2px; } - notebook > header > tabs > arrow.text-button.image-button label, - button.text-button.image-button label { - padding-left: 8px; - padding-right: 8px; } - combobox:drop(active) button.combo, notebook > header > tabs > arrow:drop(active), - button:drop(active) { - color: #00A9A5; - border-color: #00A9A5; - box-shadow: inset 0 0 0 1px #00A9A5; } -row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled) { - color: #fefefe; - border-color: transparent; } - row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop { - color: #676a6f; } -button.osd { - min-width: 24px; - min-height: 20px; - color: #BFC3C4; - border-radius: 5px; - outline-color: rgba(191, 195, 196, 0.3); - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd.image-button { - min-width: 32px; } - button.osd:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd:active, - button.osd:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); - border: none; - box-shadow: none; } - button.osd:disabled:backdrop, - button.osd:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - border: none; } - button.osd:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - border: none; } -.app-notification button, -.app-notification.frame button, popover.background.touch-selection button, popover.background.magnifier button, -.osd button { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, - .osd button:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:active:backdrop, popover.background.touch-selection button:active:backdrop, popover.background.magnifier button:active:backdrop, .app-notification button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .app-notification button:checked:backdrop, popover.background.touch-selection button:checked:backdrop, popover.background.magnifier button:checked:backdrop, .app-notification button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, - .osd button:active:backdrop, - .osd button:active, - .osd button:checked:backdrop, - .osd button:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button:disabled:backdrop, popover.background.touch-selection button:disabled:backdrop, popover.background.magnifier button:disabled:backdrop, .app-notification button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, - .osd button:disabled:backdrop, - .osd button:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button:backdrop, popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop, - .osd button:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button.flat, popover.background.touch-selection button.flat, popover.background.magnifier button.flat, - .osd button.flat { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - box-shadow: none; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .app-notification button.flat:hover, popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover, - .osd button.flat:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .app-notification button.flat:disabled, popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled, - .osd button.flat:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - background-image: none; - border-color: transparent; - box-shadow: none; } - .app-notification button.flat:backdrop, popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop, - .osd button.flat:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .app-notification button.flat:active, popover.background.touch-selection button.flat:active, popover.background.magnifier button.flat:active, .app-notification button.flat:checked, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked, - .osd button.flat:active, - .osd button.flat:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } -button.suggested-action { - border: none; - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .selection-mode windowcontrols button, button.suggested-action.flat { - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - button.suggested-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:active, button.suggested-action:checked { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #F78C6C; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop, button.suggested-action:backdrop, button.suggested-action.flat:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop label, button.suggested-action:backdrop label, button.suggested-action.flat:backdrop label { - color: rgba(255, 255, 255, 0.5); } - .selection-mode windowcontrols button:backdrop:active, .selection-mode windowcontrols button:backdrop:checked, button.suggested-action:backdrop:active, button.suggested-action:backdrop:checked, button.suggested-action.flat:backdrop:active, button.suggested-action.flat:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop:active label, .selection-mode windowcontrols button:backdrop:checked label, button.suggested-action:backdrop:active label, button.suggested-action:backdrop:checked label, button.suggested-action.flat:backdrop:active label, button.suggested-action.flat:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - .selection-mode windowcontrols button:backdrop:disabled, button.suggested-action:backdrop:disabled, button.suggested-action.flat:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop:disabled label, button.suggested-action:backdrop:disabled label, button.suggested-action.flat:backdrop:disabled label { - color: rgba(255, 255, 255, 0.5); } - .selection-mode windowcontrols button:backdrop:disabled:active, .selection-mode windowcontrols button:backdrop:disabled:checked, button.suggested-action:backdrop:disabled:active, button.suggested-action:backdrop:disabled:checked, button.suggested-action.flat:backdrop:disabled:active, button.suggested-action.flat:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - .selection-mode windowcontrols button:backdrop, .selection-mode windowcontrols button:disabled, .selection-mode windowcontrols button:backdrop:disabled, button.suggested-action.flat:backdrop, button.suggested-action.flat:disabled, button.suggested-action.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(247, 140, 108, 0.8); } - button.suggested-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:disabled:active, button.suggested-action:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - button.suggested-action:disabled:active label, button.suggested-action:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - .osd button.suggested-action { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(247, 140, 108, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(247, 140, 108, 0.7), rgba(247, 140, 108, 0.7)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:active:backdrop, .osd button.suggested-action:active, .osd button.suggested-action:checked:backdrop, .osd button.suggested-action:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, #F78C6C, #F78C6C); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.suggested-action:disabled:backdrop, .osd button.suggested-action:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd button.suggested-action:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(247, 140, 108, 0.5), rgba(247, 140, 108, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -button.destructive-action { - border: none; - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #FF5370, #FF5370); } - button.destructive-action.flat { - box-shadow: none; - color: white; - border-radius: 4px; - background: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - button.destructive-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:active, button.destructive-action:checked { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop, button.destructive-action.flat:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop label, button.destructive-action.flat:backdrop label { - color: rgba(255, 255, 255, 0.5); } - button.destructive-action:backdrop:active, button.destructive-action:backdrop:checked, button.destructive-action.flat:backdrop:active, button.destructive-action.flat:backdrop:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - button.destructive-action:backdrop:active label, button.destructive-action:backdrop:checked label, button.destructive-action.flat:backdrop:active label, button.destructive-action.flat:backdrop:checked label { - color: rgba(254, 254, 254, 0.7); } - button.destructive-action:backdrop:disabled, button.destructive-action.flat:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:backdrop:disabled label, button.destructive-action.flat:backdrop:disabled label { - color: rgba(255, 255, 255, 0.5); } - button.destructive-action:backdrop:disabled:active, button.destructive-action:backdrop:disabled:checked, button.destructive-action.flat:backdrop:disabled:active, button.destructive-action.flat:backdrop:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #00A9A5; - text-shadow: none; } - button.destructive-action.flat:backdrop, button.destructive-action.flat:disabled, button.destructive-action.flat:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(255, 32, 70, 0.8); } - button.destructive-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:disabled:active, button.destructive-action:disabled:checked { - color: rgba(254, 254, 254, 0.7); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - button.destructive-action:disabled:active label, button.destructive-action:disabled:checked label { - color: rgba(254, 254, 254, 0.7); } - .osd button.destructive-action { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(255, 32, 70, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(255, 32, 70, 0.7), rgba(255, 32, 70, 0.7)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:active:backdrop, .osd button.destructive-action:active, .osd button.destructive-action:checked:backdrop, .osd button.destructive-action:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, #ff2046, #ff2046); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd button.destructive-action:disabled:backdrop, .osd button.destructive-action:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd button.destructive-action:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(255, 32, 70, 0.5), rgba(255, 32, 70, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -.stack-switcher > button { - outline-offset: -3px; } - .stack-switcher > button > label { - padding-left: 6px; - padding-right: 6px; } - .stack-switcher > button > image { - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - padding-bottom: 3px; } - .stack-switcher > button.text-button { - padding-left: 10px; - padding-right: 10px; } - .stack-switcher > button.image-button { - padding-left: 2px; - padding-right: 2px; } - .stack-switcher > button.needs-attention:active > label, - .stack-switcher > button.needs-attention:active > image, .stack-switcher > button.needs-attention:checked > label, - .stack-switcher > button.needs-attention:checked > image { - animation: none; - background-image: none; } -.inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } -.primary-toolbar button, .primary-toolbar .raised button { - -gtk-icon-shadow: none; } - .primary-toolbar button:hover, .primary-toolbar button:focus, .primary-toolbar .raised button:hover, .primary-toolbar .raised button:focus { - color: #fefefe; - outline-color: rgba(254, 254, 254, 0.3); - background-color: #00A9A5; - text-shadow: none; } - -.stack-switcher > button.needs-attention > label, -.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: radial-gradient(farthest-side, #00f6f0 96%, rgba(0, 246, 240, 0)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > button.needs-attention > label:backdrop, - .stack-switcher > button.needs-attention > image:backdrop, stacksidebar row.needs-attention > label:backdrop { - background-size: 6px 6px, 0 0; } - .stack-switcher > button.needs-attention > label:dir(rtl), - .stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 2px; } - -toolbar button:hover { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } -toolbar button:active { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - -.inline-toolbar toolbutton > button { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .inline-toolbar toolbutton > button:hover { - color: #fefefe; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #f1f1f1; } - .inline-toolbar toolbutton > button:disabled { - color: #9da1a4; } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(241, 241, 241, 0.3); } - .inline-toolbar toolbutton > button:backdrop { - color: #9da1a4; } - .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked { - color: #f1f1f1; } - .inline-toolbar toolbutton > button:backdrop:disabled { - color: #9da1a4; } - .inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked { - color: rgba(241, 241, 241, 0.3); } - -toolbar.inline-toolbar toolbutton > button.flat:backdrop, -toolbar.inline-toolbar toolbutton:backdrop > button.flat:backdrop { - border-color: transparent; - box-shadow: none; } - -.inline-toolbar button, .inline-toolbar button:backdrop, .linked > button, .linked > button:hover, .linked > button:active, .linked > button:checked, .linked > button:backdrop, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > -entry, .linked > combobox > box > button.combo:dir(ltr), .linked > combobox > box > button.combo:dir(rtl) { - border: 1px solid #040407; - border-radius: 0; - border-right-style: none; - box-shadow: none; } - .inline-toolbar button:disabled, .linked > button:disabled, .linked:not(.vertical) > spinbutton:disabled:not(.vertical), .linked:not(.vertical) > - entry:disabled, .linked > combobox > box > button.combo:disabled:dir(ltr), .linked > combobox > box > button.combo:disabled:dir(rtl) { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; - color: #676a6f; } - -.inline-toolbar button:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > -entry:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } -.inline-toolbar button:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > -entry:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } -.inline-toolbar button:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > -entry:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > button, .linked.vertical > button:hover, .linked.vertical > button:active, .linked.vertical > button:checked, .linked.vertical > button:backdrop, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > -entry, .linked.vertical > combobox > box > button.combo { - border-style: solid solid none solid; - border-radius: 0; } - -.linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > -entry:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } -.linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > -entry:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-style: solid; } -.linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > -entry:only-child { - border-radius: 3px; - border-style: solid; } - -modelbutton.flat, -.menuitem.button.flat, modelbutton.flat:backdrop, modelbutton.flat:backdrop:hover, -.menuitem.button.flat:backdrop, -.menuitem.button.flat:backdrop:hover, calendar.button, calendar.button:hover, calendar.button:backdrop, calendar.button:disabled, button:link, -button:visited, button:link:hover, button:link:active, button:link:checked, -button:visited:hover, -button:visited:active, -button:visited:checked, .scale-popup button:hover, .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - -/* menu buttons */ -modelbutton.flat, -.menuitem.button.flat { - min-height: 26px; - padding-left: 5px; - padding-right: 5px; - border-radius: 3px; - outline-offset: -2px; } - modelbutton.flat:hover, - .menuitem.button.flat:hover { - background-color: #1e2234; } - modelbutton.flat check:last-child, - modelbutton.flat radio:last-child, - .menuitem.button.flat check:last-child, - .menuitem.button.flat radio:last-child { - margin-left: 8px; } - modelbutton.flat check:first-child, - modelbutton.flat radio:first-child, - .menuitem.button.flat check:first-child, - .menuitem.button.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow { - background: none; } - modelbutton.flat arrow:hover { - background: none; } - 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 { - padding: 4px; } - button.color colorswatch:only-child, button.color colorswatch:only-child overlay { - border-radius: 0; } - -notebook button, list button, .view button, iconview button, popover button { - box-shadow: none; } - notebook button:backdrop, list button:backdrop, .view button:backdrop, iconview button:backdrop, popover button:backdrop { - box-shadow: none; } -notebook .linked > button, list .linked > button, .view .linked > button, iconview .linked > button, popover .linked > button { - box-shadow: none; } - -/************ - * Calendar * - ***********/ -calendar { - color: #BFC3C4; - border: 1px solid #040407; } - calendar:selected { - border-radius: 3px; } - calendar.header { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0; } - calendar.header:backdrop { - border-color: rgba(0, 0, 0, 0.1); } - calendar.button { - color: rgba(191, 195, 196, 0.45); } - calendar.button:hover { - color: #BFC3C4; } - calendar.button:backdrop { - color: rgba(103, 106, 111, 0.45); } - calendar.button:disabled { - color: rgba(103, 106, 111, 0.45); } - calendar:indeterminate, calendar:indeterminate:backdrop { - color: alpha(currentColor,0.55); } - calendar.highlight, calendar.highlight:backdrop { - font-size: smaller; - color: #BFC3C4; } - calendar:backdrop { - color: #9da1a4; - border-color: #050509; } - -/************************* - * Check and Radio Items * - *************************/ -check { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-dark.png"), url("../assets/radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-hover-dark.png"), url("../assets/checkbox-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -radio:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-hover-dark.png"), url("../assets/radio-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -check:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-active-dark.png"), url("../assets/checkbox-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -radio:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-active-dark.png"), url("../assets/radio-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -check:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-backdrop-dark.png"), url("../assets/checkbox-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -radio:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-backdrop-dark.png"), url("../assets/radio-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -check:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-insensitive-dark.png"), url("../assets/checkbox-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive-dark.png"), url("../assets/radio-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:checked { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-dark.png"), url("../assets/radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-hover-dark.png"), url("../assets/checkbox-checked-hover@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-hover-dark.png"), url("../assets/radio-checked-hover@2.png")); - -gtk-icon-shadow: none; } - -check:checked:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-active-dark.png"), url("../assets/checkbox-checked-active@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active-dark.png"), url("../assets/radio-checked-active@2.png")); - -gtk-icon-shadow: none; } - -check:checked:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-backdrop-dark.png"), url("../assets/checkbox-checked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-backdrop-dark.png"), url("../assets/radio-checked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-insensitive-dark.png"), url("../assets/checkbox-checked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive-dark.png"), url("../assets/radio-checked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed.png"), url("../assets/checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed.png"), url("../assets/radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-hover.png"), url("../assets/checkbox-mixed-hover@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-hover.png"), url("../assets/radio-mixed-hover@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:active { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-active.png"), url("../assets/checkbox-mixed-active@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:active { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-backdrop.png"), url("../assets/checkbox-mixed-backdrop@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-backdrop.png"), url("../assets/radio-mixed-backdrop@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-mixed-insensitive.png"), url("../assets/checkbox-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); - -gtk-icon-shadow: none; } - -check:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-unchecked-dark.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -radio:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-unchecked-dark.png"), url("../assets/selected-radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:checked:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/checkbox-checked-dark.png"), url("../assets/checkbox-checked@2.png")); - -gtk-icon-shadow: none; } - -radio:checked:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-checked-dark.png"), url("../assets/selected-radio-checked@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:hover:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:active:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -check:indeterminate:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-checkbox-mixed.png"), url("../assets/selected-checkbox-mixed@2.png")); - -gtk-icon-shadow: none; } - -radio:indeterminate:disabled:backdrop:selected { - -gtk-icon-source: -gtk-scaled(url("../assets/selected-radio-mixed.png"), url("../assets/selected-radio-mixed@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check, iconview.content-view check, -.view.content-view.check, -iconview.content-view.check { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked.png"), url("../assets/checkbox-unchecked@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio, iconview.content-view radio, -.view.content-view.radio, -iconview.content-view.radio { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked.png"), url("../assets/radio-unchecked@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:hover, iconview.content-view check:hover, -.view.content-view.check:hover, -iconview.content-view.check:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-hover.png"), url("../assets/checkbox-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:hover, iconview.content-view radio:hover, -.view.content-view.radio:hover, -iconview.content-view.radio:hover { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-hover.png"), url("../assets/radio-unchecked-hover@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:active, iconview.content-view check:active, -.view.content-view.check:active, -iconview.content-view.check:active { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-active.png"), url("../assets/checkbox-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:active, iconview.content-view radio:active, -.view.content-view.radio:active, -iconview.content-view.radio:active { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-active.png"), url("../assets/radio-unchecked-active@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:backdrop, iconview.content-view check:backdrop, -.view.content-view.check:backdrop, -iconview.content-view.check:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop.png"), url("../assets/checkbox-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:backdrop, iconview.content-view radio:backdrop, -.view.content-view.radio:backdrop, -iconview.content-view.radio:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop.png"), url("../assets/radio-unchecked-backdrop@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:disabled, iconview.content-view check:disabled, -.view.content-view.check:disabled, -iconview.content-view.check:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-insensitive.png"), url("../assets/checkbox-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:disabled, iconview.content-view radio:disabled, -.view.content-view.radio:disabled, -iconview.content-view.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-insensitive.png"), url("../assets/radio-unchecked-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view check:disabled:backdrop, iconview.content-view check:disabled:backdrop, -.view.content-view.check:disabled:backdrop, -iconview.content-view.check:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-checkbox-unchecked-backdrop-insensitive.png"), url("../assets/checkbox-unchecked-backdrop-insensitive@2.png")); - -gtk-icon-shadow: none; } - -.view.content-view radio:disabled:backdrop, iconview.content-view radio:disabled:backdrop, -.view.content-view.radio:disabled:backdrop, -iconview.content-view.radio:disabled:backdrop { - -gtk-icon-source: -gtk-scaled(url("../assets/selection-mode-radio-unchecked-backdrop-insensitive.png"), url("../assets/radio-unchecked-backdrop-insensitive@2.png")); - -gtk-icon-shadow: none; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child { - margin-left: 4px; } - checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - margin: 0 4px; - min-height: 16px; - min-width: 16px; - border: none; } - menu menuitem check, menu menuitem - radio { - margin: 0; } - menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem - radio, menu menuitem - radio:hover, menu menuitem - radio:disabled { - min-height: 14px; - min-width: 14px; - background-image: none; - background-color: transparent; - box-shadow: none; - -gtk-icon-shadow: none; - color: inherit; - border-color: currentColor; - animation: none; } - -/***************** - * Color Chooser * - *****************/ -colorswatch, colorswatch:drop(active) { - border-style: none; } -colorswatch.top { - border-top-left-radius: 5.5px; - border-top-right-radius: 5.5px; } - colorswatch.top overlay { - border-top-left-radius: 5px; - border-top-right-radius: 5px; } -colorswatch.bottom { - border-bottom-left-radius: 5.5px; - border-bottom-right-radius: 5.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 5.5px; - border-bottom-left-radius: 5.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 5px; - border-bottom-left-radius: 5px; } -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 5.5px; - border-bottom-right-radius: 5.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 5px; - border-bottom-right-radius: 5px; } -colorswatch.dark overlay { - color: #fefefe; } - colorswatch.dark overlay:hover { - border-color: #040407; } - colorswatch.dark overlay:backdrop { - color: rgba(254, 254, 254, 0.5); } -colorswatch.light overlay { - color: #BFC3C4; } - colorswatch.light overlay:hover { - border-color: #040407; } - colorswatch.light overlay:backdrop { - color: #9da1a4; } -colorswatch:drop(active) { - box-shadow: none; } - colorswatch:drop(active).light overlay { - border-color: #00A9A5; - box-shadow: inset 0 0 0 2px #040407, inset 0 0 0 1px #00A9A5; } - colorswatch:drop(active).dark overlay { - border-color: #00A9A5; - box-shadow: inset 0 0 0 2px #040407, inset 0 0 0 1px #00A9A5; } -colorswatch overlay { - box-shadow: inset 0 3px 2px -2px rgba(0, 0, 0, 0.5); - border: 1px solid #040407; } - colorswatch overlay:hover { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.3); } - colorswatch overlay:backdrop, colorswatch overlay:backdrop:hover { - border-color: #040407; - box-shadow: none; } -colorswatch#add-color-button { - border-radius: 5px 5px 0 0; } - colorswatch#add-color-button:only-child { - border-radius: 5px; } - colorswatch#add-color-button overlay { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - colorswatch#add-color-button overlay:hover { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #131520; - text-shadow: none; } - colorswatch#add-color-button overlay:backdrop { - color: #9da1a4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #151724; - text-shadow: none; } -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } -row:selected colorswatch { - box-shadow: 0 0 0 2px #fefefe; } -colorswatch#editor-color-sample { - border-radius: 4px; } - colorswatch#editor-color-sample overlay { - border-radius: 4.5px; } - -colorchooser .popover.osd { - border-radius: 5px; } - -/************** - * ComboBoxes * - **************/ -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } -combobox:drop(active) { - box-shadow: none; } - -/*********** - * Dialogs * - ***********/ -messagedialog .titlebar:not(headerbar) { - background-color: rgba(15, 17, 26, 0.95); } -messagedialog .titlebar { - min-height: 20px; - background-image: none; - background-color: rgba(15, 17, 26, 0.95); - border-style: none; - border-top-left-radius: 4px; - border-top-right-radius: 4px; } -messagedialog.csd.background { - background-color: rgba(15, 17, 26, 0.95); - color: #BFC3C4; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } -messagedialog.csd .dialog-action-area button { - padding: 10px 14px; - border-radius: 0; - border-left-style: solid; - border-right-style: none; - border-bottom-style: none; - background-color: transparent; - color: #BFC3C4; - box-shadow: none; } - messagedialog.csd .dialog-action-area button:hover { - background-color: rgba(0, 169, 165, 0.9); - color: white; } - messagedialog.csd .dialog-action-area button:first-child { - border-left-style: none; - border-bottom-left-radius: 4px; } - messagedialog.csd .dialog-action-area button:last-child { - border-bottom-right-radius: 4px; } - messagedialog.csd .dialog-action-area button.destructive-action, messagedialog.csd .dialog-action-area button.suggested-action { - color: white; } - -filechooser .dialog-action-box { - border-top: 1px solid #040407; } - filechooser .dialog-action-box:backdrop { - border-top-color: #050509; } -filechooser #pathbarbox { - border-bottom: 1px solid #0F111A; } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -/**************** - * Text Entries * - ****************/ -spinbutton:not(.vertical), entry { - min-height: 28px; - padding-left: 8px; - padding-right: 8px; - border: 1px solid; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; } - spinbutton:not(.vertical) image.left, - entry image.left { - padding-left: 0; - padding-right: 6px; } - spinbutton:not(.vertical) image.right, - entry image.right { - padding-left: 6px; - padding-right: 0; } - spinbutton:not(.vertical) undershoot.left, - entry undershoot.left { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-left: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: left center; - border: none; - box-shadow: none; } - spinbutton:not(.vertical) undershoot.right, - entry undershoot.right { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-right: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: right center; - border: none; - box-shadow: none; } - spinbutton.flat:focus-within:not(.vertical), spinbutton.flat:not(.vertical), - entry.flat:focus-within, - entry.flat { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - box-shadow: none; - border-radius: 0; } - spinbutton:focus-within:not(.vertical), - entry:focus-within { - border-color: #007673; } - spinbutton:disabled:not(.vertical), - entry:disabled { - color: #676a6f; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - box-shadow: none; } - spinbutton:backdrop:not(.vertical), - entry:backdrop { - color: #9da1a4; - border-color: #050509; - background-color: #151724; - box-shadow: none; - transition: 200ms ease-out; } - spinbutton:backdrop:disabled:not(.vertical), - entry:backdrop:disabled { - color: #2b314b; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - box-shadow: none; } - spinbutton.error:not(.vertical), - entry.error { - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; - color: #ff3a5b; - border-color: #860017; } - spinbutton.error:focus-within:not(.vertical), - entry.error:focus-within { - border-color: #860017; } - spinbutton.error:selected:focus:not(.vertical), spinbutton.error:selected:not(.vertical), - entry.error:selected:focus, - entry.error:selected { - background-color: #ff3a5b; } - spinbutton.warning:not(.vertical), - entry.warning { - color: #BFC3C4; - border-color: #040407; - background-color: #1a1e2d; - color: #f4663c; - border-color: #772006; } - spinbutton.warning:focus-within:not(.vertical), - entry.warning:focus-within { - border-color: #772006; } - spinbutton.warning:selected:focus:not(.vertical), spinbutton.warning:selected:not(.vertical), - entry.warning:selected:focus, - entry.warning:selected { - background-color: #f4663c; } - spinbutton:not(.vertical) image, - entry image { - color: #9da0a3; } - spinbutton:not(.vertical) image:hover, - entry image:hover { - color: #BFC3C4; } - spinbutton:not(.vertical) image:active, - entry image:active { - color: #00A9A5; } - spinbutton:not(.vertical) image:backdrop, - entry image:backdrop { - color: #575960; } - spinbutton:drop(active):focus-within:not(.vertical), spinbutton:drop(active):not(.vertical), - entry:drop(active):focus-within, - entry:drop(active) { - border-color: #00A9A5; - box-shadow: inset 0 0 0 1px #00A9A5; } - .osd spinbutton:not(.vertical), - .osd entry { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(4, 4, 7, 0.5); - box-shadow: none; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:focus-within:not(.vertical), - .osd entry:focus-within { - color: #BFC3C4; - border-color: #00A9A5; - background-color: rgba(4, 4, 7, 0.5); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:backdrop:not(.vertical), - .osd entry:backdrop { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(4, 4, 7, 0.5); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd spinbutton:disabled:not(.vertical), - .osd entry:disabled { - color: #646669; - border-color: #040407; - background-color: rgba(26, 28, 31, 0.5); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -spinbutton:not(.vertical) progress, -entry progress { - margin: 2px -6px; - background-color: transparent; - background-image: none; - border-radius: 0; - border-width: 0 0 2px; - border-color: #00A9A5; - border-style: solid; - box-shadow: none; } - spinbutton:not(.vertical) progress:backdrop, - entry progress:backdrop { - background-color: transparent; } -.linked:not(.vertical) > spinbutton:focus-within:not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:focus-within:not(.vertical) + button, .linked:not(.vertical) > spinbutton:focus-within:not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > -entry:focus-within + spinbutton:not(.vertical), .linked:not(.vertical) > -entry:focus-within + button, .linked:not(.vertical) > -entry:focus-within + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus-within:not(.vertical) + -entry, .linked:not(.vertical) > -entry:focus-within + -entry { - border-left-color: #007673; } -.linked:not(.vertical) > spinbutton:focus-within:not(.vertical), .linked:not(.vertical) > -entry:focus-within { - border-color: #007673; } -.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + button, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > -entry:drop(active) + spinbutton:not(.vertical), .linked:not(.vertical) > -entry:drop(active) + button, .linked:not(.vertical) > -entry:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + -entry, .linked:not(.vertical) > -entry:drop(active) + -entry { - border-left-color: #00A9A5; } -.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled), .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):not(.vertical), .linked.vertical > -entry:not(:disabled) + entry:not(:disabled), .linked.vertical > -entry:not(:disabled) + spinbutton:not(:disabled):not(.vertical) { - border-top-color: #0f1019; - background-image: linear-gradient(to bottom, #131520, #131520); } - .linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled):backdrop, .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):backdrop:not(.vertical), .linked.vertical > - entry:not(:disabled) + entry:not(:disabled):backdrop, .linked.vertical > - entry:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical) { - border-top-color: #10121c; - background-image: linear-gradient(to bottom, #151724, #151724); } -.linked.vertical > spinbutton:disabled:not(.vertical) + spinbutton:disabled:not(.vertical), .linked.vertical > spinbutton:disabled:not(.vertical) + entry:disabled, .linked.vertical > -entry:disabled + spinbutton:disabled:not(.vertical), .linked.vertical > -entry:disabled + entry:disabled { - border-top-color: #0f1019; } -.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus:not(:only-child):not(.vertical), -.linked.vertical > spinbutton:not(.vertical) + entry:focus:not(:only-child), .linked.vertical > -entry + spinbutton:focus:not(:only-child):not(.vertical), -.linked.vertical > -entry + entry:focus:not(:only-child) { - border-top-color: #007673; } -.linked.vertical > spinbutton:not(.vertical) + spinbutton:drop(active):not(:only-child):not(.vertical), -.linked.vertical > spinbutton:not(.vertical) + entry:drop(active):not(:only-child), .linked.vertical > -entry + spinbutton:drop(active):not(:only-child):not(.vertical), -.linked.vertical > -entry + entry:drop(active):not(:only-child) { - border-top-color: #00A9A5; } -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + spinbutton:not(.vertical), -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + entry, -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + button, -.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > -entry:focus:not(:only-child) + spinbutton:not(.vertical), -.linked.vertical > -entry:focus:not(:only-child) + entry, -.linked.vertical > -entry:focus:not(:only-child) + button, -.linked.vertical > -entry:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #007673; } -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + spinbutton:not(.vertical), -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + entry, -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + button, -.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > -entry:drop(active):not(:only-child) + spinbutton:not(.vertical), -.linked.vertical > -entry:drop(active):not(:only-child) + entry, -.linked.vertical > -entry:drop(active):not(:only-child) + button, -.linked.vertical > -entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-top-color: #00A9A5; } - -treeview entry:focus-within:dir(rtl), treeview entry:focus-within:dir(ltr) { - background-color: #131520; - transition-property: color, background; } -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #131520; } - treeview entry.flat:focus-within, treeview entry:focus-within { - border-color: #00A9A5; } - -/************* - * Expanders * - *************/ -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: white; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -/**************** - * Floating Bar * - ****************/ -.floating-bar { - background-color: #0F111A; - border-width: 1px; - border-style: solid solid none; - border-color: #040407; - border-radius: 3px 3px 0 0; - box-shadow: none; } - .floating-bar.bottom.left { - border-left-style: none; - border-top-left-radius: 0; } - .floating-bar.bottom.right { - border-right-style: none; - border-top-right-radius: 0; } - .floating-bar > button { - padding: 4px; } - .floating-bar:backdrop { - background-color: #0F111A; - border-color: #050509; } - -/********** - * Frames * - **********/ -frame > border, -.frame { - box-shadow: none; - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #040407; } - frame > border.flat, - .frame.flat { - border-style: none; } - frame > border:backdrop, - .frame:backdrop { - border-color: #050509; } - -actionbar > revealer > box { - padding: 6px; - border-top: 1px solid #040407; } - actionbar > revealer > box:backdrop { - border-color: #050509; } - -scrolledwindow viewport.frame { - border-style: none; } -scrolledwindow overshoot.top { - background-image: radial-gradient(farthest-side at top, #1c2031 85%, rgba(28, 32, 49, 0)), radial-gradient(farthest-side at top, #1c2031, rgba(28, 32, 49, 0)); - background-size: 100% 5%, 100% 100%; - background-repeat: no-repeat; - background-position: center top; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.top:backdrop { - background-image: radial-gradient(farthest-side at top, #1c2031 85%, rgba(28, 32, 49, 0)); - background-size: 100% 5%; - background-repeat: no-repeat; - background-position: center top; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.bottom { - background-image: radial-gradient(farthest-side at bottom, #1c2031 85%, rgba(28, 32, 49, 0)), radial-gradient(farthest-side at bottom, #1c2031, rgba(28, 32, 49, 0)); - background-size: 100% 5%, 100% 100%; - background-repeat: no-repeat; - background-position: center bottom; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.bottom:backdrop { - background-image: radial-gradient(farthest-side at bottom, #1c2031 85%, rgba(28, 32, 49, 0)); - background-size: 100% 5%; - background-repeat: no-repeat; - background-position: center bottom; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.left { - background-image: radial-gradient(farthest-side at left, #1c2031 85%, rgba(28, 32, 49, 0)), radial-gradient(farthest-side at left, #1c2031, rgba(28, 32, 49, 0)); - background-size: 5% 100%, 100% 100%; - background-repeat: no-repeat; - background-position: left center; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.left:backdrop { - background-image: radial-gradient(farthest-side at left, #1c2031 85%, rgba(28, 32, 49, 0)); - background-size: 5% 100%; - background-repeat: no-repeat; - background-position: left center; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow overshoot.right { - background-image: radial-gradient(farthest-side at right, #1c2031 85%, rgba(28, 32, 49, 0)), radial-gradient(farthest-side at right, #1c2031, rgba(28, 32, 49, 0)); - background-size: 5% 100%, 100% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - scrolledwindow overshoot.right:backdrop { - background-image: radial-gradient(farthest-side at right, #1c2031 85%, rgba(28, 32, 49, 0)); - background-size: 5% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } -scrolledwindow undershoot.top { - background-color: transparent; - background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-top: 1px; - background-size: 10px 1px; - background-repeat: repeat-x; - background-origin: content-box; - background-position: center top; - border: none; - box-shadow: none; } -scrolledwindow undershoot.bottom { - background-color: transparent; - background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-bottom: 1px; - background-size: 10px 1px; - background-repeat: repeat-x; - background-origin: content-box; - background-position: center bottom; - border: none; - box-shadow: none; } -scrolledwindow undershoot.left { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-left: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: left center; - border: none; - box-shadow: none; } -scrolledwindow undershoot.right { - background-color: transparent; - background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); - padding-right: 1px; - background-size: 1px 10px; - background-repeat: repeat-y; - background-origin: content-box; - background-position: right center; - border: none; - box-shadow: none; } -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #040407 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #11131d; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - scrolledwindow junction:backdrop { - border-image-source: linear-gradient(to bottom, #050509 1px, transparent 1px); - background-color: #090b10; - transition: 200ms ease-out; } - -separator { - background: rgba(0, 0, 0, 0.1); } - -/************ - * Popovers * - ************/ -GraniteWidgetsPopOver { - border: 1px solid #131520; - background: #131520; - color: #BFC3C4; } - GraniteWidgetsPopOver .button { - background-image: none; - background: none; - border: none; } - GraniteWidgetsPopOver .button:active, GraniteWidgetsPopOver .button:active:hover { - color: #00A9A5; } - GraniteWidgetsPopOver > .frame { - border: none; } - GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar { - border: none; - background: none; } - -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.popover_bg { - background-color: #131520; - background-image: none; - border: 1px solid #131520; - color: #BFC3C4; } - -/*********** - * Welcome * - **********/ -GraniteWidgetsWelcome { - background-color: #131520; } - GraniteWidgetsWelcome GtkLabel { - color: #BFC3C4; } - GraniteWidgetsWelcome .h1, GraniteWidgetsWelcome .h3 { - color: rgba(191, 195, 196, 0.8); } - -/************** -* Source List * -***************/ -.source-list { - background-color: #0F111A; - border: solid #040407; - color: #BFC3C4; - border-right-width: 1px; } - .source-list .category-expander { - color: transparent; } - .source-list .badge { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - color: #0F111A; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - .source-list .badge:selected:backdrop, .source-list .badge:selected:hover:backdrop { - background-color: rgba(0, 0, 0, 0.2); - color: #06060a; } - .source-list row, - .source-list .list-row { - border: none; - padding: 0; } - .source-list row > GtkLabel, - .source-list row > label, - .source-list .list-row > GtkLabel, - .source-list .list-row > label { - padding-left: 6px; - padding-right: 6px; } - -/************** -* Text Styles * -**************/ -.h1 { - font-size: 24px; } - -.h2 { - font-weight: 300; - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - font-size: 12px; - padding: 6px; - color: rgba(191, 195, 196, 0.3); - font-weight: bold; - text-shadow: 0 1px rgba(255, 255, 255, 0.2); } - -/************** -* Storage Bar * -**************/ -.storage-bar .trough { - border: none; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); - background-image: none; - background-color: transparent; - padding: 8px 6px; } -.storage-bar .fill-block { - background-color: #FFCB6B; - border: none; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); - transition: all 200ms ease-in-out; - padding: 8px 6px; } - .storage-bar .fill-block:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - border-left-width: 1px; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } - .storage-bar .fill-block:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), inset -1px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } - .storage-bar .fill-block.empty-block { - background-color: #131520; } - .storage-bar .fill-block.app { - background-color: #82AAFF; } - .storage-bar .fill-block.audio { - background-color: #F78C6C; } - .storage-bar .fill-block.photo { - background-color: #FF5370; } - .storage-bar .fill-block.video { - background-color: #C792EA; } - .storage-bar .fill-block .legend { - padding: 12px; - border-radius: 4px; } - -/*************** - * Header bars * - ***************/ -.titlebar:not(headerbar), .titlebar, headerbar { - padding: 0 13px; - min-height: 34px; - background: #0a0b11; - color: #BFC3C4; - border-radius: 0; } - .titlebar:backdrop, - headerbar:backdrop { - border-color: #050509; - transition: 200ms ease-out; } - .titlebar .title, - headerbar .title { - font-weight: bold; - padding-left: 12px; - padding-right: 12px; } - .titlebar .subtitle, - headerbar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .titlebar entry, - headerbar entry { - min-height: 24px; } - .titlebar button, - headerbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - min-height: 20px; - margin-top: 5px; - margin-bottom: 5px; - box-shadow: none; } - .titlebar button.image-button, - headerbar button.image-button { - padding: 3px 4px; } - .titlebar button.suggested-action, - headerbar button.suggested-action { - box-shadow: none; - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.suggested-action:disabled, .titlebar button.suggested-action:disabled:backdrop, .titlebar button.suggested-action:backdrop, - headerbar button.suggested-action:disabled, - headerbar button.suggested-action:disabled:backdrop, - headerbar button.suggested-action:backdrop { - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.suggested-action:disabled:hover, .titlebar button.suggested-action:disabled:active, .titlebar button.suggested-action:disabled:checked, .titlebar button.suggested-action:disabled:backdrop:hover, .titlebar button.suggested-action:disabled:backdrop:active, .titlebar button.suggested-action:disabled:backdrop:checked, .titlebar button.suggested-action:backdrop:hover, .titlebar button.suggested-action:backdrop:active, .titlebar button.suggested-action:backdrop:checked, - headerbar button.suggested-action:disabled:hover, - headerbar button.suggested-action:disabled:active, - headerbar button.suggested-action:disabled:checked, - headerbar button.suggested-action:disabled:backdrop:hover, - headerbar button.suggested-action:disabled:backdrop:active, - headerbar button.suggested-action:disabled:backdrop:checked, - headerbar button.suggested-action:backdrop:hover, - headerbar button.suggested-action:backdrop:active, - headerbar button.suggested-action:backdrop:checked { - border: none; - background-image: linear-gradient(to right, #F78C6C 0%, #F78C6C 100%); } - .titlebar button.appmenu, - headerbar button.appmenu { - background: transparent; } - .titlebar button.appmenu:backdrop, - headerbar button.appmenu:backdrop { - background: transparent; } - .titlebar button:hover, .titlebar button:active, .titlebar button:checked, - headerbar button:hover, - headerbar button:active, - headerbar button:checked { - background-color: transparent; - color: #00A9A5; - box-shadow: none; } - .titlebar button:backdrop, .titlebar button:disabled, .titlebar button:backdrop:disabled, - headerbar button:backdrop, - headerbar button:disabled, - headerbar button:backdrop:disabled { - color: rgba(191, 195, 196, 0.2); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; - background-image: linear-gradient(to bottom, #0d0f17, #0d0f17); - border: 1px solid #040407; - border-radius: 4px; } - .titlebar button:backdrop:hover, .titlebar button:backdrop:active, .titlebar button:backdrop:checked, - headerbar button:backdrop:hover, - headerbar button:backdrop:active, - headerbar button:backdrop:checked { - background-color: transparent; - color: #00A9A5; - box-shadow: none; } - .titlebar button.suggested-action, - headerbar button.suggested-action { - font-weight: bold; - min-height: 14px; - margin-top: 5px; - margin-bottom: 5px; - border-radius: 4px; - font-weight: normal; - color: white; - background-color: #191c2c; - text-shadow: none; - box-shadow: none; } - .titlebar button.suggested-action:hover, - headerbar button.suggested-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:active, - headerbar button.suggested-action:active { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:disabled, - headerbar button.suggested-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.suggested-action:disabled label, - headerbar button.suggested-action:disabled label { - color: rgba(255, 255, 255, 0.5); } - .titlebar button.suggested-action:backdrop, - headerbar button.suggested-action:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #F78C6C; - text-shadow: none; - border-radius: 3px; } - .titlebar button.suggested-action:backdrop:disabled, - headerbar button.suggested-action:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #F78C6C; - text-shadow: none; } - .titlebar button.destructive-action, - headerbar button.destructive-action { - font-weight: bold; - min-height: 14px; - margin-top: 5px; - margin-bottom: 5px; - border-radius: 4px; - font-weight: normal; - color: white; - background-color: #191c2c; - text-shadow: none; - box-shadow: none; } - .titlebar button.destructive-action:hover, - headerbar button.destructive-action:hover { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:active, - headerbar button.destructive-action:active { - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:disabled, - headerbar button.destructive-action:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.destructive-action:disabled label, - headerbar button.destructive-action:disabled label { - color: rgba(255, 255, 255, 0.5); } - .titlebar button.destructive-action:backdrop, - headerbar button.destructive-action:backdrop { - color: rgba(255, 255, 255, 0.4); - outline-color: rgba(255, 255, 255, 0.3); - background-color: #ff2046; - text-shadow: none; - border-radius: 3px; } - .titlebar button.destructive-action:backdrop:disabled, - headerbar button.destructive-action:backdrop:disabled { - color: white; - border-color: rgba(4, 4, 7, 0.5); - background-color: #ff2046; - text-shadow: none; } - .titlebar button.titlebutton, - headerbar button.titlebutton { - color: transparent; - box-shadow: none; - border: none; - background-color: transparent; - background-repeat: no-repeat; } - .titlebar button.titlebutton:hover, .titlebar button.titlebutton:active, .titlebar button.titlebutton:checked, .titlebar button.titlebutton:backdrop, .titlebar button.titlebutton:backdrop:hover, .titlebar button.titlebutton *, - headerbar button.titlebutton:hover, - headerbar button.titlebutton:active, - headerbar button.titlebutton:checked, - headerbar button.titlebutton:backdrop, - headerbar button.titlebutton:backdrop:hover, - headerbar button.titlebutton * { - color: transparent; - box-shadow: none; - background-color: transparent; } - .titlebar .linked > button, .titlebar .path-bar-box button, - .titlebar headerbar .linked > button, - headerbar .path-bar-box .titlebar button, .titlebar .linked > button:hover, - .titlebar .linked > button:backdrop, - .titlebar headerbar .linked > button, - headerbar .path-bar-box .titlebar button, - headerbar .titlebar .linked > button, - headerbar .linked > button, - headerbar .titlebar .path-bar-box button, - .titlebar .path-bar-box headerbar button, - headerbar .path-bar-box button, - headerbar .titlebar .linked > button:hover, - .titlebar headerbar .linked > button:hover, - headerbar .titlebar .linked > button:backdrop, - .titlebar headerbar .linked > button:backdrop, - headerbar .linked > button:hover, - headerbar .linked > button:backdrop { - border-radius: 0; - border-right-style: none; - box-shadow: none; - margin: 5px 0px; - min-height: 20px; } - .titlebar .linked > button:first-child, .titlebar .path-bar-box button:first-child, - .titlebar headerbar .linked > button:first-child, - headerbar .path-bar-box .titlebar button:first-child, - headerbar .titlebar .linked > button:first-child, - headerbar .linked > button:first-child, - .titlebar .path-bar-box headerbar button:first-child, - headerbar .path-bar-box button:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - .titlebar .linked > button:last-child, .titlebar .path-bar-box button:last-child, - .titlebar headerbar .linked > button:last-child, - headerbar .path-bar-box .titlebar button:last-child, - headerbar .titlebar .linked > button:last-child, - headerbar .linked > button:last-child, - .titlebar .path-bar-box headerbar button:last-child, - headerbar .path-bar-box button:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-right-style: solid; } - .titlebar .linked > button:only-child, .titlebar .path-bar-box button:only-child, - .titlebar headerbar .linked > button:only-child, - headerbar .path-bar-box .titlebar button:only-child, - headerbar .titlebar .linked > button:only-child, - headerbar .linked > button:only-child, - .titlebar .path-bar-box headerbar button:only-child, - headerbar .path-bar-box button:only-child { - border-radius: 4px; - border-style: solid; } - .titlebar .linked > button:active, - .titlebar headerbar .linked > button:active, .titlebar .path-bar-box button:active, - headerbar .path-bar-box .titlebar button:active, .titlebar .linked > button:checked, - .titlebar headerbar .linked > button:checked, .titlebar .path-bar-box button:checked, - headerbar .path-bar-box .titlebar button:checked, - headerbar .titlebar .linked > button:active, - headerbar .linked > button:active, - .titlebar .path-bar-box headerbar button:active, - headerbar .path-bar-box button:active, - headerbar .titlebar .linked > button:checked, - headerbar .linked > button:checked, - .titlebar .path-bar-box headerbar button:checked, - headerbar .path-bar-box button:checked { - background: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .titlebar .linked > button:active:backdrop, - .titlebar headerbar .linked > button:active:backdrop, .titlebar .path-bar-box button:active:backdrop, - headerbar .path-bar-box .titlebar button:active:backdrop, .titlebar .linked > button:checked:backdrop, - .titlebar headerbar .linked > button:checked:backdrop, .titlebar .path-bar-box button:checked:backdrop, - headerbar .path-bar-box .titlebar button:checked:backdrop, - headerbar .titlebar .linked > button:active:backdrop, - headerbar .linked > button:active:backdrop, - .titlebar .path-bar-box headerbar button:active:backdrop, - headerbar .path-bar-box button:active:backdrop, - headerbar .titlebar .linked > button:checked:backdrop, - headerbar .linked > button:checked:backdrop, - .titlebar .path-bar-box headerbar button:checked:backdrop, - headerbar .path-bar-box button:checked:backdrop { - color: rgba(254, 254, 254, 0.5); } - .titlebar .linked > button:active:backdrop label, .titlebar .path-bar-box button:active:backdrop label, - headerbar .path-bar-box .titlebar button:active:backdrop label, .titlebar .linked > button:checked:backdrop label, .titlebar .path-bar-box button:checked:backdrop label, - headerbar .path-bar-box .titlebar button:checked:backdrop label, - headerbar .linked > button:active:backdrop label, - .titlebar .path-bar-box headerbar button:active:backdrop label, - headerbar .path-bar-box button:active:backdrop label, - headerbar .linked > button:checked:backdrop label, - .titlebar .path-bar-box headerbar button:checked:backdrop label, - headerbar .path-bar-box button:checked:backdrop label { - color: rgba(254, 254, 254, 0.5); } - .titlebar .path-bar-box .dim-label, .titlebar .path-bar-box label.separator, .titlebar .path-bar-box .subtitle, - headerbar .path-bar-box .dim-label, - headerbar .path-bar-box label.separator, - headerbar .path-bar-box .subtitle { - color: transparent; - margin-right: -6px; } - .titlebar .path-bar-box button:last-child, - headerbar .path-bar-box button:last-child { - margin-left: -1px; - border-radius: 0px; } - .titlebar .path-bar-box button:last-child:active, .titlebar .path-bar-box button:last-child:checked, - headerbar .path-bar-box button:last-child:active, - headerbar .path-bar-box button:last-child:checked { - border-radius: 0px 4px 4px 0px; } - .titlebar .path-bar-box button:first-child, - headerbar .path-bar-box button:first-child { - border-radius: 4px 0px 0px 4px; } - .titlebar .path-bar-box button:first-child:active, .titlebar .path-bar-box button:first-child:checked, - headerbar .path-bar-box button:first-child:active, - headerbar .path-bar-box button:first-child:checked { - border-radius: 4px; } - .titlebar .path-bar-box widget > .text-button:last-child, - headerbar .path-bar-box widget > .text-button:last-child { - border-radius: 0px 4px 4px 0px; - background: rgba(8, 9, 13, 0.93); - color: #cccfd0; - border-bottom: 1px solid #00A9A5; } - .titlebar .path-bar-box widget > .text-button:last-child:backdrop, .titlebar .path-bar-box widget > .text-button:last-child:backdrop label, - headerbar .path-bar-box widget > .text-button:last-child:backdrop, - headerbar .path-bar-box widget > .text-button:last-child:backdrop label { - color: rgba(254, 254, 254, 0.5); } - .titlebar .path-bar-box widget > .text-button:last-child:only-child, - headerbar .path-bar-box widget > .text-button:last-child:only-child { - border-radius: 4px; } - .selection-mode.titlebar button:backdrop.flat:active, .selection-mode.titlebar button:backdrop.flat:checked, .selection-mode.titlebar button:backdrop:active, .selection-mode.titlebar button:backdrop:checked, - headerbar.selection-mode button:backdrop.flat:active, - headerbar.selection-mode button:backdrop.flat:checked, - headerbar.selection-mode button:backdrop:active, - headerbar.selection-mode button:backdrop:checked { - border-color: #007673; } - .selection-mode.titlebar button:backdrop.flat:active label, .selection-mode.titlebar button:backdrop.flat:checked label, .selection-mode.titlebar button:backdrop:active label, .selection-mode.titlebar button:backdrop:checked label, - headerbar.selection-mode button:backdrop.flat:active label, - headerbar.selection-mode button:backdrop.flat:checked label, - headerbar.selection-mode button:backdrop:active label, - headerbar.selection-mode button:backdrop:checked label { - color: rgba(0, 169, 165, 0.6); } - .tiled .titlebar, .maximized .titlebar, - .tiled headerbar.titlebar, .maximized headerbar.titlebar { - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } - .tiled .titlebar:backdrop, .tiled .titlebar, .maximized .titlebar:backdrop, .maximized .titlebar, - .tiled headerbar:backdrop, - .tiled headerbar, .maximized headerbar:backdrop, .maximized headerbar { - border-radius: 0; } - .default-decoration.titlebar, headerbar.default-decoration { - padding: 5px 4px; - min-height: 20px; } - .default-decoration.titlebar button.titlebutton, headerbar.default-decoration button.titlebutton { - min-height: 20px; - min-width: 20px; - margin: 0; - padding: 0; } - -headerbar entry, -headerbar spinbutton, -headerbar separator:not(.sidebar), -headerbar button, -headerbar menubutton { - margin-top: 3px; - margin-bottom: 3px; } -headerbar menubutton > button, -headerbar spinbutton > button, -headerbar splitbutton > button, -headerbar splitbutton > menubutton, -headerbar entry > menubutton { - margin-top: 0px; - margin-bottom: 0px; } -headerbar switch { - margin-top: 0; - margin-bottom: 0; } -headerbar separator { - background: transparent; } - -.background:not(.tiled):not(.maximized) .titlebar { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px rgba(0, 0, 0, 0.1); } - .background:not(.tiled):not(.maximized) .titlebar:backdrop, .background:not(.tiled):not(.maximized) .titlebar { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - -window:not(.tiled):not(.maximized) separator:first-child + headerbar:backdrop, window:not(.tiled):not(.maximized) separator:first-child + headerbar, window:not(.tiled):not(.maximized) headerbar:first-child:backdrop, window:not(.tiled):not(.maximized) headerbar:first-child { - border-top-left-radius: 4px; } -window:not(.tiled):not(.maximized) headerbar:last-child:backdrop, window:not(.tiled):not(.maximized) headerbar:last-child { - border-top-right-radius: 4px; } - -window { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - -window.csd > .titlebar:not(headerbar) { - padding: 0; - background-color: transparent; - background-image: none; - border-style: none; - border-color: transparent; - box-shadow: none; } -.titlebar:not(headerbar) > separator, .titlebar:not(headerbar) > separator:backdrop { - background: #0a0b11; } - -/************** - * GtkInfoBar * - **************/ -.info, .warning, .question, .error, -infobar { - text-shadow: none; - color: #BFC3C4; - background-color: #0F111A; - border-bottom: 1px solid black; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.15); } - -.info, .warning, .question, .error { - text-shadow: none; - color: #fefefe; - border: none; } - .info .label, .warning .label, .question .label, .error .label { - color: #fefefe; } - .info .label:backdrop, .warning .label:backdrop, .question .label:backdrop, .error .label:backdrop { - color: rgba(254, 254, 254, 0.5); } - .info button, .warning button, .question button, .error button { - border-radius: 2px; - border: none; - background: rgba(19, 21, 32, 0.98); - color: #BFC3C4; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2); } - .info button .label, .warning button .label, .question button .label, .error button .label { - color: #BFC3C4; } - .info button:active, .warning button:active, .question button:active, .error button:active { - background: #131520; - color: #BFC3C4; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); } - .info button:active:backdrop, .warning button:active:backdrop, .question button:active:backdrop, .error button:active:backdrop { - background: rgba(19, 21, 32, 0.8); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:hover, .warning button:hover, .question button:hover, .error button:hover, .info button:focus, .warning button:focus, .question button:focus, .error button:focus { - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4); } - .info button:disabled, .warning button:disabled, .question button:disabled, .error button:disabled { - background: rgba(19, 21, 32, 0.6); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:disabled:backdrop, .warning button:disabled:backdrop, .question button:disabled:backdrop, .error button:disabled:backdrop { - background: rgba(19, 21, 32, 0.5); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - .info button:backdrop, .warning button:backdrop, .question button:backdrop, .error button:backdrop { - background: rgba(19, 21, 32, 0.8); - color: rgba(191, 195, 196, 0.5); - box-shadow: none; } - -.info, .info:backdrop { - color: #C3E88D; - background-color: transparent; } - -.warning, .warning:backdrop { - color: #f4663c; - background-color: transparent; } - -.question, .question:backdrop { - color: #89DDFF; - background-color: transparent; } - -.error, .error:backdrop { - color: #ff3a5b; - background-color: transparent; } - -/************* - * Level Bar * - *************/ -levelbar block { - min-width: 32px; - min-height: 6px; } -levelbar.vertical block { - min-width: 6px; - min-height: 32px; } -levelbar:backdrop { - transition: 200ms ease-out; } -levelbar trough { - padding: 3px; - border-radius: 3px; - background-color: rgba(255, 255, 255, 0.2); - box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - levelbar trough:backdrop { - background-color: rgba(255, 255, 255, 0.06); - box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } -levelbar.horizontal.discrete block { - margin: 0 1px; } -levelbar.vertical.discrete block { - margin: 1px 0; } -levelbar block { - border-radius: 2px; } - levelbar block:backdrop { - box-shadow: none; } - levelbar block.low { - background-color: #f4663c; } - levelbar block.low:backdrop { - border-color: #f4663c; } - levelbar block.high, levelbar block:not(.empty) { - background-color: #89DDFF; } - levelbar block.high:backdrop, levelbar block:not(.empty):backdrop { - border-color: #89DDFF; } - levelbar block.full { - background-color: #56ceff; } - levelbar block.full:backdrop { - border-color: #56ceff; } - levelbar block.empty { - background-color: rgba(0, 0, 0, 0.35); - box-shadow: none; } - -/********* - * Links * - *********/ -*:link, button:link, -button:visited { - color: #82AAFF; } - *:link:visited, - button:visited { - color: rgba(130, 170, 255, 0.5); } - *:selected *:link:visited, *:selected button:visited:link, - *:selected button:visited { - color: #98dcda; } - *:link:hover, button:hover:link, - button:hover:visited { - color: #b5cdff; } - *:selected *:link:hover, *:selected button:hover:link, - *:selected button:hover:visited { - color: #e5f6f5; } - *:link:active, button:active:link, - button:active:visited { - color: #82AAFF; } - *:selected *:link:active, *:selected button:active:link, - *:selected button:active:visited { - color: #cbedec; } - *:link:backdrop:backdrop:hover, button:backdrop:backdrop:hover:link, - button:backdrop:backdrop:hover:visited, *:link:backdrop:backdrop:hover:selected, button:backdrop:backdrop:hover:selected:link, - button:backdrop:backdrop:hover:selected:visited, *:link:backdrop, button:backdrop:link, - button:backdrop:visited { - color: #00A9A5; } - *:link:selected, button:selected:link, - button:selected:visited, *:selected *:link, *:selected button:link, - *:selected button:visited { - color: #cbedec; } - -button:link, -button:visited { - text-shadow: none; } - button:link:hover, button:link:active, button:link:checked, - button:visited:hover, - button:visited:active, - button:visited:checked { - text-shadow: none; } - button:link > label, - button:visited > label { - text-decoration-line: underline; } - -/********* - * Lists * - *********/ -list, listview { - color: #BFC3C4; - background-color: #131520; - border-color: #040407; } - list:backdrop, listview:backdrop { - background-color: #151724; - border-color: #050509; } - list.horizontal row.separator, list.separators.horizontal > row:not(.separator), listview.horizontal row.separator, listview.separators.horizontal > row:not(.separator) { - border-left: 1px solid #040407; } - list:not(.horizontal) row.separator, list.separators:not(.horizontal) > row:not(.separator), listview:not(.horizontal) row.separator, listview.separators:not(.horizontal) > row:not(.separator) { - border-bottom: 1px solid #040407; } - -row { - padding: 1px 11px; - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - row label { - padding-left: 8px; } - row:hover { - transition: none; } - row:backdrop { - transition: 200ms ease-out; } - row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(191, 195, 196, 0.05); } - row.activatable:active { - box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } - row.activatable:backdrop:hover { - background-color: transparent; } - row.activatable button.flat { - background-color: transparent; } - row.activatable:selected:active { - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } - row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: rgba(0, 169, 165, 0.5); } - row.activatable:selected:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - -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: #040407; } -columnview.data-table > listview > row > cell { - padding-top: 2px; - padding-bottom: 2px; } - -treeexpander { - border-spacing: 4px; } - -/******************************************************** - * Data Tables * - * treeview like tables with individual focusable cells * - * https://gitlab.gnome.org/GNOME/gtk/-/issues/2929 * - ********************************************************/ -columnview row:not(:selected) cell editablelabel:not(.editing):focus-within { - outline: 2px solid #040407; } - -columnview row:not(:selected) cell editablelabel.editing:focus-within { - outline: 2px solid #00A9A5; } - -columnview row:not(:selected) cell editablelabel.editing text selection { - background-color: rgba(0, 169, 165, 0.6); - color: transparent; } - columnview row:not(:selected) cell editablelabel.editing text selection:focus-within { - background-color: #00A9A5; - color: #BFC3C4; } - -/******************************************************* - * Rich Lists * - * Large list usually containing lots of widgets * - * https://gitlab.gnome.org/GNOME/gtk/-/issues/3073 * - *******************************************************/ -.rich-list { - /* rich lists usually containing other widgets than just labels/text */ } - .rich-list > row { - padding: 8px 12px; - min-height: 32px; - /* should be tall even when only containing a label */ } - .rich-list > row > box { - border-spacing: 12px; } - -/******************************************************** - * Complex Lists * - * Put padding on the cell content so event controllers * - * can cover the whole area. * - ********************************************************/ -columnview.complex > listview > row > cell { - padding: 0; } - columnview.complex > listview > row > cell > * { - padding: 8px 6px; } -columnview.complex.data-table > listview > row > cell { - padding: 0; } - columnview.complex.data-table > listview > row > cell > * { - padding-top: 2px; - padding-bottom: 2px; } - -/********* - * Menus * - *********/ -menubar, -.menubar { - background-color: #0a0b11; - color: #BFC3C4; - padding: 0px; - box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } - menubar > item, - .menubar > item { - min-height: 16px; - padding: 4px 8px; } - menubar > item:hover, - .menubar > item:hover { - box-shadow: inset 0 -3px #00A9A5; } - menubar > item:disabled, - .menubar > item:disabled { - color: #676a6f; - box-shadow: none; } - -menu, .menu, .context-menu { - margin: 4px; - padding: 2px 0px; - background: #0d0f17; - border-radius: 5px; - font: initial; } - .csd menu, - .csd .menu, - .csd .context-menu { - border: none; } - menu:backdrop, .menu:backdrop, .context-menu:backdrop { - background-color: #141622; } - menu menuitem, .menu menuitem, .context-menu menuitem { - min-height: 17px; - min-width: 40px; - padding: 4px 6px; - text-shadow: none; } - menu menuitem:hover, .menu menuitem:hover, .context-menu menuitem:hover { - color: #fefefe; - background-color: #00A9A5; } - menu menuitem:disabled, .menu menuitem:disabled, .context-menu menuitem:disabled { - color: #676a6f; } - menu menuitem:disabled:backdrop, .menu menuitem:disabled:backdrop, .context-menu menuitem:disabled:backdrop { - color: #2b314b; } - menu menuitem:backdrop, menu menuitem:backdrop:hover, .menu menuitem:backdrop, .menu menuitem:backdrop:hover, .context-menu menuitem:backdrop, .context-menu menuitem:backdrop:hover { - color: #676a6f; - background-color: transparent; } - menu menuitem arrow, .menu menuitem arrow, .context-menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), .menu menuitem arrow:dir(ltr), .context-menu menuitem arrow:dir(ltr) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - margin-left: 10px; } - 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: 10px; } - menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), .menu menuitem label:dir(rtl), .menu menuitem label:dir(ltr), .context-menu menuitem label:dir(rtl), .context-menu menuitem label:dir(ltr) { - color: inherit; } - menu > arrow, .menu > arrow, .context-menu > arrow { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - min-height: 16px; - min-width: 16px; - padding: 4px; - background-color: #12141f; - border-radius: 0; } - menu > arrow.top, .menu > arrow.top, .context-menu > arrow.top { - margin-top: -6px; - border-bottom: 1px solid #242630; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - menu > arrow.bottom, .menu > arrow.bottom, .context-menu > arrow.bottom { - margin-bottom: -6px; - border-top: 1px solid #242630; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - menu > arrow:hover, .menu > arrow:hover, .context-menu > arrow:hover { - background-color: #242630; } - menu > arrow:backdrop, .menu > arrow:backdrop, .context-menu > arrow:backdrop { - background-color: #141622; } - menu > arrow:disabled, .menu > arrow:disabled, .context-menu > arrow:disabled { - color: transparent; - background-color: transparent; - border-color: transparent; } - -menuitem accelerator { - color: alpha(currentColor,0.55); } -menuitem check, -menuitem radio { - min-height: 16px; - min-width: 16px; } - menuitem check:dir(ltr), - menuitem radio:dir(ltr) { - margin-right: 7px; } - menuitem check:dir(rtl), - menuitem radio:dir(rtl) { - margin-left: 7px; } - -.csd.popup { - background: transparent; } - -/******** - * Misc * - ********/ -.content-view { - background-color: #020203; } - .content-view:hover { - -gtk-icon-filter: brightness(1.2); } - .content-view:backdrop { - background-color: #020203; } - -.osd .scale-popup button.flat { - border-style: none; - border-radius: 5px; } -.scale-popup button:hover { - background-color: rgba(191, 195, 196, 0.1); - border-radius: 5px; } - -/************ -* Assistant * -*************/ -assistant { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; } - assistant .sidebar { - background-color: #131520; - border-top: 1px solid #040407; - border-bottom-left-radius: 4px; } - assistant .sidebar:backdrop { - background-color: #151724; - border-color: #050509; } - assistant.csd .sidebar { - border-top-style: none; } - assistant .sidebar GtkLabel, - assistant .sidebar label { - padding: 6px 12px; } - assistant .sidebar GtkLabel.highlight, - assistant .sidebar label.highlight { - background-color: #32353c; } - -/************* - * Notebooks * - *************/ -notebook > header { - padding: 1px; - border-color: #040407; - border-width: 1px; - background-color: #090b10; } - notebook > header:backdrop { - border-color: #050509; - background-color: #0F111A; } - notebook > header tabs { - margin: 0px; } - notebook > header.top { - border-bottom-style: solid; } - notebook > header.top > tabs { - margin-bottom: -2px; } - notebook > header.top > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.top > tabs > tab:checked { - background-color: #131520; } - notebook > header.top > tabs > tab:checked:hover { - background-color: #131520; } - notebook > header.bottom { - border-top-style: solid; } - notebook > header.bottom > tabs { - margin-top: -2px; } - notebook > header.bottom > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.bottom > tabs > tab:checked { - background-color: #131520; - box-shadow: -1px 0 0 #040407, 0px 1px 0 #040407, 1px 0 0 #040407; } - notebook > header.left { - border-right-style: solid; } - notebook > header.left > tabs { - margin-right: -2px; } - notebook > header.left > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.left > tabs > tab:checked { - background-color: #131520; - box-shadow: 0px 1px 0 #040407, 0px -1px 0 #040407, 0px 1px 0 #040407; } - notebook > header.right { - border-left-style: solid; } - notebook > header.right > tabs { - margin-left: -2px; } - notebook > header.right > tabs > tab:backdrop { - box-shadow: none; } - notebook > header.right > tabs > tab:checked { - background-color: #131520; - box-shadow: 0px 1px 0 #040407, 0px -1px 0 #040407, 1px 0 0 #040407; } - 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 { - margin-left: -5px; - margin-right: -5px; - padding-left: 4px; - padding-right: 4px; } - 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 { - border-left-style: none; } - notebook > header.right > tabs > arrow { - border-right-style: none; } - notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { - margin-top: -5px; - margin-bottom: -5px; - padding-top: 4px; - padding-bottom: 4px; } - 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: 14px; - min-width: 14px; - border-radius: 0; } - notebook > header > tabs > arrow:hover:not(:active):not(:backdrop) { - background-clip: padding-box; - background-image: none; - background-color: rgba(255, 255, 255, 0.3); - border-color: transparent; - box-shadow: none; } - notebook > header > tabs > arrow:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - notebook > header tab { - min-height: 24px; - min-width: 24px; - padding: 1px 12px; - outline-offset: -5px; - color: #676a6f; - font-weight: normal; - border-width: 1px; - border-color: transparent; } - notebook > header tab:hover { - color: #93979a; } - notebook > header tab:hover.reorderable-page { - border-color: rgba(4, 4, 7, 0.3); - background-color: rgba(15, 17, 26, 0.2); } - notebook > header tab:backdrop { - color: #44464d; } - notebook > header tab:backdrop.reorderable-page { - border-color: transparent; - background-color: transparent; } - notebook > header tab:checked { - color: #BFC3C4; - box-shadow: -1px 0 0 #040407, 0px -1px 0 #040407, 1px 0 0 #040407; } - notebook > header tab:checked.reorderable-page { - border-color: rgba(4, 4, 7, 0.5); - background-color: rgba(15, 17, 26, 0.5); } - notebook > header tab:checked.reorderable-page:hover { - background-color: rgba(15, 17, 26, 0.7); } - notebook > header tab:hover button.flat, notebook > header tab:checked button.flat, notebook > header tab:backdrop:checked button.flat { - color: alpha(currentColor,0.3); } - notebook > header tab:backdrop:checked { - color: #676a6f; } - notebook > header tab:backdrop:checked.reorderable-page { - border-color: #050509; - background-color: #151724; } - notebook > header tab button.flat { - padding: 0; - margin-top: 4px; - margin-bottom: 4px; - border: none; - background: transparent; - min-width: 20px; - min-height: 20px; } - notebook > header tab button.flat:hover { - background: transparent; - box-shadow: none; - color: #FF5370; } - notebook > header tab button.flat, notebook > header tab button.flat:backdrop { - border: none; - background: transparent; - color: alpha(currentColor,0); } - notebook > header tab button.flat:last-child { - margin-left: 4px; - margin-right: -4px; } - notebook > header tab button.flat:first-child { - margin-left: -4px; - margin-right: 4px; } - notebook > header.top tabs, notebook > header.bottom tabs { - padding-left: 0px; - padding-right: 0px; } - notebook > header.top tabs:not(:only-child), notebook > header.bottom tabs:not(:only-child) { - margin-left: 0.5px; - margin-right: 0.5px; } - notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { - margin-left: -1px; } - notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { - margin-right: -1px; } - notebook > header.top tabs tab, notebook > header.bottom tabs tab { - margin-left: 0.5px; - margin-right: 0.5px; } - notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { - border-style: none solid; } - notebook > header.left tabs, notebook > header.right tabs { - padding-top: 4px; - padding-bottom: 4px; } - notebook > header.left tabs:not(:only-child), notebook > header.right tabs:not(:only-child) { - margin-top: 3px; - margin-bottom: 3px; } - notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { - margin-top: -1px; } - notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { - margin-bottom: -1px; } - notebook > header.left tabs tab, notebook > header.right tabs tab { - margin-top: 4px; - margin-bottom: 4px; } - notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { - border-style: solid none; } - notebook > header.top tab { - padding-bottom: 1px; } - notebook > header.bottom tab { - padding-top: 1px; } -notebook > stack:not(:only-child) { - background-color: #131520; } - notebook > stack:not(:only-child):backdrop { - background-color: #151724; } - -tabbar:backdrop .box > scrolledwindow, -tabbar:backdrop .box > .start-action, -tabbar:backdrop .box > .end-action { - filter: opacity(1); } -tabbar tabbox { - background-color: #090b10; - padding: 0px; - color: #BFC3C4; } - tabbar tabbox > tab:checked, tabbar tabbox > tab:selected, - tabbar tabbox > tabboxchild > tab:checked, - tabbar tabbox > tabboxchild > tab:selected { - background-color: #131520; } - -/********* - * Paned * - *********/ -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: image(#040407); - background-size: 1px 1px; } - paned > separator:selected { - background-image: image(#00A9A5); } - paned > separator:backdrop { - background-image: image(#050509); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #0F111A; - background-image: image(#040407), image(#040407); - background-size: 1px 1px, 1px 1px; } - paned > separator.wide:backdrop { - background-color: #0F111A; - background-image: image(#050509), image(#050509); } -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; } - -/************ - * Pathbars * - ************/ -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 4px; - padding-right: 4px; } -.path-bar button.text-button.image-button label { - padding-left: 0; - padding-right: 0; } -.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child { - padding-right: 8px; } -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 8px; } -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } -.path-bar button.slider-button { - padding-left: 0; - padding-right: 0; } - -/*************** - * Popovers * - ***************/ -popover.background { - background-color: transparent; - font: initial; } - popover.background > arrow, - popover.background > contents { - background-color: #0d0f17; - background-clip: padding-box; - border: 1px solid #040407; - box-shadow: 0 4px 6px #040407; - color: #BFC3C4; } - popover.background:backdrop { - background-color: transparent; - box-shadow: none; } - popover.background > contents { - padding: 8px; - border-radius: 5px; } - popover.background > contents > list, - popover.background > contents > .view, - popover.background > contents > iconview, - popover.background > contents > toolbar { - border-style: none; - background-color: transparent; } - popover.background > contents separator { - background-color: #07080d; - margin: 3px; } - popover.background > contents list separator { - margin: 0; } - .osd popover.background, popover.background.touch-selection, popover.background.magnifier { - background-color: transparent; } - .osd popover.background > arrow, - .osd popover.background > contents, popover.background.touch-selection > arrow, - popover.background.touch-selection > contents, popover.background.magnifier > arrow, - popover.background.magnifier > contents { - border: 1px solid rgba(255, 255, 255, 0.1); - box-shadow: none; } - -magnifier { - background-color: #131520; } - -/********************** - * Popover Base Menus * - **********************/ -popover.menu { - padding: 0; } - popover.menu box.inline-buttons { - padding: 0 12px; } - popover.menu box.inline-buttons button.image-button.model { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - min-height: 30px; - min-width: 30px; - padding: 0; - border: none; - outline: none; - transition: none; } - popover.menu box.inline-buttons button.image-button.model:selected { - background: image(#1e2234); } - popover.menu box.circular-buttons { - padding: 12px 12px 6px; } - popover.menu box.circular-buttons button.circular.image-button.model { - padding: 11px; } - popover.menu box.circular-buttons button.circular.image-button.model:focus { - background-color: #1e2234; - border-color: #1e2234; } - popover.menu > arrow, popover.menu.background > contents { - background-color: #0d0f17; - color: #BFC3C4; - padding: 5px; } - popover.menu.background separator { - margin: 6px 0; } - popover.menu accelerator { - color: alpha(currentColor,0.55); } - popover.menu accelerator:dir(ltr) { - margin-left: 12px; } - popover.menu accelerator:dir(rtl) { - margin-right: 12px; } - popover.menu check:hover, popover.menu check:active, - popover.menu radio:hover, - popover.menu radio:active { - background-color: transparent; } - popover.menu radio { - border-color: #040407; } - popover.menu radio:active { - border-color: rgba(4, 4, 7, 0.5); } - popover.menu arrow.left, - popover.menu radio.left, - popover.menu check.left { - margin-left: -2px; - margin-right: 6px; } - popover.menu arrow.right, - popover.menu radio.right, - popover.menu check.right { - margin-left: 6px; - margin-right: -2px; } - popover.menu modelbutton { - min-height: 30px; - min-width: 40px; - padding: 0 12px; - border-radius: 5px; } - popover.menu modelbutton:selected { - color: #fefefe; - background-color: #1e2234; } - popover.menu modelbutton:selected:active { - background-color: #313754; } - popover.menu label.title { - font-weight: bold; - padding: 4px 32px; } - -/***************** - * Progress bars * - *****************/ -progressbar { - font-size: smaller; - color: rgba(191, 195, 196, 0.4); } - progressbar.horizontal trough, - progressbar.horizontal progress { - min-height: 6px; } - progressbar.vertical trough, - progressbar.vertical progress { - min-width: 6px; } - progressbar.horizontal progress { - margin: 0; } - progressbar.vertical progress { - margin: 0; } - progressbar:backdrop { - box-shadow: none; - transition: 200ms ease-out; } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - border-radius: 0; - background-color: transparent; - box-shadow: none; } - progressbar.osd progress { - border-style: none; - border-radius: 0; } - -/************ - * GtkScale * - ************/ -progressbar trough, scale trough, scale fill { - background-color: rgba(255, 255, 255, 0.14); - border: none; - border-radius: 3px; - margin: 0; } - progressbar trough:disabled, scale trough:disabled, scale fill:disabled { - background-color: rgba(255, 255, 255, 0.06); } - progressbar trough:backdrop, progressbar:backdrop trough, scale trough:backdrop, scale fill:backdrop { - background-color: rgba(255, 255, 255, 0.06); - transition: 200ms ease-out; } - progressbar trough:backdrop:disabled, progressbar:backdrop trough:disabled, scale trough:backdrop:disabled, scale fill:backdrop:disabled { - background-color: rgba(255, 255, 255, 0.06); } - -progressbar progress, scale highlight { - border: none; - background-color: #00A9A5; - border-radius: 3px; - margin: 0; } - progressbar progress:disabled, scale highlight:disabled { - border: none; - background-color: rgba(255, 255, 255, 0.14); } - progressbar progress:backdrop, progressbar:backdrop progress, scale highlight:backdrop, progressbar progress:active:backdrop, progressbar:backdrop progress:active, scale highlight:active:backdrop { - border-color: #00c3be; - background-color: #00c3be; } - progressbar progress:backdrop:disabled, progressbar:backdrop progress:disabled, scale highlight:backdrop:disabled, progressbar progress:active:backdrop:disabled, progressbar:backdrop progress:active:disabled, scale highlight:active:backdrop:disabled { - background-color: rgba(255, 255, 255, 0.06); } - -scale { - min-height: 16px; - min-width: 16px; - padding: 8px; } - scale.horizontal trough, - scale.horizontal progress { - min-height: 6px; } - scale.vertical trough, - scale.vertical progress { - min-width: 6px; } - scale slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - background-color: #131520; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); - border-radius: 12px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border, box-shadow; } - scale slider:active { - background-color: #00A9A5; } - scale slider:active:disabled { - background-color: #151722; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.05); } - scale.fine-tune.horizontal { - padding-top: 9px; - padding-bottom: 9px; - min-height: 16px; } - scale.fine-tune.vertical { - padding-left: 9px; - padding-right: 9px; - min-width: 16px; } - scale.fine-tune slider { - margin: -6px; } - scale.fine-tune fill, - scale.fine-tune highlight, - scale.fine-tune trough { - border-radius: 5px; } - scale trough { - outline-offset: 2px; - outline-color: transparent; } - scale fill:backdrop, scale fill { - background-color: #040407; } - scale fill:disabled:backdrop, scale fill:disabled { - border-color: transparent; - background-color: transparent; } - .osd scale fill { - background-color: #333436; } - .osd scale fill:disabled:backdrop, .osd scale fill:disabled { - border-color: transparent; - background-color: transparent; } - scale slider { - border-color: #d1d1d1; - border: none; - border-radius: 12px; - background-color: #d1d1d1; } - scale slider:active { - border-color: #007673; } - scale slider:disabled { - background-color: #a5a5a5; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale slider:backdrop, scale slider:backdrop:disabled { - transition: 200ms ease-out; - background-color: #a5a5a5; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - row:selected scale slider:disabled, row:selected scale slider { - border-color: #007673; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 6px; - margin-top: -12px; } - scale marks.bottom { - margin-top: 6px; - margin-bottom: -12px; } - scale marks.top { - margin-right: 6px; - margin-left: -12px; } - scale marks.bottom { - margin-left: 6px; - margin-right: -12px; } - scale.fine-tune marks.top { - margin-bottom: 6px; - margin-top: -9px; } - scale.fine-tune marks.bottom { - margin-top: 6px; - margin-bottom: -9px; } - scale.fine-tune marks.top { - margin-right: 6px; - margin-left: -9px; } - scale.fine-tune marks.bottom { - margin-left: 6px; - margin-right: -9px; } - scale.horizontal indicator { - min-height: 6px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 3px; } - scale.vertical indicator { - min-height: 1px; - min-width: 6px; } - scale.vertical.fine-tune indicator { - min-width: 3px; } - scale.horizontal.marks-before:not(.marks-after) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-before:not(.marks-after) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.horizontal.marks-after:not(.marks-before) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.horizontal.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-before:not(.marks-after) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-before:not(.marks-after).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:hover { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:active { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:backdrop { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.vertical.marks-after:not(.marks-before) slider:backdrop:disabled { - min-height: 16px; - min-width: 16px; - margin: -7px; - border: none; - border-radius: 50%; - background-color: #d1d1d1; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); } - scale.vertical.marks-after:not(.marks-before).fine-tune slider { - margin: -7px; } - scale.color { - min-height: 0; - min-width: 0; } - scale.color trough { - background-image: image(#040407); - background-repeat: no-repeat; } - scale.color.horizontal { - padding: 0 0 15px 0; } - scale.color.horizontal trough { - padding-bottom: 4px; - background-position: 0 -3px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - scale.color.horizontal slider:dir(ltr):hover, scale.color.horizontal slider:dir(ltr):backdrop, scale.color.horizontal slider:dir(ltr):disabled, scale.color.horizontal slider:dir(ltr):backdrop:disabled, scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl):hover, scale.color.horizontal slider:dir(rtl):backdrop, scale.color.horizontal slider:dir(rtl):disabled, scale.color.horizontal slider:dir(rtl):backdrop:disabled, scale.color.horizontal slider:dir(rtl) { - margin-bottom: -15px; - margin-top: 6px; } - scale.color.vertical:dir(ltr) { - padding: 0 0 0 15px; } - scale.color.vertical:dir(ltr) trough { - padding-left: 4px; - background-position: 3px 0; - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - scale.color.vertical:dir(ltr) slider:hover, scale.color.vertical:dir(ltr) slider:backdrop, scale.color.vertical:dir(ltr) slider:disabled, scale.color.vertical:dir(ltr) slider:backdrop:disabled, scale.color.vertical:dir(ltr) slider { - margin-left: -15px; - margin-right: 6px; } - scale.color.vertical:dir(rtl) { - padding: 0 15px 0 0; } - scale.color.vertical:dir(rtl) trough { - padding-right: 4px; - background-position: -3px 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - scale.color.vertical:dir(rtl) slider:hover, scale.color.vertical:dir(rtl) slider:backdrop, scale.color.vertical:dir(rtl) slider:disabled, scale.color.vertical:dir(rtl) slider:backdrop:disabled, scale.color.vertical:dir(rtl) slider { - margin-right: -15px; - margin-left: 6px; } - scale.color.fine-tune.horizontal:dir(ltr), scale.color.fine-tune.horizontal:dir(rtl) { - padding: 0 0 12px 0; } - scale.color.fine-tune.horizontal:dir(ltr) trough, scale.color.fine-tune.horizontal:dir(rtl) trough { - padding-bottom: 7px; - background-position: 0 -6px; } - scale.color.fine-tune.horizontal:dir(ltr) slider, scale.color.fine-tune.horizontal:dir(rtl) slider { - margin-bottom: -15px; - margin-top: 6px; } - scale.color.fine-tune.vertical:dir(ltr) { - padding: 0 0 0 12px; } - scale.color.fine-tune.vertical:dir(ltr) trough { - padding-left: 7px; - background-position: 6px 0; } - scale.color.fine-tune.vertical:dir(ltr) slider { - margin-left: -15px; - margin-right: 6px; } - scale.color.fine-tune.vertical:dir(rtl) { - padding: 0 12px 0 0; } - scale.color.fine-tune.vertical:dir(rtl) trough { - padding-right: 7px; - background-position: -6px 0; } - scale.color.fine-tune.vertical:dir(rtl) slider { - margin-right: -15px; - margin-left: 6px; } - -/************** - * Scrollbars * - **************/ -scrollbar { - background-color: #11131d; - transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - scrollbar.top { - border-bottom: 1px solid #040407; } - scrollbar.bottom { - border-top: 1px solid #040407; } - scrollbar.left { - border-right: 1px solid #040407; } - scrollbar.right { - border-left: 1px solid #040407; } - scrollbar:backdrop { - background-color: #090b10; - border-color: #050509; - transition: 200ms ease-out; } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #797c80; } - scrollbar slider:hover { - background-color: #9c9fa2; } - scrollbar slider:hover:active { - background-color: #00dcd7; } - scrollbar slider:backdrop { - background-color: #32353c; } - scrollbar slider:disabled { - background-color: transparent; } - scrollbar.fine-tune slider { - min-width: 4px; - min-height: 4px; } - scrollbar.fine-tune.horizontal slider { - border-width: 5px 4px; } - scrollbar.fine-tune.vertical slider { - border-width: 4px 5px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) { - border-color: transparent; - opacity: 0.4; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 3px; - min-height: 3px; - background-color: #BFC3C4; - border: 1px solid black; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { - min-width: 5px; - min-height: 5px; - background-color: #BFC3C4; - background-clip: padding-box; - border-radius: 100%; - border: 1px solid black; - -gtk-icon-source: none; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { - margin: 1px 2px; - min-width: 5px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { - margin: 2px 1px; - min-height: 5px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.8; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - scrollbar button { - padding: 0; - min-width: 12px; - min-height: 12px; - border-style: none; - border-radius: 0; - transition-property: min-height, min-width, color; - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #797c80; } - scrollbar button:hover { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #9c9fa2; } - scrollbar button:active, scrollbar button:checked { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #00dcd7; } - scrollbar button:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(121, 124, 128, 0.2); } - scrollbar button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #32353c; } - scrollbar button:backdrop:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: rgba(50, 53, 60, 0.2); } - scrollbar.vertical button.down { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - scrollbar.vertical button.up { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - scrollbar.horizontal button.down { - -gtk-icon-source: -gtk-icontheme("pan-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - -treeview ~ scrollbar.vertical { - border-top: 1px solid #040407; - margin-top: -1px; } - -/*********** - * Sidebar * - ***********/ -.sidebar { - border-style: none; - border-width: 0; - background-color: #11131d; } - .sidebar .frame { - border: none; } - stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: none; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list - .sidebar:dir(rtl), stacksidebar.sidebar.right list - .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #040407; - border-right-style: none; } - .sidebar:backdrop { - background-color: #12141f; - border-color: #050509; - transition: 200ms ease-out; } - .sidebar row { - padding: 8px 12px; - transition: all .12s ease-in; } - .sidebar row label { - color: #98abb2; } - .sidebar row:selected { - color: #fefefe; } - .sidebar row:selected:backdrop { - color: rgba(254, 254, 254, 0.5); - background: rgba(0, 169, 165, 0.6); } - .sidebar row:selected:backdrop label { - color: #fefefe; } - .sidebar row:selected label { - color: #fefefe; } - .sidebar.source-list { - background: #0d0f17; - padding: 4px 0px; } - .sidebar.source-list.view, iconview.sidebar.source-list { - transition: all .12s ease-in; } - .sidebar.source-list.view:selected, iconview.sidebar.source-list:selected { - background: rgba(8, 9, 13, 0.93); - color: #98abb2; } - .sidebar.source-list.view:selected:active, iconview.sidebar.source-list:selected:active { - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } - .sidebar.source-list.view:selected.has-open-popup, iconview.sidebar.source-list:selected.has-open-popup, .sidebar.source-list.view:selected:hover, iconview.sidebar.source-list:selected:hover { - background: rgba(8, 9, 13, 0.93); - color: #fff; } - .sidebar.source-list.view:selected:backdrop, iconview.sidebar.source-list:selected:backdrop { - background: rgba(8, 9, 13, 0.93); } - .sidebar.source-list.view:hover, iconview.sidebar.source-list:hover, .sidebar.source-list.view iconview.source-list:hover, iconview.sidebar.source-list iconview.source-list:hover { - background-color: rgba(15, 17, 26, 0.4); } - paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { - border-style: none; - border-color: #040407; } - -stacksidebar row { - padding: 10px 4px; } - stacksidebar row > label { - padding-left: 6px; - padding-right: 6px; } - stacksidebar row.needs-attention > label { - background-size: 6px 6px, 0 0; } - -/*******************************************************************/ -/* PLACESSIDEBAR */ -/*******************************************************************/ -/*--*/ -placessidebar.sidebar, .nautilus-window .navigation-sidebar { - background-color: #0d0f17; } - placessidebar.sidebar row.sidebar-row.sidebar-row, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-row { - margin: 0; - border-radius: 0; } - placessidebar.sidebar row.sidebar-row.sidebar-row .sidebar-icon, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-row .sidebar-icon { - margin-left: -14px; - margin-right: 5px; - padding-left: 14px; - padding-right: 5px; - color: #98abb2; } - placessidebar.sidebar row.sidebar-row:hover, placessidebar.sidebar row.sidebar-row:active, placessidebar.sidebar row.sidebar-row:selected, .nautilus-window .navigation-sidebar row.sidebar-row:hover, .nautilus-window .navigation-sidebar row.sidebar-row:active, .nautilus-window .navigation-sidebar row.sidebar-row:selected { - background-color: #1a1e2d; } - placessidebar.sidebar row.sidebar-row:hover, placessidebar.sidebar row.sidebar-row:hover label, placessidebar.sidebar row.sidebar-row:active, placessidebar.sidebar row.sidebar-row:active label, placessidebar.sidebar row.sidebar-row:selected, placessidebar.sidebar row.sidebar-row:selected label, .nautilus-window .navigation-sidebar row.sidebar-row:hover, .nautilus-window .navigation-sidebar row.sidebar-row:hover label, .nautilus-window .navigation-sidebar row.sidebar-row:active, .nautilus-window .navigation-sidebar row.sidebar-row:active label, .nautilus-window .navigation-sidebar row.sidebar-row:selected, .nautilus-window .navigation-sidebar row.sidebar-row:selected label { - color: #fefefe; - font-weight: normal; } - placessidebar.sidebar row.sidebar-row:selected:backdrop, .nautilus-window .navigation-sidebar row.sidebar-row:selected:backdrop { - color: #9da1a4; - background-color: transparent; - background-image: linear-gradient(to right, rgba(8, 9, 13, 0.93) 40px, rgba(8, 9, 13, 0.93) 36px, rgba(8, 9, 13, 0.93) 97%); } - placessidebar.sidebar row.sidebar-row:selected:backdrop label, .nautilus-window .navigation-sidebar row.sidebar-row:selected:backdrop label { - color: #9da1a4; } - placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, .nautilus-window .navigation-sidebar row.sidebar-row:selected .sidebar-icon { - color: inherit; } - placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row label, placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-new-bookmark-row, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-new-bookmark-row label, .nautilus-window .navigation-sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: #FFCB6B; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #00A9A5, inset 0 -1px #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) image, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled), .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled) label, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled) image { - color: #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background: #00A9A5; } - placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected image, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled):selected, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled):selected label, .nautilus-window .navigation-sidebar row.sidebar-row:drop(active):not(:disabled):selected image { - color: #fefefe; } - placessidebar.sidebar list, .nautilus-window .navigation-sidebar list { - background-color: transparent; } - placessidebar.sidebar list:backdrop, .nautilus-window .navigation-sidebar list:backdrop { - background-color: transparent; } - -/***************** - * GtkSpinButton * - *****************/ -spinbutton:not(.vertical) { - padding: 0; } - spinbutton:not(.vertical) entry { - min-width: 28px; - margin: 0; - background: none; - background-color: transparent; - border: none; - border-radius: 0; - box-shadow: none; } - spinbutton:not(.vertical) button { - min-height: 16px; - margin: 0; - padding-bottom: 0; - padding-top: 0; - color: #aeb2b4; - background-image: none; - border-style: none none none solid; - border-color: rgba(4, 4, 7, 0.3); - border-radius: 0; - box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); } - spinbutton:not(.vertical) button:dir(rtl) { - border-style: none solid none none; } - spinbutton:not(.vertical) button:hover { - color: #BFC3C4; - background-color: rgba(191, 195, 196, 0.05); } - spinbutton:not(.vertical) button:disabled { - color: rgba(103, 106, 111, 0.3); } - spinbutton:not(.vertical) button:active { - background-color: rgba(0, 0, 0, 0.1); - box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } - spinbutton:not(.vertical) button:backdrop { - color: #5f6268; - background-color: transparent; - border-color: rgba(5, 5, 9, 0.3); - transition: 200ms ease-out; } - spinbutton:not(.vertical) button:backdrop:disabled { - color: rgba(43, 49, 75, 0.3); - background-image: none; - border-style: none none none solid; - box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.07); } - spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { - border-style: none solid none none; } - spinbutton:not(.vertical) button:last-child { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } -.osd spinbutton:not(.vertical) button { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-style: none none none solid; - border-color: rgba(4, 4, 7, 0.7); - border-radius: 0; - box-shadow: none; - -gtk-icon-shadow: 0 1px black; } - .osd spinbutton:not(.vertical) button:dir(rtl) { - border-style: none solid none none; } - .osd spinbutton:not(.vertical) button:hover { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-color: rgba(4, 4, 7, 0.5); - background-color: rgba(191, 195, 196, 0.1); - -gtk-icon-shadow: 0 1px black; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #BFC3C4; - border-color: rgba(4, 4, 7, 0.5); - -gtk-icon-shadow: none; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:disabled { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; - color: #646669; - border-color: rgba(4, 4, 7, 0.5); - -gtk-icon-shadow: none; - box-shadow: none; } - .osd spinbutton:not(.vertical) button:last-child { - border-radius: 0 3px 3px 0; } - .osd spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 3px 0 0 3px; } -spinbutton.vertical:disabled { - color: #676a6f; } -spinbutton.vertical:backdrop:disabled { - color: #2b314b; } -spinbutton.vertical:drop(active) { - border-color: transparent; - box-shadow: none; } -spinbutton.vertical entry { - min-height: 32px; - min-width: 32px; - padding: 0; - border-radius: 0; } -spinbutton.vertical button { - min-height: 32px; - min-width: 32px; - padding: 0; - border-width: 1px; - border-color: #040407; - box-shadow: 0 1px rgba(255, 255, 255, 0.1); } -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; - border-style: solid solid none solid; } -spinbutton.vertical button.down { - border-radius: 0 0 3px 3px; - border-style: none solid solid solid; } -.osd spinbutton.vertical button:first-child { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:active { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - .osd spinbutton.vertical button:first-child:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - .osd spinbutton.vertical button:first-child:backdrop { - color: #BFC3C4; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(8, 9, 13, 0.93), rgba(8, 9, 13, 0.93)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } -treeview spinbutton:not(.vertical) { - min-height: 0; - border-style: none; - border-radius: 0; } - treeview spinbutton:not(.vertical) entry { - min-height: 0; - padding: 1px 2px; } - -/*********** - * Spinner * - ***********/ -menu spinner { - color: #00A9A5; } - -/********************* - * 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; } - -/********** - * Switch * - **********/ -switch { - font-size: 1px; - font-weight: bold; - outline-offset: -4px; - transition: all 200ms ease-in; - border: none; - border-radius: 14px; - color: transparent; - padding: 2.3px 0px; - background-color: #2f3551; - box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 1px rgba(0, 0, 0, 0.1); } - switch:disabled { - background-color: #1e2234; } - switch:backdrop { - background-color: #22263a; - transition: 200ms ease-out; } - switch:backdrop:disabled { - background-color: #1a1e2d; } - switch:active, switch:checked { - background-color: #00A9A5; } - switch:active:backdrop, switch:checked:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - switch:active:backdrop slider:backdrop, switch:checked:backdrop slider:backdrop { - box-shadow: none; - background-color: rgba(19, 21, 32, 0.9); - border: none; } - switch slider { - padding: 2px; - margin: 0 2.3px; - min-width: 12px; - min-height: 12px; - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - background-color: #131520; - box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2); } - switch slider:backdrop { - padding: 2px; - box-shadow: none; - background-color: #131520; } - switch trough:active, switch trough:checked { - background-color: #00A9A5; } - switch trough:active:backdrop, switch trough:checked:backdrop { - background-color: rgba(0, 169, 165, 0.6); } - -/************ - * Toolbars * - ************/ -toolbar, .inline-toolbar, searchbar > revealer > box { - padding: 4px; - background-color: #0F111A; } - -toolbar { - padding: 4px 3px 3px 4px; } - .osd toolbar { - background-color: transparent; } - toolbar.osd { - padding: 13px; - border: none; - border-radius: 5px; - background-color: rgba(8, 9, 13, 0.93); } - toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { - border-radius: 0; } - toolbar.horizontal separator { - margin: 0 7px 1px 6px; } - toolbar.vertical separator { - margin: 6px 1px 7px 0; } - toolbar:not(.inline-toolbar):not(.osd) switch, - 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-right: 1px; - margin-bottom: 1px; } - -.inline-toolbar { - padding: 3px; - border-width: 0 1px 1px; - border-radius: 0 0 5px 5px; } - -searchbar > revealer > box { - border-width: 0 0 1px; - padding: 3px; } - -.inline-toolbar, searchbar > revealer > box { - border-style: solid; - border-color: #040407; - background-color: #0c0d14; } - .inline-toolbar:backdrop, searchbar > revealer > box:backdrop { - border-color: #050509; - background-color: #0c0d14; - box-shadow: none; - transition: 200ms ease-out; } - -searchbar { - background: #131520; } - -/************ - * Tooltips * - ************/ -tooltip { - padding: 4px; - /* not working */ - border-radius: 5px; - box-shadow: none; - text-shadow: 0 1px black; } - tooltip.background { - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - border: 1px solid #040407; } - tooltip decoration { - background-color: transparent; } - tooltip * { - padding: 4px; - background-color: transparent; - color: white; } - -columnview.view, -treeview.view { - border-left-color: #040407; - border-top-color: #040407; } - columnview.view:selected:focus, columnview.view:selected, - treeview.view:selected:focus, - treeview.view:selected { - border-radius: 0; - outline-color: #FF5370; } - columnview.view:disabled, - treeview.view:disabled { - color: #676a6f; } - columnview.view:disabled:selected, - treeview.view:disabled:selected { - color: #66cbc9; } - columnview.view:disabled:selected:backdrop, - treeview.view:disabled:selected:backdrop { - color: rgba(32, 180, 176, 0.85); } - columnview.view.separator, - treeview.view.separator { - min-height: 2px; - color: #040407; } - columnview.view:backdrop, - treeview.view:backdrop { - border-left-color: #242630; - border-top: #242630; } - 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: 1px; - border-color: #007673; } - 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: #8b8f93; } - 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: #BFC3C4; } - columnview.view.expander:selected, - treeview.view.expander:selected { - color: #b2e5e3; } - columnview.view.expander:selected:hover, - treeview.view.expander:selected:hover { - color: #fefefe; } - columnview.view.expander:checked, - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - columnview.view.progressbar, - treeview.view.progressbar { - border: 1px solid #007673; - border-radius: 4px; - background-color: #00A9A5; - background-image: linear-gradient(to bottom, #00A9A5, #007673); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.1); } - columnview.view.progressbar:selected:focus, columnview.view.progressbar:selected, - treeview.view.progressbar:selected:focus, - treeview.view.progressbar:selected { - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); - background-image: image(#131520); } - columnview.view.progressbar:selected:focus:backdrop, columnview.view.progressbar:selected:backdrop, - treeview.view.progressbar:selected:focus:backdrop, - treeview.view.progressbar:selected:backdrop { - background-color: #151724; } - columnview.view.trough, - treeview.view.trough { - background-color: rgba(191, 195, 196, 0.1); } - columnview.view.trough:selected:focus, columnview.view.trough:selected, - treeview.view.trough:selected:focus, - treeview.view.trough:selected { - background-color: #007673; } - columnview.view > header > button, - treeview.view > header > button { - color: #a9b0cc; - background-color: #131520; - font-weight: bold; - text-shadow: none; - box-shadow: none; } - columnview.view > header > button:hover, - treeview.view > header > button:hover { - color: #b4bac8; - box-shadow: none; - transition: none; } - columnview.view > header > button:active, - treeview.view > header > button:active { - color: #BFC3C4; - transition: none; } - columnview.view > header > button sort-indicator, - treeview.view > header > button sort-indicator { - min-height: 16px; - min-width: 16px; } - columnview.view > header > button sort-indicator.ascending, - treeview.view > header > button sort-indicator.ascending { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - columnview.view > header > button sort-indicator.descending, - treeview.view > header > button sort-indicator.descending { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - columnview.view button.dnd:active, columnview.view button.dnd:selected, columnview.view button.dnd:hover, columnview.view button.dnd, - columnview.view header.button.dnd:active, - columnview.view header.button.dnd:selected, - columnview.view header.button.dnd:hover, - columnview.view header.button.dnd, - treeview.view button.dnd:active, - treeview.view button.dnd:selected, - treeview.view button.dnd:hover, - treeview.view button.dnd, - treeview.view header.button.dnd:active, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd { - padding: 0 6px; - color: #FF5370; - background-image: none; - background-color: #00A9A5; - border-style: none; - border-radius: 0; - box-shadow: inset 0 0 0 1px #131520; - text-shadow: none; - transition: none; } - columnview.view acceleditor > label, - treeview.view acceleditor > label { - background-color: #00A9A5; } - -columnview.view > header > button, -treeview.view > header > button, columnview.view > header > button:hover, -treeview.view > header > button:hover, columnview.view > header > button:active, -treeview.view > header > button:active { - padding: 0 6px; - background-image: none; - border-style: none none solid solid; - border-color: #040407; - border-radius: 0; - text-shadow: none; } - columnview.view > header > button:disabled, - treeview.view > header > button:disabled { - border-color: #0F111A; - background-image: none; } - columnview.view > header > button:last-child:backdrop, - treeview.view > header > button:last-child:backdrop, columnview.view > header > button:last-child, - treeview.view > header > button:last-child { - border-right-style: none; } - -/********************** - * Window Decorations * - *********************/ -window { - border-width: 0px; } - window.csd { - box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.75); - margin: 0px; - border-radius: 4px 4px 0 0; } - window.csd:backdrop { - box-shadow: 0 3px 9px 1px transparent, 0 2px 6px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.75); - transition: 200ms ease-out; } - window.csd.popup { - border-radius: 7px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.65); } - window.csd.dialog.message { - border-radius: 4px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.65); } - window.solid-csd { - margin: 0; - padding: 4px; - border: solid 1px #040407; - border-radius: 0; - box-shadow: inset 0 0 0 4px #040407, inset 0 0 0 3px #0a0b11, inset 0 1px rgba(191, 195, 196, 0.07); } - window.solid-csd:backdrop { - box-shadow: inset 0 0 0 4px #040407, inset 0 0 0 3px #0F111A, inset 0 1px rgba(191, 195, 196, 0.07); } - window.maximized, window.fullscreen { - border-radius: 0; - box-shadow: none; } - window.tiled, window.tiled-top, window.tiled-left, window.tiled-right, window.tiled-bottom { - border-radius: 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75), 0 0 0 20px transparent; } - window:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75), 0 0 0 20px transparent; } - window.popup { - box-shadow: none; } - window.ssd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75); } - -windowcontrols button.close, windowcontrols button.maximize, windowcontrols button.minimize { - min-width: 20px; - min-height: 20px; - margin: 0; - padding: 0 1px; - background-position: center; - background-repeat: no-repeat; - background-size: 16px 16px; } - windowcontrols button.close, windowcontrols button.close:hover, windowcontrols button.close:focus, windowcontrols button.close:active, windowcontrols button.close:backdrop, windowcontrols button.close:backdrop:hover, windowcontrols button.maximize, windowcontrols button.maximize:hover, windowcontrols button.maximize:focus, windowcontrols button.maximize:active, windowcontrols button.maximize:backdrop, windowcontrols button.maximize:backdrop:hover, windowcontrols button.minimize, windowcontrols button.minimize:hover, windowcontrols button.minimize:focus, windowcontrols button.minimize:active, windowcontrols button.minimize:backdrop, windowcontrols button.minimize:backdrop:hover { - background-color: transparent; - border: none; - box-shadow: none; - color: transparent; } - windowcontrols button.close:backdrop, windowcontrols button.maximize:backdrop, windowcontrols button.minimize:backdrop { - -gtk-icon-shadow: none; - background-image: -gtk-scaled(url("../assets/close_unfocused.png"), url("../assets/close_unfocused@2.png")); } -windowcontrols button.close { - background-image: -gtk-scaled(url("../assets/close.png"), url("../assets/close@2.png")); } - windowcontrols button.close:hover, windowcontrols button.close:active { - background-image: -gtk-scaled(url("../assets/close_prelight.png"), url("../assets/close_prelight@2.png")); } -windowcontrols button.maximize { - background-image: -gtk-scaled(url("../assets/maximize.png"), url("../assets/maximize@2.png")); } - windowcontrols button.maximize:hover, windowcontrols button.maximize:active { - background-image: -gtk-scaled(url("../assets/maximize_prelight.png"), url("../assets/maximize_prelight@2.png")); } -windowcontrols button.minimize { - background-image: -gtk-scaled(url("../assets/min.png"), url("../assets/min@2.png")); } - windowcontrols button.minimize:hover, windowcontrols button.minimize:active { - background-image: -gtk-scaled(url("../assets/min_prelight.png"), url("../assets/min_prelight@2.png")); } - -headerbar.selection-mode button.titlebutton, -.titlebar.selection-mode button.titlebutton { - text-shadow: 0 -1px rgba(0, 0, 0, 0.7349019608); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.7349019608); } - headerbar.selection-mode button.titlebutton:backdrop, - .titlebar.selection-mode button.titlebutton:backdrop { - -gtk-icon-shadow: none; } - -.view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, -.view text:selected:focus, -iconview text:selected:focus, -textview text:selected:focus, -.view text:selected, -iconview text:selected, -textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, -.menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection, -entry selection:focus, -entry selection, row:selected, columnview.view:selected:focus, columnview.view:selected, -treeview.view:selected:focus, -treeview.view:selected { - background-color: #00A9A5; } - row:selected label, label:selected, .selection-mode windowcontrols button, .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, modelbutton.flat:selected, - .menuitem.button.flat:selected, calendar:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection, - entry selection:focus, - entry selection, row:selected, columnview.view:selected:focus, columnview.view:selected, - treeview.view:selected:focus, - treeview.view:selected { - color: #fefefe; - font-weight: normal; } - row:selected label:disabled, label:disabled:selected, .selection-mode windowcontrols button:disabled, iconview:disabled:selected:focus, .view:disabled:selected, iconview:disabled:selected, - iconview text:disabled:selected:focus, - textview text:disabled:selected:focus, - .view text:disabled:selected, - iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, modelbutton.flat:disabled:selected, - .menuitem.button.flat:disabled:selected, calendar:disabled:selected, spinbutton:not(.vertical) selection:disabled, - entry selection:disabled, row:disabled:selected { - color: #7fd4d2; } - row:selected label:backdrop, label:backdrop:selected, .selection-mode windowcontrols button:backdrop, iconview:backdrop:selected:focus, .view:backdrop:selected, iconview:backdrop:selected, - iconview text:backdrop:selected:focus, - textview text:backdrop:selected:focus, - .view text:backdrop:selected, - iconview text:backdrop:selected, - textview text:backdrop:selected, iconview text selection:backdrop:focus, .view text selection:backdrop, iconview text selection:backdrop, - textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label:backdrop selection, modelbutton.flat:backdrop:selected, - .menuitem.button.flat:backdrop:selected, calendar:backdrop:selected, spinbutton:not(.vertical) selection:backdrop, - entry selection:backdrop, row:backdrop:selected { - color: rgba(254, 254, 254, 0.5); } - row:selected label:backdrop:disabled, label:backdrop:disabled:selected, .selection-mode windowcontrols button:backdrop:disabled, .view:backdrop:disabled:selected, iconview:backdrop:disabled:selected, - .view text:backdrop:disabled:selected, - iconview text:backdrop:disabled:selected, - textview text:backdrop:disabled:selected, .view text selection:backdrop:disabled, iconview text selection:backdrop:disabled, - textview text selection:backdrop:disabled, flowbox flowboxchild:backdrop:disabled:selected, label:disabled selection:backdrop, label:backdrop selection:disabled, modelbutton.flat:backdrop:disabled:selected, - .menuitem.button.flat:backdrop:disabled:selected, calendar:backdrop:disabled:selected, spinbutton:not(.vertical) selection:backdrop:disabled, - entry selection:backdrop:disabled, row:backdrop:disabled:selected { - color: rgba(32, 180, 176, 0.85); } - -.monospace { - font-family: Monospace; } - -/********************** - * DE-Specific Styles * - **********************/ -/********* -* Budgie * -*********/ -.budgie-container { - background-color: transparent; } - .budgie-container:backdrop { - background-color: transparent; } - .budgie-container popover list, - .budgie-container popover row { - border: none; - background: none; - padding: 0; - margin: 0; } - -.budgie-popover .container, -.budgie-popover border, -.budgie-popover list, -.budgie-popover row { - padding: 0; - margin: 0; - background: none; - border: none; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; - opacity: 1; - min-width: 0; - min-height: 0; } - -.budgie-popover, -.budgie-popover.background { - border-radius: 2px; - padding: 0; - background: rgba(0, 0, 0, 0.95); - background-clip: border-box; - box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.35); - border: 1px solid #040407; } - .budgie-popover list:hover, - .budgie-popover row:hover, - .budgie-popover.background list:hover, - .budgie-popover.background row:hover { - background: none; } - .budgie-popover > frame.container, - .budgie-popover.background > frame.container { - margin: 0 -1px -1px; - padding: 2px 0 0; } - .budgie-popover button, - .budgie-popover.background button { - color: #BFC3C4; - border: none; - background: transparent; } - .budgie-popover button:hover, - .budgie-popover.background button:hover { - color: #00A9A5; } - -.budgie-popover > .container { - padding: 2px; } - -.budgie-menu { - color: #BFC3C4; } - .budgie-menu .container { - padding: 0; } - .budgie-menu button:hover { - -gtk-icon-filter: none; } - .budgie-menu entry.search { - border: none; - background: none; - padding: 5px 2px; - border-bottom: 1px solid #040407; - border-radius: 0; - font-size: 120%; - box-shadow: none; - color: #BFC3C4; } - .budgie-menu entry.search image:dir(ltr) { - padding-left: 8px; - padding-right: 12px; } - .budgie-menu entry.search image:dir(rtl) { - padding-left: 12px; - padding-right: 8px; } - .budgie-menu .categories { - border-width: 0; - margin-left: 3px; - background: transparent; } - .budgie-menu .categories:dir(ltr) { - border-right: 1px solid #040407; } - .budgie-menu .categories:dir(rtl) { - border-left: 1px solid #040407; } - .budgie-menu .category-button { - padding: 7px; - border-radius: 2px 0 0 2px; } - .budgie-menu .category-button:hover { - background-color: rgba(191, 195, 196, 0.05); - color: #BFC3C4; } - .budgie-menu .category-button:active { - box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } - .budgie-menu .category-button:checked { - color: #fefefe; - background: #00A9A5; } - .budgie-menu .category-button:checked:hover { - color: rgba(254, 254, 254, 0.6); } - .budgie-menu .category-button:checked:disabled { - opacity: 0.5; } - .budgie-menu .category-button:checked:disabled label { - color: rgba(254, 254, 254, 0.7); } - .budgie-menu scrollbar { - background-color: transparent; - border-color: #040407; } - .budgie-menu button:not(.category-button) { - padding-top: 5px; - padding-bottom: 5px; - border-radius: 0; - box-shadow: none; - background: yellow; } - .budgie-menu button { - border: none; - background: transparent; } - .budgie-menu undershoot, .budgie-menu overshoot { - background: none; } - .budgie-menu list { - color: rgba(191, 195, 196, 0.7); } - -button.budgie-menu-launcher { - padding: 0 2px; - color: #BFC3C4; - box-shadow: none; - background-color: transparent; } - button.budgie-menu-launcher:hover { - color: #BFC3C4; } - button.budgie-menu-launcher:active, button.budgie-menu-launcher:checked { - color: #BFC3C4; } - button.budgie-menu-launcher:backdrop { - color: #BFC3C4; - background-color: transparent; } - button.budgie-menu-launcher:backdrop:hover { - color: #BFC3C4; } - button.budgie-menu-launcher:backdrop:active, button.budgie-menu-launcher:backdrop:checked { - color: #00A9A5; - box-shadow: none; - background-color: #12141f; } - -.user-menu .content-box separator { - margin-left: 6px; - margin-right: 6px; - background-color: rgba(191, 195, 196, 0.1); } -.user-menu button { - margin: 5px; } -.user-menu > box.vertical row.activatable:first-child .indicator-item, -.user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item { - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); - background-color: #00A9A5; - transition-duration: 0.2s; } - .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(ltr), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(ltr) { - padding-left: 7px; - background-position: left center; - background-repeat: no-repeat; - background-size: 38px auto; } - .user-menu > box.vertical row.activatable:first-child .indicator-item:dir(rtl), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item:dir(rtl) { - padding-right: 7px; - background-position: right center; - background-repeat: no-repeat; - background-size: 38px auto; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label { - color: #fefefe; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(ltr), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(ltr) { - padding-left: 5px; } - .user-menu > box.vertical row.activatable:first-child .indicator-item label:dir(rtl), - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item label:dir(rtl) { - padding-right: 5px; } - .user-menu > box.vertical row.activatable:first-child .indicator-item image, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image { - color: #fefefe; } - .user-menu > box.vertical row.activatable:first-child .indicator-item image:first-child, - .user-menu > frame.container > box.vertical row.activatable:first-child .indicator-item image:first-child { - min-width: 24px; - min-height: 20px; } - -button.raven-trigger { - padding-left: 2px; - padding-right: 2px; - color: #BFC3C4; - box-shadow: none; } - button.raven-trigger:hover { - color: #BFC3C4; - background-color: transparent; } - button.raven-trigger:active, button.raven-trigger:checked { - box-shadow: none; - background-color: transparent; - color: #00A9A5; } - button.raven-trigger:backdrop { - color: #BFC3C4; } - button.raven-trigger:backdrop:hover { - color: #BFC3C4; } - button.raven-trigger:backdrop:active, button.raven-trigger:backdrop:checked { - box-shadow: none; - color: #00A9A5; - background-color: transparent; } - -.places-menu .container { - padding: 0; } -.places-menu .message-bar { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } -.places-menu .name-button { - border: 0; - border-radius: 0; - padding: 4px 6px; } -.places-menu .unmount-button { - padding: 4px 4px; - border: 0; - border-radius: 0; } -.places-menu .places-section-header { - padding: 0px; - border-bottom: 1px solid rgba(4, 4, 7, 0.95); - box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.03); } -.places-menu .places-section-header > button { - padding: 8px; - border: none; - border-bottom-left-radius: 0px; - border-bottom-right-radius: 0px; } -.places-menu .places-list { - background: rgba(191, 195, 196, 0.04); - border-bottom: 1px solid rgba(4, 4, 7, 0.95); } -.places-menu .unlock-area { - border-top: 1px solid rgba(4, 4, 7, 0.85); - border-bottom: 1px solid rgba(4, 4, 7, 0.85); } -.places-menu .unlock-area entry { - border-radius: 0; - border: 0; } -.places-menu .unlock-area button { - border-radius: 0; - border: 0; - border-left: 1px solid rgba(4, 4, 7, 0.85); } -.places-menu .alternative-label { - font-size: 15px; - padding: 3px; } -.places-menu .always-expand { - background: transparent; - border-bottom: none; } - -.night-light-indicator .container { - padding: 0; } -.night-light-indicator .view-header { - font-size: 14px; - padding: 10px; - border-bottom: 1px solid mix(@theme_base_color, #000000, 0.35); - box-shadow: 0px 1px 1px alpha(@theme_fg_color, 0.04); } -.night-light-indicator .display-settings-button { - border-top-left-radius: 0px; - border-top-right-radius: 0px; - border: none; - padding: 3px; - border-top: 1px solid mix(@theme_base_color, #000000, 0.35); - box-shadow: inset 0px 1px 1px alpha(@theme_fg_color, 0.04); } - -.budgie-panel { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); - background-image: none; - box-shadow: none; - border: none; - transition: all 150ms ease-in; } - .budgie-panel .alert { - color: #FF5370; } - .budgie-panel:backdrop { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-panel button { - border-top-width: 0; - border-bottom-width: 0; - border-radius: 0; } - .budgie-panel button.flat { - background: transparent; - border: none; } - .budgie-panel button.flat:hover, .budgie-panel button.flat:active, .budgie-panel button.flat:checked { - background: transparent; - color: #00A9A5; } - .budgie-panel popover list, - .budgie-panel popover row { - padding: 0; - margin: 0; } - .budgie-panel label { - color: #BFC3C4; - font-weight: 700; } - .budgie-panel.transparent { - background-color: rgba(0, 0, 0, 0.2); } - .top .budgie-panel.transparent { - border-bottom-color: transparent; } - .bottom .budgie-panel.transparent { - border-top-color: transparent; } - .left .budgie-panel.transparent { - border-right-color: transparent; } - .right .budgie-panel.transparent { - border-left-color: transparent; } - .budgie-panel .end-region { - border-radius: 0px; } - .budgie-panel .end-region separator { - background-color: rgba(191, 195, 196, 0.15); } - .budgie-panel .end-region label { - font-weight: 700; - color: #BFC3C4; } - -.budgie-panel #tasklist-button, -.budgie-panel #tasklist-button:backdrop { - outline-color: transparent; - transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border-color: rgba(0, 0, 0, 0); - border-radius: 0; - background-color: transparent; - box-shadow: none; - background-clip: padding-box; } - -.budgie-panel button.flat.launcher { - outline-color: transparent; - transition: all 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border-color: rgba(0, 0, 0, 0); - border-radius: 0; - padding: 0; - background-clip: padding-box; - background-color: transparent; } - .budgie-panel button.flat.launcher { - box-shadow: none; } - -.budgie-panel #tasklist-button:hover, .budgie-panel .unpinned button.flat.launcher:hover, -.budgie-panel .pinned button.flat.launcher.running:hover { - box-shadow: none; } -.budgie-panel #tasklist-button:active, .budgie-panel .unpinned button.flat.launcher:active, -.budgie-panel .pinned button.flat.launcher.running:active, .budgie-panel #tasklist-button:checked, .budgie-panel .unpinned button.flat.launcher:checked, -.budgie-panel .pinned button.flat.launcher.running:checked { - box-shadow: none; } -.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, -.top .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .top button.flat.launcher.running { - padding-bottom: 2px; - border-top: 2px solid transparent; } - .top .budgie-panel .pinned button.flat.launcher:not(.running) { - border-top: 2px solid transparent; } - - .top .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-top: 2px solid rgba(255, 255, 255, 0.1); } - - .top .budgie-panel .unpinned button.flat.launcher, - .top .budgie-panel .pinned button.flat.launcher.running { - border-top: 2px solid rgba(255, 255, 255, 0.1); } - .top .budgie-panel #tasklist-button:hover, .budgie-panel .top #tasklist-button:hover, .top .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .top button.flat.launcher:hover, - .top .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .top button.flat.launcher.running:hover { - border-top: 2px solid rgba(255, 255, 255, 0.25); } - .top .budgie-panel #tasklist-button:active, .budgie-panel .top #tasklist-button:active, .top .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .top button.flat.launcher:active, - .top .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .top button.flat.launcher.running:active, .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .top button.flat.launcher:checked, - .top .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .top button.flat.launcher.running:checked { - border-top: 2px solid #00A9A5; } -.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, -.bottom .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .bottom button.flat.launcher.running { - padding-top: 2px; - border-bottom: 2px solid transparent; } - .bottom .budgie-panel .pinned button.flat.launcher:not(.running) { - border-bottom: 2px solid transparent; } - - .bottom .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-bottom: 2px solid rgba(255, 255, 255, 0.1); } - - .bottom .budgie-panel .unpinned button.flat.launcher, - .bottom .budgie-panel .pinned button.flat.launcher.running { - border-bottom: 2px solid rgba(255, 255, 255, 0.1); } - .bottom .budgie-panel #tasklist-button:hover, .budgie-panel .bottom #tasklist-button:hover, .bottom .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .bottom button.flat.launcher:hover, - .bottom .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .bottom button.flat.launcher.running:hover { - border-bottom: 2px solid rgba(255, 255, 255, 0.25); } - .bottom .budgie-panel #tasklist-button:active, .budgie-panel .bottom #tasklist-button:active, .bottom .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .bottom button.flat.launcher:active, - .bottom .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .bottom button.flat.launcher.running:active, .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .bottom button.flat.launcher:checked, - .bottom .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .bottom button.flat.launcher.running:checked { - border-bottom: 2px solid #00A9A5; } -.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, -.left .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .left button.flat.launcher.running { - padding-right: 2px; - border-left: 2px solid transparent; } - .left .budgie-panel .pinned button.flat.launcher:not(.running) { - border-left: 2px solid transparent; } - - .left .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-left: 2px solid rgba(255, 255, 255, 0.1); } - - .left .budgie-panel .unpinned button.flat.launcher, - .left .budgie-panel .pinned button.flat.launcher.running { - border-left: 2px solid rgba(255, 255, 255, 0.1); } - .left .budgie-panel #tasklist-button:hover, .budgie-panel .left #tasklist-button:hover, .left .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .left button.flat.launcher:hover, - .left .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .left button.flat.launcher.running:hover { - border-left: 2px solid rgba(255, 255, 255, 0.25); } - .left .budgie-panel #tasklist-button:active, .budgie-panel .left #tasklist-button:active, .left .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .left button.flat.launcher:active, - .left .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .left button.flat.launcher.running:active, .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .left button.flat.launcher:checked, - .left .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .left button.flat.launcher.running:checked { - border-left: 2px solid #00A9A5; } -.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, -.right .budgie-panel .pinned button.flat.launcher.running, -.budgie-panel .pinned .right button.flat.launcher.running { - padding-left: 2px; - border-right: 2px solid transparent; } - .right .budgie-panel .pinned button.flat.launcher:not(.running) { - border-right: 2px solid transparent; } - - .right .budgie-panel .pinned button.flat.launcher:not(.running):hover { - border-right: 2px solid rgba(255, 255, 255, 0.1); } - - .right .budgie-panel .unpinned button.flat.launcher, - .right .budgie-panel .pinned button.flat.launcher.running { - border-right: 2px solid rgba(255, 255, 255, 0.1); } - .right .budgie-panel #tasklist-button:hover, .budgie-panel .right #tasklist-button:hover, .right .budgie-panel .unpinned button.flat.launcher:hover, .budgie-panel .unpinned .right button.flat.launcher:hover, - .right .budgie-panel .pinned button.flat.launcher.running:hover, - .budgie-panel .pinned .right button.flat.launcher.running:hover { - border-right: 2px solid rgba(255, 255, 255, 0.25); } - .right .budgie-panel #tasklist-button:active, .budgie-panel .right #tasklist-button:active, .right .budgie-panel .unpinned button.flat.launcher:active, .budgie-panel .unpinned .right button.flat.launcher:active, - .right .budgie-panel .pinned button.flat.launcher.running:active, - .budgie-panel .pinned .right button.flat.launcher.running:active, .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel .unpinned button.flat.launcher:checked, .budgie-panel .unpinned .right button.flat.launcher:checked, - .right .budgie-panel .pinned button.flat.launcher.running:checked, - .budgie-panel .pinned .right button.flat.launcher.running:checked { - border-right: 2px solid #00A9A5; } - -.top .budgie-panel { - border-bottom: 1px solid rgba(0, 0, 0, 0.92); } - -.top .raven-frame { - padding: 0; - background: none; } - .top .raven-frame border { - border: none; - border-bottom: 1px solid rgba(4, 4, 7, 0.92); } - -.top .shadow-block { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent); } - -.bottom .budgie-panel { - border-top: 1px solid rgba(0, 0, 0, 0.92); } - -.bottom .raven-frame { - padding: 0; - background: none; } - .bottom .raven-frame border { - border: none; - border-top: 1px solid rgba(4, 4, 7, 0.92); } - -.bottom .shadow-block { - background-color: transparent; - background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); } - -.left .budgie-panel { - border-right: 1px solid rgba(0, 0, 0, 0.92); } - -.left .raven-frame { - padding: 0; - background: none; } - .left .raven-frame border { - border: none; - border-right: 1px solid rgba(4, 4, 7, 0.92); } - -.left .shadow-block { - background-color: transparent; - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent); } - -.right .budgie-panel { - border-left: 1px solid rgba(0, 0, 0, 0.92); } - -.right .raven-frame { - padding: 0; - background: none; } - .right .raven-frame border { - border: none; - border-left: 1px solid rgba(4, 4, 7, 0.92); } - -.right .shadow-block { - background-color: transparent; - background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent); } - -.raven { - padding: 0; - color: #FF5370; - background: rgba(0, 0, 0, 0.95); - transition: 170ms ease-out; } - .raven .raven-header { - min-height: 32px; - color: #BFC3C4; - border: solid rgba(4, 4, 7, 0.95); - border-width: 1px 0; - background-color: rgba(28, 31, 48, 0.45); } - .raven .raven-header * { - padding-top: 0; - padding-bottom: 0; } - .raven .raven-header.top { - border-top-style: none; - border-color: transparent; - margin-top: 3px; - min-height: 32px; } - .raven .raven-header.top button.image-button:hover { - color: #00908c; - box-shadow: none; } - .raven .raven-header > button.text-button { - border-radius: 2px; - color: #fefefe; - background-color: rgba(255, 58, 91, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header > button.text-button:hover { - border-radius: 2px; - color: #fefefe; - background-color: rgba(255, 83, 112, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header > button.text-button:active { - color: #fefefe; - background-color: rgba(255, 109, 133, 0.9); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1); } - .raven .raven-header.bottom { - border-bottom-style: none; } - .raven .raven-header button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0; } - .raven .raven-header button:hover { - color: #00A9A5; - border-radius: 0; - text-shadow: none; - background-image: linear-gradient(to bottom, #131520, #0F111A); - border-radius: 0; } - .raven .raven-header button:active, .raven .raven-header button:checked { - color: #00A9A5; - background-color: #090b10; } - .raven .raven-header button:disabled { - color: #676a6f; } - .raven list { - color: #BFC3C4; - background-color: transparent; } - .raven list:selected { - background-color: rgba(0, 169, 165, 0.9); } - .raven list row, - .raven list row.activatable { - background-color: transparent; } - .raven list row:hover, - .raven list row.activatable:hover { - background-color: rgba(28, 31, 48, 0.25); } - .raven list row:selected, - .raven list row.activatable:selected { - background-color: rgba(0, 169, 165, 0.9); } - .raven .raven-background { - color: #BFC3C4; - background-color: transparent; - border-color: transparent; } - .raven .raven-background.middle { - border-bottom-style: none; } - .raven .powerstrip { - background-color: transparent; - border-top-color: transparent; } - .raven .powerstrip button.image-button { - border-radius: 50%; - padding: 5px; - min-width: 32px; - min-height: 32px; - margin-bottom: 3px; - background: #C792EA; - color: #fefefe; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); - border: none; - font-size: 100%; } - .raven .powerstrip button.image-button:hover { - background: rgba(199, 146, 234, 0.85); - color: #fefefe; } - .raven .powerstrip button.image-button:active { - background: #C792EA; - color: #fefefe; } - .raven .powerstrip button.image-button:first-child { - background: #00A9A5; } - .raven .powerstrip button.image-button:first-child:hover { - background: rgba(0, 169, 165, 0.85); } - .raven .powerstrip button.image-button:first-child:active { - background: #00A9A5; } - .raven .powerstrip button.image-button:last-child { - background: linear-gradient(to right, #FF5370, #FF5370); } - .raven .powerstrip button.image-button:last-child:hover { - background: rgba(255, 83, 112, 0.85); } - .raven .powerstrip button.image-button:last-child:active { - background: #FF5370; } - .raven .option-subtitle { - font-size: 13px; } - -calendar.raven-calendar { - padding: 4px; - color: #BFC3C4; - background: transparent; - border-color: transparent; } - calendar.raven-calendar:indeterminate { - color: alpha(currentColor,0.3); } - calendar.raven-calendar:selected { - background: transparent; - color: #009591; - font-weight: bold; } - calendar.raven-calendar:backdrop { - background-color: transparent; } - calendar.raven-calendar.header { - color: #BFC3C4; - border: none; - border-radius: 0; - background-color: transparent; } - calendar.raven-calendar button, calendar.raven-calendar button:focus { - color: alpha(currentColor,0.5); - background-color: transparent; } - calendar.raven-calendar button:hover, calendar.raven-calendar button:focus:hover { - color: #BFC3C4; - background-color: transparent; } - -.raven-mpris { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.9); - border: solid rgba(255, 255, 255, 0.1); - border-width: 1px 0; - border-bottom-color: rgba(0, 0, 0, 0.1); } - .raven-mpris button.image-button { - padding: 10px; - background-color: #131520; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1); } - .raven-mpris button.image-button:hover { - background-color: #00A9A5; } - .raven-mpris button.image-button:active { - background-color: #00908c; } - .raven-mpris button.image-button:first-child { - margin-right: 4px; } - .raven-mpris button.image-button:last-child { - margin-left: 4px; } - .raven-mpris button.image-button:last-child, .raven-mpris button.image-button:first-child { - padding: 4px; - margin-top: 6px; - margin-bottom: 6px; } - -.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { - background: none; - border-radius: 1px; } - .budgie-notification-window button, .budgie-osd-window button, .budgie-switcher-window button { - background-color: #00A9A5; - color: #fefefe; - border: none; } - .budgie-notification-window button:hover, .budgie-osd-window button:hover, .budgie-switcher-window button:hover { - background-color: #00908c; - border: none; } - .budgie-notification-window button:active, .budgie-osd-window button:active, .budgie-switcher-window button:active, .budgie-notification-window button:checked, .budgie-osd-window button:checked, .budgie-switcher-window button:checked { - background-color: #00908c; } - -.budgie-notification.background, .background.budgie-osd, .background.budgie-switcher { - border-radius: 1px; } -.budgie-notification .notification-title, .budgie-osd .notification-title, .budgie-switcher .notification-title { - font-size: 110%; - color: #BFC3C4; } -.budgie-notification .notification-body, .budgie-osd .notification-body, .budgie-switcher .notification-body { - color: rgba(191, 195, 196, 0.7); } -.budgie-notification button, .budgie-osd button, .budgie-switcher button { - background-color: transparent; - color: #fefefe; } - .budgie-notification button:hover, .budgie-osd button:hover, .budgie-switcher button:hover { - background-color: transparent; - color: #FF5370; - box-shadow: none; } - .budgie-notification button:active, .budgie-osd button:active, .budgie-switcher button:active, .budgie-notification button:checked, .budgie-osd button:checked, .budgie-switcher button:checked { - background-color: transparent; - color: #ff3a5b; } - -.drop-shadow, .budgie-session-dialog.background, .background.budgie-polkit-dialog, .background.budgie-run-dialog { - color: #BFC3C4; - background-color: rgba(15, 17, 26, 0.95); - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); - border-radius: 2px; } - -.budgie-switcher-window flowbox { - color: #BFC3C4; } -.budgie-switcher-window flowboxchild { - padding: 3px; - margin: 3px; - color: #BFC3C4; } - .budgie-switcher-window flowboxchild:hover { - background-color: transparent; } - .budgie-switcher-window flowboxchild:active { - color: #BFC3C4; } - .budgie-switcher-window flowboxchild:selected { - color: #fefefe; - background-color: rgba(0, 169, 165, 0.5); } - .budgie-switcher-window flowboxchild:selected:active { - color: #fefefe; } - .budgie-switcher-window flowboxchild:selected:hover { - background-color: #009895; } - .budgie-switcher-window flowboxchild:selected:disabled { - color: rgba(254, 254, 254, 0.7); - background-color: rgba(0, 169, 165, 0.7); } - .budgie-switcher-window flowboxchild:selected:disabled label { - color: rgba(254, 254, 254, 0.7); } - -.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { - color: #BFC3C4; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-session-dialog label:backdrop, .budgie-polkit-dialog label:backdrop, .budgie-run-dialog label:backdrop { - color: rgba(191, 195, 196, 0.8); } - .budgie-session-dialog .dialog-title, .budgie-polkit-dialog .dialog-title, .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 { - margin-bottom: 0; - min-height: 32px; - border-bottom: none; - border-color: #040407; - border-radius: 0; - color: #BFC3C4; - background-color: transparent; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(0, 0, 0, 0.2); } - .budgie-session-dialog .linked.horizontal > button label, .budgie-polkit-dialog .linked.horizontal > button label, .budgie-run-dialog .linked.horizontal > button label { - font-weight: 700; } - .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-left: none; - border-bottom-left-radius: 2px; } - .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-right: none; - border-bottom-right-radius: 2px; - background: transparent; } - .budgie-session-dialog .linked.horizontal > button:hover, .budgie-polkit-dialog .linked.horizontal > button:hover, .budgie-run-dialog .linked.horizontal > button:hover { - background-color: rgba(0, 169, 165, 0.9); } - .budgie-session-dialog .linked.horizontal > button:hover:backdrop label, .budgie-polkit-dialog .linked.horizontal > button:hover:backdrop label, .budgie-run-dialog .linked.horizontal > button:hover:backdrop label { - color: rgba(255, 255, 255, 0.5); } - .budgie-session-dialog .linked.horizontal > button.suggested-action, .budgie-polkit-dialog .linked.horizontal > button.suggested-action, .budgie-run-dialog .linked.horizontal > button.suggested-action { - background: linear-gradient(to right, #FF5370 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.suggested-action:hover, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:hover, .budgie-run-dialog .linked.horizontal > button.suggested-action:hover { - background: linear-gradient(to right, #ff2a4e 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.suggested-action:active, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:active, .budgie-run-dialog .linked.horizontal > button.suggested-action:active, .budgie-session-dialog .linked.horizontal > button.suggested-action:checked, .budgie-polkit-dialog .linked.horizontal > button.suggested-action:checked, .budgie-run-dialog .linked.horizontal > button.suggested-action:checked { - background: linear-gradient(to right, #ff2a4e 0%, #00A9A5 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action, .budgie-polkit-dialog .linked.horizontal > button.destructive-action, .budgie-run-dialog .linked.horizontal > button.destructive-action { - background: linear-gradient(to right, #FF5370 0%, #ff2046 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action:hover, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:hover, .budgie-run-dialog .linked.horizontal > button.destructive-action:hover { - background: linear-gradient(to right, #ff2a4e 0%, #ff2046 100%); } - .budgie-session-dialog .linked.horizontal > button.destructive-action:active, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:active, .budgie-run-dialog .linked.horizontal > button.destructive-action:active, .budgie-session-dialog .linked.horizontal > button.destructive-action:checked, .budgie-polkit-dialog .linked.horizontal > button.destructive-action:checked, .budgie-run-dialog .linked.horizontal > button.destructive-action:checked { - background: linear-gradient(to right, #ff2a4e 0%, #ff2046 100%); } - .budgie-session-dialog entry, .budgie-polkit-dialog entry, .budgie-run-dialog entry { - background-color: #505359; - color: #BFC3C4; } - .budgie-session-dialog entry:focus, .budgie-polkit-dialog entry:focus, .budgie-run-dialog entry:focus { - background-color: #505359; } - .budgie-session-dialog entry:backdrop, .budgie-polkit-dialog entry:backdrop, .budgie-run-dialog entry:backdrop { - background-color: #505359; } - -.budgie-polkit-dialog .message { - color: rgba(191, 195, 196, 0.7); } -.budgie-polkit-dialog .failure { - color: #FF5370; } - -.budgie-run-dialog entry.search, .budgie-run-dialog entry.search:focus { - font-size: 120%; - padding: 8px 5px; - border: none; - box-shadow: none; } - .budgie-run-dialog entry.search image, .budgie-run-dialog entry.search:focus image { - color: #BFC3C4; } - .budgie-run-dialog entry.search image:dir(ltr), .budgie-run-dialog entry.search:focus image:dir(ltr) { - padding-left: 8px; - padding-right: 12px; } - .budgie-run-dialog entry.search image:dir(rtl), .budgie-run-dialog entry.search:focus image:dir(rtl) { - padding-left: 12px; - padding-right: 8px; } -.budgie-run-dialog list row:selected .dim-label, .budgie-run-dialog list row:selected label.separator, .budgie-run-dialog list row:selected .titlebar .subtitle, .titlebar .budgie-run-dialog list row:selected .subtitle, -.budgie-run-dialog list row:selected headerbar .subtitle, -headerbar .budgie-run-dialog list row:selected .subtitle { - opacity: 1; } -.budgie-run-dialog scrolledwindow { - border-top: 1px solid rgba(0, 0, 0, 0); } - -.budgie-menubar menu { - margin: 4px; - padding: 5px; - border-radius: 0; - background-color: rgba(0, 0, 0, 0.95); } - .budgie-menubar menu menuitem:hover { - background-color: #00A9A5; - color: #fefefe; } -.budgie-menubar arrow { - border: none; - min-width: 16px; - min-height: 16px; } - .budgie-menubar arrow.top { - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); - border-bottom: 1px solid rgba(31, 32, 38, 0.928); } - .budgie-menubar arrow.bottom { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - border-top: 1px solid rgba(31, 32, 38, 0.928); } -.budgie-menubar menuitem accelerator { - color: rgba(191, 195, 196, 0.35); } -.budgie-menubar menuitem check, .budgie-menubar menuitem radio { - min-height: 16px; - min-width: 16px; } - -window.background.budgie-settings-window.csd > box.horizontal > stack > scrolledwindow buttonbox.inline-toolbar { - border-style: none none solid; } - -.workspace-switcher .workspace-layout { - border: 0 solid rgba(0, 0, 0, 0.95); } - .top .workspace-switcher .workspace-layout:dir(ltr), .bottom .workspace-switcher .workspace-layout:dir(ltr) { - border-left-width: 1px; } - .top .workspace-switcher .workspace-layout:dir(rtl), .bottom .workspace-switcher .workspace-layout:dir(rtl) { - border-right-width: 1px; } - .left .workspace-switcher .workspace-layout, .right .workspace-switcher .workspace-layout { - border-top-width: 1px; } -.workspace-switcher .workspace-item, .workspace-switcher .workspace-add-button { - border: 0 solid rgba(19, 21, 32, 0.95); } - .top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr), - .top .workspace-switcher .workspace-add-button:dir(ltr), .bottom .workspace-switcher .workspace-add-button:dir(ltr) { - border-right-width: 1px; } - .top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl), - .top .workspace-switcher .workspace-add-button:dir(rtl), .bottom .workspace-switcher .workspace-add-button:dir(rtl) { - border-left-width: 1px; } - .left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item, .left .workspace-switcher .workspace-add-button, .right .workspace-switcher .workspace-add-button { - border-bottom-width: 1px; } -.workspace-switcher .workspace-item.current-workspace { - background-color: rgba(0, 0, 0, 0.95); } -.workspace-switcher .workspace-add-button { - border: none; - background: transparent; } - .workspace-switcher .workspace-add-button:hover { - box-shadow: none; } - .workspace-switcher .workspace-add-button:active { - background-image: none; } - .workspace-switcher .workspace-add-button:active image { - margin: 1px 0 -1px; } -.budgie-panel .workspace-switcher .workspace-icon-button { - min-height: 24px; - min-width: 24px; - padding: 0; - border-radius: 2px; } - -/************ - * Nautilus * - ************/ -.nautilus-window .frame *:selected, .nautilus-window .frame *:selected:backdrop { - background: transparent; - color: #00A9A5; } - .nautilus-window .frame *:selected label, .nautilus-window .frame *:selected:backdrop label { - color: #00A9A5; } -.nautilus-window paned > separator { - background-image: none; } -.nautilus-window .sidebar { - background-color: transparent; } - .nautilus-window .sidebar:backdrop { - background-color: transparent; } - .nautilus-window .sidebar .list-row button { - border: none; - background-color: rgba(13, 15, 23, 0.95); } - .nautilus-window .sidebar .list-row button:active { - background-color: rgba(0, 169, 165, 0.75); } - .nautilus-window .sidebar .list-row:selected { - background-color: rgba(0, 169, 165, 0.75); } - .nautilus-window .sidebar .list-row:selected:hover { - background-color: rgba(0, 169, 165, 0.9); } - .nautilus-window .sidebar .list-row:hover { - background-color: rgba(19, 21, 32, 0.5); } - .nautilus-window .sidebar .list-row:hover:active { - background-color: rgba(0, 169, 165, 0.9); } -.nautilus-window.background { - background-color: rgba(13, 15, 23, 0.95); } - .nautilus-window.background:backdrop { - background-color: rgba(13, 15, 23, 0.95); } -.nautilus-window #NautilusPathBar { - height: 20px; - margin-top: 7px; - margin-bottom: 7px; - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); } - .nautilus-window #NautilusPathBar .dim-label, .nautilus-window #NautilusPathBar label.separator, .nautilus-window #NautilusPathBar .titlebar .subtitle, .titlebar .nautilus-window #NautilusPathBar .subtitle, - .nautilus-window #NautilusPathBar headerbar .subtitle, - headerbar .nautilus-window #NautilusPathBar .subtitle { - color: transparent; - margin-right: -5px; } - .nautilus-window #NautilusPathBar button .horizontal > .dim-label, .nautilus-window #NautilusPathBar button .horizontal > label.separator, .nautilus-window #NautilusPathBar button .titlebar .horizontal > .subtitle, .titlebar .nautilus-window #NautilusPathBar button .horizontal > .subtitle, - .nautilus-window #NautilusPathBar button headerbar .horizontal > .subtitle, - headerbar .nautilus-window #NautilusPathBar button .horizontal > .subtitle { - color: #BFC3C4; - padding: 3px 12px; - margin: 0; - border-right: 1px solid #040407; } - .nautilus-window #NautilusPathBar button:hover .dim-label, .nautilus-window #NautilusPathBar button:hover label.separator, .nautilus-window #NautilusPathBar button:hover .titlebar .subtitle, .titlebar .nautilus-window #NautilusPathBar button:hover .subtitle, - .nautilus-window #NautilusPathBar button:hover headerbar .subtitle, - headerbar .nautilus-window #NautilusPathBar button:hover .subtitle, .nautilus-window #NautilusPathBar button:focus .dim-label, .nautilus-window #NautilusPathBar button:focus label.separator, .nautilus-window #NautilusPathBar button:focus .titlebar .subtitle, .titlebar .nautilus-window #NautilusPathBar button:focus .subtitle, - .nautilus-window #NautilusPathBar button:focus headerbar .subtitle, - headerbar .nautilus-window #NautilusPathBar button:focus .subtitle { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } - .nautilus-window #NautilusPathBar button > .horizontal > image.dim-label, .nautilus-window #NautilusPathBar .titlebar button > .horizontal > image.subtitle, .titlebar .nautilus-window #NautilusPathBar button > .horizontal > image.subtitle, - .nautilus-window #NautilusPathBar headerbar button > .horizontal > image.subtitle, - headerbar .nautilus-window #NautilusPathBar button > .horizontal > image.subtitle { - padding: 3px 0px 3px 12px; - border-right: none; - margin-right: -6px; } - .nautilus-window #NautilusPathBar button { - background: transparent; - border: none; - margin: 0; - padding: 0; } - .nautilus-window #NautilusPathBar .current-dir label { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; - padding: 1px 12px; } - .nautilus-window #NautilusPathBar .current-dir image { - background-color: rgba(8, 9, 13, 0.93); - border-bottom: 1px solid #00A9A5; } - .nautilus-window #NautilusPathBar button.current-dir:only-child image { - margin-right: -6px; - padding: 0px 0px 0px 12px; - border-radius: 4px 0px 0px 4px; } -.nautilus-window #NautilusQueryEditor { - margin-top: 8px; - margin-bottom: 8px; } - .nautilus-window #NautilusQueryEditor #NautilusQueryEditorTag > button { - margin: 0; } - .nautilus-window #NautilusQueryEditor > menubutton > button { - min-width: 16px; - min-height: 16px; - margin: 0; - -gtk-icon-size: 12px; - padding: 0 4px; } - .nautilus-window #NautilusQueryEditor > text, .nautilus-window #NautilusQueryEditor > image { - margin: 0; } -.nautilus-window notebook > stack:only-child { - background-color: #131520; } - .nautilus-window notebook > stack:only-child:backdrop { - background-color: #151724; } -.nautilus-window searchbar { - border-top: 1px solid rgba(0, 0, 0, 0.12); } -.nautilus-window .searchbar-container { - margin-top: -1px; } -.nautilus-window .linked:not(.vertical) > entry { - border-radius: 10px; - margin-right: 5px; } - .nautilus-window .linked:not(.vertical) > entry:focus { - border-color: rgba(0, 169, 165, 0.3); } - .nautilus-window .linked:not(.vertical) > entry:focus + button { - border-left-color: #040407; } - -.nautilus-circular-button { - border-radius: 20px; } - -.disk-space-display { - border: 2px solid; } - .disk-space-display .unknown { - background-color: #888a85; - border-color: #555653; } - .disk-space-display .used { - background-color: #9FB0B9; - border-color: #667f8c; } - .disk-space-display .free { - background-color: #D8D8D8; - border-color: #a5a5a5; } - -.nautilus-desktop { - color: #BFC3C4; } - .nautilus-desktop .nautilus-canvas-item { - border-radius: 5px; - color: #fefefe; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop .nautilus-canvas-item:active { - color: #BFC3C4; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item:hover { - color: #BFC3C4; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item:selected { - color: #fefefe; - text-shadow: none; } - .nautilus-desktop .nautilus-canvas-item .dim-label:selected, .nautilus-desktop .nautilus-canvas-item label.separator:selected, .nautilus-desktop .nautilus-canvas-item .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-canvas-item .subtitle:selected, - .nautilus-desktop .nautilus-canvas-item headerbar .subtitle:selected, - headerbar .nautilus-desktop .nautilus-canvas-item .subtitle:selected { - color: #fefefe; } - .nautilus-desktop .nautilus-list .dim-label:selected, .nautilus-desktop .nautilus-list label.separator:selected, .nautilus-desktop .nautilus-list .titlebar .subtitle:selected, .titlebar .nautilus-desktop .nautilus-list .subtitle:selected, - .nautilus-desktop .nautilus-list headerbar .subtitle:selected, - headerbar .nautilus-desktop .nautilus-list .subtitle:selected { - color: #fefefe; } - -/********* - * Gedit * - *********/ -.gedit-search-slider { - padding: 4px; - border-radius: 0 0 3px 3px; - border: 0; - background-color: #0F111A; } - - /********* - * Gnucash * -*********/ -#gnc-id-main-window entry.gnc-class-register-foreground { - background: transparent; - border: none; - box-shadow: none; } -#gnc-id-main-window .arrow.button.toggle { - transition: none; - box-shadow: none; } - #gnc-id-main-window .arrow.button.toggle:hover { - border-color: #00A9A5; } - -/******** - * Gala * - *******/ -.gala-notification { - border-width: 0; - border-radius: 2px; - color: white; - border: 1px solid #131520; - background-color: #131520; } - .gala-notification .title, - .gala-notification .label { - color: #BFC3C4; } - -.gala-button { - padding: 3px; - color: #131520; - border: none; - border-radius: 50%; - background-image: linear-gradient(to bottom, #7e7e7e, #3e3e3e); - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.98), inset 0 1px 0 0 rgba(255, 255, 255, 0.93), inset 0 -1px 0 0 rgba(255, 255, 255, 0.99), 0 0 0 1px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.84), 0 3px 6px rgba(0, 0, 0, 0.77); - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -/********** - * Notify * - *********/ -.notify { - /*-notify-shadow: 0px 2px 18px transparentize(black, 0.60);*/ - border-radius: 5px; - border: 1px solid rgba(0, 0, 0, 0.7); - background-color: rgba(19, 21, 32, 0.05); } - -/*************** - * SwitchBoard * - ***************/ -.category-label { - font-weight: bold; - color: #BFC3C4; } - -/************* - * Slingshot * - ************/ -.button.app { - border: none; - border-radius: 0; - box-shadow: none; - background-image: none; } - .button.app .app:hover { - border-radius: 8px; - border: none; - background-color: rgba(0, 169, 165, 0.3); - color: white; } - .button.app .app:focus { - /*background-color: transparentize(black, 0.20);*/ } - -.search-item { - border-radius: 0; - border: none; - color: #BFC3C4; - background: none; } - .search-item:hover, .search-item:focus { - border-radius: 0; - background-color: rgba(0, 169, 165, 0.3); - color: #fefefe; } - -.search-entry-large, -.search-entry-large:focus { - border: none; - font-size: 18px; - font-weight: 300; - background-image: none; - background: none; - box-shadow: none; - border-radius: 0; } - -.search-category-header { - font-weight: bold; - color: #BFC3C4; } - -/********* - * Panel * - ********/ -.panel { - background-color: transparent; - transition: all 100ms ease-in-out; } - .panel.maximized { - background-color: #131520; } - .panel.translucent { - background-color: rgba(19, 21, 32, 0.5); } - .panel.color-light.translucent { - background-color: rgba(255, 255, 255, 0.85); } - -menubar.panel, -.panel menubar { - box-shadow: none; - border: none; } - -.composited-indicator > revealer, -.composited-indicator > revealer image, -.composited-indicator > revealer label, -.composited-indicator > revealer spinner { - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); - transition: all 200ms ease-in-out; - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.5); } -.composited-indicator > revealer image:first-child + label { - margin-left: 5px; } - -.panel.color-light .composited-indicator > revealer, -.panel.color-light .composited-indicator > revealer image, -.panel.color-light .composited-indicator > revealer label, -.panel.color-light .composited-indicator > revealer spinner { - color: rgba(0, 0, 0, 0.6); - text-shadow: 0 1px rgba(255, 255, 255, 0.1); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.1); } - -/************** - * Calculator * - **************/ -PantheonCalculatorMainWindow { - border-radius: 0 0 4px 4px; } - PantheonCalculatorMainWindow .window-frame { - border-radius: 3px; } - -/********* - * Cards * - *********/ -.deck { - background-color: black; } - -.card { - background-color: #131520; - border: none; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 3px 3px rgba(0, 0, 0, 0.2); - transition: all 150ms ease-in-out; } - -.card.collapsed { - background-color: #090b10; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.2); } - -/********* - * Noise * - *********/ -NoiseLibraryWindow { - border-radius: 0 0 4px 4px; } - NoiseLibraryWindow .action-bar { - border-radius: 0 0 4px 4px; } - NoiseLibraryWindow .window-frame { - border-radius: 3px; } - -/******** - * Snap * - ********/ -SnapMainWindow .take-button, -SnapSnapWindow .take-button { - border-radius: 0; } - -/******************* - * Photos/Shotwell * - *******************/ -DirectWindow .the-button-in-the-combobox, -LibraryWindow .the-button-in-the-combobox { - background: none; } - -.checkerboard-layout { - background-color: #0F111A; - background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)); - background-size: 24px 24px; - background-position: 0 0, 12px 12px; } - -.checkboard-layout .item { - background-color: #BFC3C4; } - -/********* -* Avatar * -*********/ -.avatar { - border: 1px solid rgba(0, 0, 0, 0.23); - border-radius: 50%; - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 0 rgba(255, 255, 255, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.23); } - -/**level bars**/ -.sidebar .source-list.view.level-bar, .sidebar iconview.source-list.level-bar, .sidebar .source-list.view.level-bar:selected, .sidebar iconview.source-list.level-bar:selected, .sidebar .source-list.view.level-bar:selected:focus, .sidebar iconview.source-list.level-bar:selected:focus { - background: linear-gradient(to right, #292f47, #292f47); - border: 1px solid rgba(0, 0, 0, 0.14); - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); - border-radius: 2px; } -.sidebar .source-list.view.level-bar.fill-block, .sidebar iconview.source-list.level-bar.fill-block { - border: none; } -.sidebar .source-list.view.fill-block, .sidebar iconview.source-list.fill-block, .sidebar .source-list.view.fill-block:hover, .sidebar iconview.source-list.fill-block:hover, .sidebar .source-list.view.fill-block:selected, .sidebar iconview.source-list.fill-block:selected, .sidebar .source-list.view.fill-block:selected:focus, .sidebar iconview.source-list.fill-block:selected:focus { - background: linear-gradient(to right, #FFCB6B, #FFCB6B); } - -/************************** - * Colors in context menu * -**************************/ -checkbutton.color-button { - border: 1px solid #040407; - border-radius: 100px; - background-clip: border-box; - padding: 0; - margin: 2px 1px; } - checkbutton.color-button > check { - -gtk-icon-source: none; - background: none; - margin-right: 0; - padding: 2px; } - checkbutton.color-button.none > check { - background-color: transparent; - border-radius: 100px; - -gtk-icon-source: -gtk-icontheme("close-symbolic"); } - -radiobutton.color-button > radio { - -gtk-icon-source: none; - margin-right: 0; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 100px; - background-clip: border-box; } -radiobutton.color-button:active > radio { - border: 1px solid rgba(0, 0, 0, 0.35); } - -.color-button check, -.color-button check:checked, -.color-button radio, -.color-button radio:checked { - background-image: none; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 50%; - color: #131520; - -gtk-icon-source: -gtk-icontheme("check-active-symbolic"); } -.color-button.red check, .color-button.red radio, .color-button.strawberry check, .color-button.strawberry radio { - background-color: @STRAWBERRY_300; - -gtk-icon-shadow: 0 1px 1px @STRAWBERRY_500; } -.color-button.orange check, .color-button.orange radio { - background-color: @ORANGE_300; - -gtk-icon-shadow: 0 1px 1px @ORANGE_500; } -.color-button.yellow check, .color-button.yellow radio, .color-button.banana check, .color-button.banana radio { - background-color: @BANANA_500; - -gtk-icon-shadow: 0 1px 1px @BANANA_700; } -.color-button.green check, .color-button.green radio, .color-button.lime check, .color-button.lime radio { - background-color: @LIME_500; - -gtk-icon-shadow: 0 1px 1px @LIME_700; } -.color-button.blue check, .color-button.blue radio, .color-button.blueberry check, .color-button.blueberry radio { - background-color: @BLUEBERRY_500; - -gtk-icon-shadow: 0 1px 1px @BLUEBERRY_700; } -.color-button.purple check, .color-button.purple radio, .color-button.grape check, .color-button.grape radio { - background-color: @GRAPE_500; - -gtk-icon-shadow: 0 1px 1px @GRAPE_700; } -.color-button.brown check, .color-button.brown radio, .color-button.cocoa check, .color-button.cocoa radio { - background-color: @COCOA_300; - -gtk-icon-shadow: 0 1px 1px @COCOA_500; } -.color-button.mint check, .color-button.mint radio { - background-color: @MINT_500; - -gtk-icon-shadow: 0 1px 1px @MINT_700; } -.color-button.pink check, .color-button.pink radio, .color-button.bubblegum check, .color-button.bubblegum radio { - background-color: @BUBBLEGUM_500; - -gtk-icon-shadow: 0 1px 1px @BUBBLEGUM_700; } -.color-button.slate check, .color-button.slate radio { - background-color: @SLATE_300; - -gtk-icon-shadow: 0 1px 1px @SLATE_500; } -.color-button.auto radio { - background-image: url("assets/color-button-auto.png"); - background-position: -1px -1px; - background-repeat: no-repeat; - background-size: calc(100% + 2px); } - -.xfce4-panel.panel { - background-color: #131520; - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(255, 255, 255, 0.8); - border-radius: 0; - border: none; - background-color: rgba(19, 21, 32, 0); } - #tasklist-button:hover { - color: white; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #00A9A5; } - -.xfce4-panel.panel button.flat { - color: white; - border-radius: 0; - border: none; - background-color: rgba(19, 21, 32, 0); } - .xfce4-panel.panel button.flat:hover { - border: none; - background-color: #252a41; } - .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.flat:checked { - color: #fefefe; - border-bottom: 2px solid #00A9A5; - background-color: #1c2031; } - .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.flat:checked image { - color: inherit; } - -#whiskermenu-window button { - background-color: transparent; - border: none; - border-radius: 0; - font-weight: normal; - padding: 3px; - margin: 1px 2px; } - #whiskermenu-window button:hover, #whiskermenu-window button:checked { - background-color: #00A9A5; } - -/******** -* Unity * -*********/ -/* Unity window border color */ -/* Unity window text color */ -/* Backdrop Unity window text color */ -/* Unity panel color #454D50 */ -UnityDecoration { - background-color: #eeeeee; - color: #31363D; } - UnityDecoration .top { - padding: 0 5px 0 5px; - border-radius: 4px 4px 0px 0px; - box-shadow: none; - border: 1px solid #eeeeee; - border-bottom-width: 0; - background-color: #eeeeee; - color: #31363D; - border-top: 1px solid rgba(255, 255, 255, 0.1); } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: #1a1d21; - border-top: 1px solid rgba(255, 255, 255, 0.1); } - UnityDecoration .top .menuitem { - color: #31363D; } - UnityDecoration .top .menuitem:backdrop { - color: #1a1d21; } - -UnityDecoration.left, -UnityDecoration.right { - background-repeat: repeat-x; - background-color: #ececec; - background-size: 1px 120px; - background-clip: border-box; - background-image: linear-gradient(to bottom, #eeeeee, #ececec); } - -UnityDecoration.bottom { - background-size: 1px; - background-repeat: repeat-x; - background-color: #ececec; } - -UnityDecoration.left:backdrop, -UnityDecoration.right:backdrop, -UnityDecoration.bottom:backdrop { - background-size: 1px; - background-repeat: repeat-x; } - -/************** -* Unity Panel * -***************/ -UnityPanelWidget, -.unity-panel { - background-color: #d5d5d5; - color: #31363D; } - -UnityPanelWidget:backdrop, -.unity-panel:backdrop { - color: #1a1d21; } - -.unity-panel.menuitem, -.unity-panel .menuitem { - border-width: 0 1px; - color: #31363D; } - -.unity-panel.menubar, -.unity-panel .menubar { - color: #31363D; } - -.unity-panel.menu.menubar, -.unity-panel .menu .menubar { - background-color: #d5d5d5; - color: #31363D; } - -.unity-panel.menubar:backdrop, -.unity-panel .menubar *:backdrop { - color: #676a6f; } - -.unity-panel.menubar.menuitem, -.unity-panel.menubar .menuitem { - padding: 3px 5px; - border-width: 1px; - border-style: solid; - border: none; - background: none; - color: #31363D; - box-shadow: none; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem:hover { - border-radius: 0; - background-color: #ebebeb; - color: #31363D; - box-shadow: none; } - -.unity-panel.menubar .menuitem *:hover { - color: white; - box-shadow: none; } - -.unity-panel.menubar .menuitem.separator, -.unity-panel.menubar.menuitem.separator { - border: none; - color: #040407; } - -/* Force Quit */ -SheetStyleDialog.unity-force-quit { - background-color: #131520; } - -@keyframes playbackmenuitem_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } -.menu IdoPlaybackMenuItem.menuitem:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: playbackmenuitem_spinner 1s infinite linear; - color: #00A9A5; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid #040407; } - MsdOsdWindow.background.osd .progressbar { - background-color: #00A9A5; - border: none; - border-color: #00A9A5; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: rgba(0, 0, 0, 0.93); - border: none; - border-radius: 5px; } - -/*********************** - * App-Specific Styles * - ***********************/ -/********* - * Geary * - *********/ -.geary-titlebar-left .separator, -.geary-titlebar-right .separator { - opacity: 0; } - -ConversationListView .view:active, ConversationListView iconview:active, ConversationListView .view:selected, ConversationListView iconview:selected { - background-color: #00A9A5; - color: #fefefe; } - ConversationListView .view:active:backdrop, ConversationListView iconview:active:backdrop, ConversationListView .view:selected:backdrop, ConversationListView iconview:selected:backdrop { - background-color: rgba(0, 169, 165, 0.6); - color: rgba(254, 254, 254, 0.5); } -ConversationListView .view .cell, ConversationListView iconview .cell { - border: solid rgba(0, 0, 0, 0.2); - border-width: 0 0 1px 0; } - ConversationListView .view .cell:selected, ConversationListView iconview .cell:selected { - color: #fefefe; - border: 0px solid #007673; } - -/*********** - * LightDm * - ***********/ -#panel_window { - background-color: #131520; - color: white; - font-weight: bold; - box-shadow: inset 0 -1px #06060a; } - #panel_window .menubar, - #panel_window .menubar > .menuitem - menubar, - #panel_window menubar > menuitem { - background-color: transparent; - color: white; - font-weight: bold; } - #panel_window .menubar .menuitem:disabled, - #panel_window menubar menuitem:disabled { - color: rgba(255, 255, 255, 0.5); } - #panel_window .menubar .menuitem:disabled GtkLabel, - #panel_window menubar menuitem:disabled GtkLabel { - color: inherit; } - #panel_window .menubar .menuitem:disabled label, - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window .menubar .menu > .menuitem, - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #BFC3C4; } - -#content_frame { - padding-bottom: 14px; - background-color: #0F111A; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - font-weight: normal; - color: #BFC3C4; - background-color: #191c2c; - text-shadow: none; } - #content_frame button:hover { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background-color: #131520; - text-shadow: none; } - #content_frame button:active, #content_frame button:checked { - color: #BFC3C4; - outline-color: rgba(191, 195, 196, 0.3); - background: #00A9A5; - text-shadow: none; } - #content_frame button:disabled { - color: #9da1a4; - border-color: rgba(4, 4, 7, 0.5); - background-color: #151722; - text-shadow: none; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #0a0b11; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; } - -#buttonbox_frame button { - color: #BFC3C4; - border-color: #040407; - background-color: rgba(8, 9, 13, 0.93); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:hover { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(30, 34, 52, 0.93), rgba(30, 34, 52, 0.93)); - background-clip: padding-box; - text-shadow: 0 1px black; - -gtk-icon-shadow: 0 1px black; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: white; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(19, 21, 32, 0.93), rgba(19, 21, 32, 0.93)); - background-clip: padding-box; - text-shadow: none; - -gtk-icon-shadow: none; - outline-color: rgba(191, 195, 196, 0.3); } - #buttonbox_frame button:disabled { - color: #646669; - border-color: #040407; - background-image: linear-gradient(to bottom, rgba(26, 28, 31, 0.5), rgba(26, 28, 31, 0.5)); - background-clip: padding-box; - box-shadow: none; - text-shadow: none; - -gtk-icon-shadow: none; } - -#login_window #user_combobox { - color: #BFC3C4; - font-size: 13px; } - #login_window #user_combobox .menu, - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nemo-window .places-treeview .view.cell:hover, .nemo-window .places-treeview iconview.cell:hover, -.nemo-window .places-treeview iconview.cell:hover { - background: rgba(8, 9, 13, 0.7); } -.nemo-window .places-treeview .view.cell:selected, .nemo-window .places-treeview iconview.cell:selected, -.nemo-window .places-treeview iconview.cell:selected { - background: rgba(8, 9, 13, 0.93); } -.nemo-window .sidebar { - color: #98abb2; - background-color: #0d0f17; } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar .iconview, .nemo-window .sidebar row { - background-color: transparent; } -.nemo-window .nemo-window-pane widget.entry { - background-clip: padding-box; - min-height: 28px; - padding: 5px; - color: #BFC3C4; - border: 1px solid #040407; - border-radius: 3px; - box-shadow: inset 0 1px rgba(0, 0, 0, 0.9), inset 1px 0 rgba(0, 0, 0, 0.96), inset -1px 0 rgba(0, 0, 0, 0.96), inset 0 -1px rgba(0, 0, 0, 0.98), 0 1px rgba(255, 255, 255, 0.6); } - .nemo-window .nemo-window-pane widget.entry:selected { - background-color: #00A9A5; - color: #fefefe; } -.nemo-window toolbar.primary-toolbar { - margin-bottom: -1px; - background: #0a0b11; } - .nemo-window toolbar.primary-toolbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - min-height: 24px; - padding: 3px; } - .nemo-window toolbar.primary-toolbar button:hover { - color: #fefefe; - border-radius: 0; - text-shadow: none; - background-image: linear-gradient(to bottom, #131520, #0F111A); } - .nemo-window toolbar.primary-toolbar button:selected, .nemo-window toolbar.primary-toolbar button:active, .nemo-window toolbar.primary-toolbar button:checked { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } - .nemo-window toolbar.primary-toolbar button:selected:backdrop, .nemo-window toolbar.primary-toolbar button:active:backdrop, .nemo-window toolbar.primary-toolbar button:checked:backdrop { - color: rgba(254, 254, 254, 0.5); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; } - .nemo-window toolbar.primary-toolbar button:backdrop, .nemo-window toolbar.primary-toolbar button:disabled, .nemo-window toolbar.primary-toolbar button:backdrop:disabled { - color: rgba(191, 195, 196, 0.2); - background-color: transparent; - border-radius: 0; - text-shadow: none; - box-shadow: none; } -.nemo-window .nemo-inactive-pane .view, .nemo-window .nemo-inactive-pane iconview, -.nemo-window .nemo-inactive-pane iconview { - background-color: #0d0f17; } - -/* thunar */ -.thunar toolbar { - background-color: #0a0b11; } - -/* buttons in toolbar */ -.thunar toolbar.horizontal button image { - -gtk-icon-transform: scale(0.72); } - -scrolledwindow.sidebar treeview.view { - background: #0d0f17; - padding: 1.5px; } - -/* path-bar of thunar */ -window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button, -.thunar toolbar .path-bar-button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0; - border-right: 1px solid #040407; - border-left: none; - box-shadow: none; - min-height: 20px; - padding: 3px 4px; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:first-child, - .thunar toolbar .path-bar-button:first-child { - border-left: 1px solid #040407; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:last-child, - .thunar toolbar .path-bar-button:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-right-style: solid; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:only-child, - .thunar toolbar .path-bar-button:only-child { - border-radius: 4px; - border-style: solid; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:hover, - .thunar toolbar .path-bar-button:hover { - color: #00A9A5; } - window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .path-bar-button:checked, - .thunar toolbar .path-bar-button:checked { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } -window.thunar toolbar#location-toolbar > toolitem > widget > widget.linked.path-bar .toggle.path-bar-button:hover, -.thunar toolbar .toggle.path-bar-button:hover { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } - -/* thunar sidepane */ -window.thunar paned > scrolledwindow treeview.view { - border-radius: 0; - box-shadow: none; } - window.thunar paned > scrolledwindow treeview.view:hover { - background: rgba(8, 9, 13, 0.7); } - window.thunar paned > scrolledwindow treeview.view:selected { - background: rgba(8, 9, 13, 0.93); } - -.caja-notebook .frame { - border-width: 0 0 1px; } -.caja-notebook .entry { - background: #0F111A; - color: #BFC3C4; - border-color: #040407; } - .caja-notebook .entry:selected { - background: #00A9A5; - color: #fefefe; } - -/************** -* Caja sidebar * -**************/ -.caja-side-pane { - background: #0d0f17; } - .caja-side-pane .frame { - border-width: 1px 0 0; } - .caja-side-pane treeview.view, - .caja-side-pane textview.view text, - .caja-side-pane viewport.frame, - .caja-side-pane widget .vertical { - background: #0d0f17; - padding: 3px 2px; } - .caja-side-pane treeview.view:hover, - .caja-side-pane textview.view text:hover, - .caja-side-pane viewport.frame:hover, - .caja-side-pane widget .vertical:hover { - background-color: rgba(11, 13, 20, 0.95); } - .caja-side-pane treeview.view:selected, - .caja-side-pane textview.view text:selected, - .caja-side-pane viewport.frame:selected, - .caja-side-pane widget .vertical:selected { - color: #98abb2; - background: rgba(8, 9, 13, 0.93); } - .caja-side-pane treeview.view:selected:hover, - .caja-side-pane textview.view text:selected:hover, - .caja-side-pane viewport.frame:selected:hover, - .caja-side-pane widget .vertical:selected:hover { - background: rgba(8, 9, 13, 0.93); - color: #fff; } - -/************** -* Caja pathbar * -**************/ -.caja-navigation-window paned { - background: #131520; } - -.caja-navigation-window .primary-toolbar { - background: #0a0b11; } - .caja-navigation-window .primary-toolbar button, .caja-navigation-window .primary-toolbar button:backdrop { - background-color: transparent; - background-image: none; - border-color: transparent; - box-shadow: inset 0 1px rgba(255, 255, 255, 0); - text-shadow: none; - -gtk-icon-shadow: none; } - .caja-navigation-window .primary-toolbar button:hover, .caja-navigation-window .primary-toolbar button:active, .caja-navigation-window .primary-toolbar button:backdrop:active, .caja-navigation-window .primary-toolbar button:backdrop:checked { - background: #00A9A5; - box-shadow: none; } - .caja-navigation-window .primary-toolbar button:hover, .caja-navigation-window .primary-toolbar button:hover label, .caja-navigation-window .primary-toolbar button:active, .caja-navigation-window .primary-toolbar button:active label, .caja-navigation-window .primary-toolbar button:backdrop:active, .caja-navigation-window .primary-toolbar button:backdrop:active label, .caja-navigation-window .primary-toolbar button:backdrop:checked, .caja-navigation-window .primary-toolbar button:backdrop:checked label { - color: #fefefe; } - -.caja-pathbar button { - color: #BFC3C4; - border-radius: 4px; - text-shadow: none; - box-shadow: none; - border: 1px solid #040407; - background: linear-gradient(to bottom, #0d0f17, #0d0f17); - border-radius: 0px; - border-right: 1px solid #040407; - border-left: none; - box-shadow: none; - min-height: 20px; - padding: 3px 5px; - margin-right: -3px; } - .caja-pathbar button:first-child { - border-left: 1px solid #040407; } - .caja-pathbar button:hover { - color: #00A9A5; } - .caja-pathbar button:checked { - background-color: #08090d; - color: #cccfd0; - box-shadow: 0px -1px 0px #00A9A5 inset; } - -/*# sourceMappingURL=gtk.css.map */ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/thumbnail.png b/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/thumbnail.png deleted file mode 100644 index 3c28800..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/gtk-4.0/thumbnail.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/index.theme b/homeConfig/dotfiles/themes/Juno-ocean/index.theme deleted file mode 100755 index e99e380..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/index.theme +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Type=X-GNOME-Metatheme -Name=Juno-ocean -Comment=GTK themes inspired by epic vscode themes -Encoding=UTF-8 - -[X-GNOME-Metatheme] -GtkTheme=Juno-ocean -MetacityTheme=Juno-ocean -IconTheme=Zafiro-icons -ButtonLayout=:minimize,maximize,close diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close.png deleted file mode 100644 index 522037d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused.png deleted file mode 100644 index 522037d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_normal.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_normal.png deleted file mode 100644 index 522037d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_normal.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_prelight.png deleted file mode 100644 index e6fa085..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_pressed.png deleted file mode 100644 index ec486ed..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_focused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused.png deleted file mode 100644 index b0bcad9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused_prelight.png deleted file mode 100644 index ef87405..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused_pressed.png deleted file mode 100644 index ec486ed..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/close_unfocused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize.png deleted file mode 100644 index 0eb58ff..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused.png deleted file mode 100644 index 0eb58ff..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_normal.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_normal.png deleted file mode 100644 index 0eb58ff..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_normal.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_prelight.png deleted file mode 100644 index 6ad8956..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_pressed.png deleted file mode 100644 index 6ad8956..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_focused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused.png deleted file mode 100644 index 9e9a998..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused_prelight.png deleted file mode 100644 index 6ad8956..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused_pressed.png deleted file mode 100644 index 6ad8956..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/maximize_unfocused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu.png deleted file mode 100644 index 591572e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused.png deleted file mode 100644 index 591572e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_normal.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_normal.png deleted file mode 100644 index 591572e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_normal.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_prelight.png deleted file mode 100644 index f00f6c4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_pressed.png deleted file mode 100644 index 85af81e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_focused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused.png deleted file mode 100644 index e68d577..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused_prelight.png deleted file mode 100644 index 591572e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused_pressed.png deleted file mode 100644 index 85af81e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/menu_unfocused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-1.xml b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-1.xml deleted file mode 100755 index 335ab84..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-1.xml +++ /dev/null @@ -1,1144 +0,0 @@ - - - - Juno-ocean - Eliver Lara <eliverlara@gmail> - ÂEliver Lara, 2019 - 2019 - Juno Window Theme - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -</draw_ops> - -<draw_ops name="title_unfocused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2))" - color="C_title_unfocused" /> -</draw_ops> - -<!-- WINDOW DECORATIONS --> -<draw_ops name="entire_background_focused"> - <rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <include name="entire_background_focused" /> -</draw_ops> - -<draw_ops name="titlebar_fill_focused"> - <rectangle color="C_titlebar" x="4" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_fill_attached_focused"> - <include name="entire_background_focused" /> -</draw_ops> - -<draw_ops name="titlebar_fill_unfocused"> - <rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <include name="titlebar_fill_focused" /> -</draw_ops> - -<draw_ops name="titlebar_attached_focused"> <!-- titlebar for attached and modal dialogs --> - <include name="titlebar_fill_attached_focused" /> -</draw_ops> - -<draw_ops name="rounded_titlebar_focused"> - <include name="titlebar_fill_focused" /> -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_border_focused" x="0" y="0" width="width-1" height="height-1" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_border_unfocused" x="0" y="0" width="width-1" height="height-1" filled="false" /> -</draw_ops> - -<draw_ops name="rounded_border_focused"> - <line color="C_border_focused" x1="2" y1="0" x2="width-3" y2="0" /> - <line color="C_border_focused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> - <line color="C_border_focused" x1="0" y1="2" x2="0" y2="height-2" /> - <line color="C_border_focused" x1="width-1" y1="2" x2="width-1" y2="height-2" /> - <arc color="C_border_focused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_focused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> - <!-- double arcs for darker borders --> - <arc color="C_border_focused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_focused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> -</draw_ops> - -<draw_ops name="rounded_border_unfocused"> - <line color="C_border_unfocused" x1="2" y1="0" x2="width-3" y2="0" /> - <line color="C_border_unfocused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> - <line color="C_border_unfocused" x1="0" y1="2" x2="0" y2="height-2" /> - <line color="C_border_unfocused" x1="width-1" y1="2" x2="width-1" y2="height-2" /> - <arc color="C_border_unfocused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_unfocused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> - <!-- double arcs for darker borders --> - <arc color="C_border_unfocused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_unfocused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> -</draw_ops> - -<draw_ops name="border_right_focused"> - <line - x1="width-1" y1="0" - x2="width-1" y2="height" - color="C_border_focused" /> -</draw_ops> - -<draw_ops name="border_right_unfocused"> - <line - x1="width-1" y1="0" - x2="width-1" y2="height" - color="C_border_unfocused" /> -</draw_ops> - -<draw_ops name="border_left_focused"> - <line - x1="0" y1="0" - x2="0" y2="height" - color="C_border_focused" /> -</draw_ops> - -<draw_ops name="border_left_unfocused"> - <line - x1="0" y1="0" - x2="0" y2="height" - color="C_border_unfocused" /> -</draw_ops> - -<!-- BUTTON ICONS --> -<!-- note: negative values in x or y causes gnome-shell to crash --> - -<!-- Close icon --> -<draw_ops name="close_focused"> - <image filename="close_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_focused_prelight"> - <image filename="close_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_focused_pressed"> - <image filename="close_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused"> - <image filename="close_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused_prelight"> - <image filename="close_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused_pressed"> - <image filename="close_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Maximize icon --> -<draw_ops name="maximize_focused"> - <image filename="maximize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_focused_prelight"> - <image filename="maximize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_focused_pressed"> - <image filename="maximize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused"> - <image filename="maximize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused_prelight"> - <image filename="maximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused_pressed"> - <image filename="maximize_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - -<!-- Unmaximize icon --> -<draw_ops name="unmaximize_focused"> - <image filename="unmaximize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_focused_prelight"> - <image filename="unmaximize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_focused_pressed"> - <image filename="unmaximize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused"> - <image filename="unmaximize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused_prelight"> - <image filename="unmaximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused_pressed"> - <image filename="unmaximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Minimize icon --> -<draw_ops name="minimize_focused"> - <image filename="minimize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_focused_prelight"> - <image filename="minimize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_focused_pressed"> - <image filename="minimize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused"> - <image filename="minimize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused_prelight"> - <image filename="minimize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused_pressed"> - <image filename="minimize_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Menu icon --> -<draw_ops name="menu_focused"> - <image filename="menu_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_focused_prelight"> - <image filename="menu_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_focused_pressed"> - <image filename="menu_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused"> - <image filename="menu_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused_prelight"> - <image filename="menu_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused_pressed"> - <image filename="menu_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Shade icon --> -<draw_ops name="shade_focused"> - <image filename="shade_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_focused_prelight"> - <image filename="shade_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_focused_pressed"> - <image filename="shade_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused"> - <image filename="shade_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused_prelight"> - <image filename="shade_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused_pressed"> - <image filename="shade_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Unshade icon --> -<draw_ops name="unshade_focused"> - <image filename="unshade_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_focused_prelight"> - <image filename="unshade_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_focused_pressed"> - <image filename="unshade_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused"> - <image filename="unshade_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused_prelight"> - <image filename="unshade_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused_pressed"> - <image filename="unshade_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- FRAME STYLES --> -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="rounded_titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="rounded_border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="rounded_border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay"><draw_ops><line x1="0" y1="height-1" x2="width" y2="height-1" color="C_border_focused" /></draw_ops></piece> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay"><draw_ops><line x1="0" y1="height-1" x2="width" y2="height-1" color="C_border_unfocused" /></draw_ops></piece> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="rounded_titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="rounded_border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="rounded_border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="borderless" geometry="borderless"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_focused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_unfocused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_focused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_right_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_unfocused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_right_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_focused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_left_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_unfocused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_left_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- FRAME STYLE SETS --> -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused" /> - <frame focus="no" state="normal" resize="both" style="normal_unfocused" /> - <frame focus="yes" state="maximized" style="normal_max_focused" /> - <frame focus="no" state="maximized" style="normal_max_unfocused" /> - <frame focus="yes" state="shaded" style="normal_focused" /> - <frame focus="no" state="shaded" style="normal_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused" /> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused" /> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused" /> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="dialog_focused" /> - <frame focus="no" state="shaded" style="dialog_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused" /> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="modal_dialog_focused" /> - <frame focus="no" state="shaded" style="modal_dialog_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused" /> - <frame focus="no" state="normal" resize="both" style="utility_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="utility_focused" /> - <frame focus="no" state="shaded" style="utility_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused" /> - <frame focus="no" state="normal" resize="both" style="border_unfocused" /> - <frame focus="yes" state="maximized" style="borderless" /> - <frame focus="no" state="maximized" style="borderless" /> - <frame focus="yes" state="shaded" style="blank" /> - <frame focus="no" state="shaded" style="blank" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<!-- WINDOWS --> -<window type="normal" style_set="normal_style_set" /> -<window type="dialog" style_set="dialog_style_set" /> -<window type="modal_dialog" style_set="modal_dialog_style_set" /> -<window type="menu" style_set="utility_style_set" /> -<window type="utility" style_set="utility_style_set" /> -<window type="border" style_set="border_style_set" /> - -</metacity_theme> diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-2.xml b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-2.xml deleted file mode 100755 index 335ab84..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-2.xml +++ /dev/null @@ -1,1144 +0,0 @@ -<?xml version="1.0"?> -<metacity_theme> -<info> - <name>Juno-ocean</name> - <author>Eliver Lara <eliverlara@gmail></author> - <copyright>ÂEliver Lara, 2019</copyright> - <date>2019</date> - <description>Juno Window Theme</description> -</info> - - -<!-- CONSTANTS --> -<constant name="C_titlebar" value="#0a0b11" /> -<constant name="C_titlebar_unfocused" value="#0a0b11" /> -<constant name="C_border_focused" value="#0a0b11" /> -<constant name="C_border_unfocused" value="#0a0b11" /> -<constant name="C_title_focused" value="#d8dee9" /> -<constant name="C_title_unfocused" value="#93979f" /> - -<constant name="C_wm_button_background" value="#fc2" /> -<constant name="C_wm_button_foreground" value="#283141" /> -<constant name="C_wm_button_unfocused" value="#e6e8eb" /> - -<constant name="C_close_button" value="#283141" /> -<constant name="C_maximize_button" value="#283141" /> -<constant name="C_restore_button" value="#283141" /> -<constant name="C_minimize_button" value="#283141" /> - -<!-- GEOMETRY --> - -<!-- Focused window --> -<frame_geometry name="normal" title_scale="medium" rounded_top_left="4" rounded_top_right="4"> - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="3" /> - <distance name="left_titlebar_edge" value="5" /> - <distance name="right_titlebar_edge" value="5" /> - <distance name="title_vertical_pad" value="4" /> - <aspect_ratio name="button" value="1.0" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Unfocused window --> -<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="4" rounded_top_right="4" parent="normal" > - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="left_titlebar_edge" value="5"/> - <distance name="right_titlebar_edge" value="5"/> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Maximized window --> -<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Left tiled window --> -<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="max"> - <distance name="right_width" value="0" /> -</frame_geometry> - -<!-- Right tiled window --> -<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="max"> - <distance name="left_width" value="0" /> -</frame_geometry> - -<!-- Small window --> -<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0" /> -</frame_geometry> - -<!-- Small unfocused window --> -<frame_geometry name="small_unfocused" parent="small"> - <distance name="left_titlebar_edge" value="5"/> - <distance name="right_titlebar_edge" value="5"/> -</frame_geometry> - -<!-- No buttons --> -<frame_geometry name="nobuttons" hide_buttons="true" parent="normal"> -</frame_geometry> - -<!-- Border --> -<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="1" /> - <distance name="title_vertical_pad" value="1" /> - <border name="title_border" left="10" right="10" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0"/> -</frame_geometry> - -<!-- Borderless --> -<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="0" /> - <border name="title_border" left="0" right="0" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0" /> -</frame_geometry> - -<!-- Modal --> -<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="false" rounded_top_right="false" parent="small"> - <distance name="title_vertical_pad" value="5"/> -</frame_geometry> - -<frame_geometry name="attached" title_scale="medium" hide_buttons="true" rounded_top_left="false" rounded_top_right="false" parent="normal"> - <distance name="title_vertical_pad" value="8"/> - <distance name="bottom_height" value="1"/> - <distance name="left_width" value="1"/> - <distance name="right_width" value="1"/> -</frame_geometry> - - -<!-- TITLES --> - -<!-- Title alignment --> -<draw_ops name="title_focused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2))" - color="C_title_focused" /> -</draw_ops> - -<draw_ops name="title_unfocused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2))" - color="C_title_unfocused" /> -</draw_ops> - -<!-- WINDOW DECORATIONS --> -<draw_ops name="entire_background_focused"> - <rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <include name="entire_background_focused" /> -</draw_ops> - -<draw_ops name="titlebar_fill_focused"> - <rectangle color="C_titlebar" x="4" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_fill_attached_focused"> - <include name="entire_background_focused" /> -</draw_ops> - -<draw_ops name="titlebar_fill_unfocused"> - <rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <include name="titlebar_fill_focused" /> -</draw_ops> - -<draw_ops name="titlebar_attached_focused"> <!-- titlebar for attached and modal dialogs --> - <include name="titlebar_fill_attached_focused" /> -</draw_ops> - -<draw_ops name="rounded_titlebar_focused"> - <include name="titlebar_fill_focused" /> -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_border_focused" x="0" y="0" width="width-1" height="height-1" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_border_unfocused" x="0" y="0" width="width-1" height="height-1" filled="false" /> -</draw_ops> - -<draw_ops name="rounded_border_focused"> - <line color="C_border_focused" x1="2" y1="0" x2="width-3" y2="0" /> - <line color="C_border_focused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> - <line color="C_border_focused" x1="0" y1="2" x2="0" y2="height-2" /> - <line color="C_border_focused" x1="width-1" y1="2" x2="width-1" y2="height-2" /> - <arc color="C_border_focused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_focused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> - <!-- double arcs for darker borders --> - <arc color="C_border_focused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_focused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> -</draw_ops> - -<draw_ops name="rounded_border_unfocused"> - <line color="C_border_unfocused" x1="2" y1="0" x2="width-3" y2="0" /> - <line color="C_border_unfocused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> - <line color="C_border_unfocused" x1="0" y1="2" x2="0" y2="height-2" /> - <line color="C_border_unfocused" x1="width-1" y1="2" x2="width-1" y2="height-2" /> - <arc color="C_border_unfocused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_unfocused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> - <!-- double arcs for darker borders --> - <arc color="C_border_unfocused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_unfocused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> -</draw_ops> - -<draw_ops name="border_right_focused"> - <line - x1="width-1" y1="0" - x2="width-1" y2="height" - color="C_border_focused" /> -</draw_ops> - -<draw_ops name="border_right_unfocused"> - <line - x1="width-1" y1="0" - x2="width-1" y2="height" - color="C_border_unfocused" /> -</draw_ops> - -<draw_ops name="border_left_focused"> - <line - x1="0" y1="0" - x2="0" y2="height" - color="C_border_focused" /> -</draw_ops> - -<draw_ops name="border_left_unfocused"> - <line - x1="0" y1="0" - x2="0" y2="height" - color="C_border_unfocused" /> -</draw_ops> - -<!-- BUTTON ICONS --> -<!-- note: negative values in x or y causes gnome-shell to crash --> - -<!-- Close icon --> -<draw_ops name="close_focused"> - <image filename="close_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_focused_prelight"> - <image filename="close_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_focused_pressed"> - <image filename="close_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused"> - <image filename="close_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused_prelight"> - <image filename="close_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused_pressed"> - <image filename="close_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Maximize icon --> -<draw_ops name="maximize_focused"> - <image filename="maximize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_focused_prelight"> - <image filename="maximize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_focused_pressed"> - <image filename="maximize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused"> - <image filename="maximize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused_prelight"> - <image filename="maximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused_pressed"> - <image filename="maximize_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - -<!-- Unmaximize icon --> -<draw_ops name="unmaximize_focused"> - <image filename="unmaximize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_focused_prelight"> - <image filename="unmaximize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_focused_pressed"> - <image filename="unmaximize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused"> - <image filename="unmaximize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused_prelight"> - <image filename="unmaximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused_pressed"> - <image filename="unmaximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Minimize icon --> -<draw_ops name="minimize_focused"> - <image filename="minimize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_focused_prelight"> - <image filename="minimize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_focused_pressed"> - <image filename="minimize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused"> - <image filename="minimize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused_prelight"> - <image filename="minimize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused_pressed"> - <image filename="minimize_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Menu icon --> -<draw_ops name="menu_focused"> - <image filename="menu_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_focused_prelight"> - <image filename="menu_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_focused_pressed"> - <image filename="menu_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused"> - <image filename="menu_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused_prelight"> - <image filename="menu_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused_pressed"> - <image filename="menu_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Shade icon --> -<draw_ops name="shade_focused"> - <image filename="shade_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_focused_prelight"> - <image filename="shade_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_focused_pressed"> - <image filename="shade_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused"> - <image filename="shade_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused_prelight"> - <image filename="shade_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused_pressed"> - <image filename="shade_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Unshade icon --> -<draw_ops name="unshade_focused"> - <image filename="unshade_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_focused_prelight"> - <image filename="unshade_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_focused_pressed"> - <image filename="unshade_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused"> - <image filename="unshade_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused_prelight"> - <image filename="unshade_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused_pressed"> - <image filename="unshade_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- FRAME STYLES --> -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="rounded_titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="rounded_border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="rounded_border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay"><draw_ops><line x1="0" y1="height-1" x2="width" y2="height-1" color="C_border_focused" /></draw_ops></piece> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay"><draw_ops><line x1="0" y1="height-1" x2="width" y2="height-1" color="C_border_unfocused" /></draw_ops></piece> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="rounded_titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="rounded_border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="rounded_border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="borderless" geometry="borderless"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_focused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_unfocused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_focused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_right_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_unfocused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_right_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_focused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_left_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_unfocused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_left_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- FRAME STYLE SETS --> -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused" /> - <frame focus="no" state="normal" resize="both" style="normal_unfocused" /> - <frame focus="yes" state="maximized" style="normal_max_focused" /> - <frame focus="no" state="maximized" style="normal_max_unfocused" /> - <frame focus="yes" state="shaded" style="normal_focused" /> - <frame focus="no" state="shaded" style="normal_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused" /> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused" /> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused" /> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="dialog_focused" /> - <frame focus="no" state="shaded" style="dialog_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused" /> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="modal_dialog_focused" /> - <frame focus="no" state="shaded" style="modal_dialog_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused" /> - <frame focus="no" state="normal" resize="both" style="utility_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="utility_focused" /> - <frame focus="no" state="shaded" style="utility_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused" /> - <frame focus="no" state="normal" resize="both" style="border_unfocused" /> - <frame focus="yes" state="maximized" style="borderless" /> - <frame focus="no" state="maximized" style="borderless" /> - <frame focus="yes" state="shaded" style="blank" /> - <frame focus="no" state="shaded" style="blank" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<!-- WINDOWS --> -<window type="normal" style_set="normal_style_set" /> -<window type="dialog" style_set="dialog_style_set" /> -<window type="modal_dialog" style_set="modal_dialog_style_set" /> -<window type="menu" style_set="utility_style_set" /> -<window type="utility" style_set="utility_style_set" /> -<window type="border" style_set="border_style_set" /> - -</metacity_theme> diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-3.xml b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-3.xml deleted file mode 100755 index e6c6227..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme-3.xml +++ /dev/null @@ -1,1144 +0,0 @@ -<?xml version="1.0"?> -<metacity_theme> -<info> - <name>Juno-ocean</name> - <author>Eliver Lara <eliverlara@gmail></author> - <copyright>ÂEliver Lara, 2019</copyright> - <date>2019</date> - <description>Juno Window Theme</description> -</info> - - -<!-- CONSTANTS --> -<constant name="C_titlebar" value="#0a0b11" /> -<constant name="C_titlebar_unfocused" value="#0a0b11" /> -<constant name="C_border_focused" value="#0a0b11" /> -<constant name="C_border_unfocused" value="#0a0b11" /> -<constant name="C_title_focused" value="#d8dee9" /> -<constant name="C_title_unfocused" value="#93979f" /> - -<constant name="C_wm_button_background" value="#fc2" /> -<constant name="C_wm_button_foreground" value="#283141" /> -<constant name="C_wm_button_unfocused" value="#e6e8eb" /> - -<constant name="C_close_button" value="#283141" /> -<constant name="C_maximize_button" value="#283141" /> -<constant name="C_restore_button" value="#283141" /> -<constant name="C_minimize_button" value="#283141" /> - -<!-- GEOMETRY --> - -<!-- Focused window --> -<frame_geometry name="normal" title_scale="medium" rounded_top_left="4" rounded_top_right="4"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="left_titlebar_edge" value="5" /> - <distance name="right_titlebar_edge" value="5" /> - <distance name="title_vertical_pad" value="4" /> - <aspect_ratio name="button" value="1.0" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Unfocused window --> -<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="4" rounded_top_right="4" parent="normal" > - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="left_titlebar_edge" value="5"/> - <distance name="right_titlebar_edge" value="5"/> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Maximized window --> -<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Left tiled window --> -<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="max"> - <distance name="right_width" value="0" /> -</frame_geometry> - -<!-- Right tiled window --> -<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="max"> - <distance name="left_width" value="0" /> -</frame_geometry> - -<!-- Small window --> -<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0" /> -</frame_geometry> - -<!-- Small unfocused window --> -<frame_geometry name="small_unfocused" parent="small"> - <distance name="left_titlebar_edge" value="5"/> - <distance name="right_titlebar_edge" value="5"/> -</frame_geometry> - -<!-- No buttons --> -<frame_geometry name="nobuttons" hide_buttons="true" parent="normal"> -</frame_geometry> - -<!-- Border --> -<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="1" /> - <distance name="title_vertical_pad" value="1" /> - <border name="title_border" left="10" right="10" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0"/> -</frame_geometry> - -<!-- Borderless --> -<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="0" /> - <border name="title_border" left="0" right="0" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0" /> -</frame_geometry> - -<!-- Modal --> -<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="false" rounded_top_right="false" parent="small"> - <distance name="title_vertical_pad" value="5"/> -</frame_geometry> - -<frame_geometry name="attached" title_scale="medium" hide_buttons="true" rounded_top_left="false" rounded_top_right="false" parent="normal"> - <distance name="title_vertical_pad" value="8"/> - <distance name="bottom_height" value="1"/> - <distance name="left_width" value="1"/> - <distance name="right_width" value="1"/> -</frame_geometry> - - -<!-- TITLES --> - -<!-- Title alignment --> -<draw_ops name="title_focused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2))" - color="C_title_focused" /> -</draw_ops> - -<draw_ops name="title_unfocused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2))" - color="C_title_unfocused" /> -</draw_ops> - -<!-- WINDOW DECORATIONS --> -<draw_ops name="entire_background_focused"> - <rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <include name="entire_background_focused" /> -</draw_ops> - -<draw_ops name="titlebar_fill_focused"> - <rectangle color="C_titlebar" x="4" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_fill_attached_focused"> - <include name="entire_background_focused" /> -</draw_ops> - -<draw_ops name="titlebar_fill_unfocused"> - <rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <include name="titlebar_fill_focused" /> -</draw_ops> - -<draw_ops name="titlebar_attached_focused"> <!-- titlebar for attached and modal dialogs --> - <include name="titlebar_fill_attached_focused" /> -</draw_ops> - -<draw_ops name="rounded_titlebar_focused"> - <include name="titlebar_fill_focused" /> -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_border_focused" x="0" y="0" width="width-1" height="height-1" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_border_unfocused" x="0" y="0" width="width-1" height="height-1" filled="false" /> -</draw_ops> - -<draw_ops name="rounded_border_focused"> - <line color="C_border_focused" x1="2" y1="0" x2="width-3" y2="0" /> - <line color="C_border_focused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> - <line color="C_border_focused" x1="0" y1="2" x2="0" y2="height-2" /> - <line color="C_border_focused" x1="width-1" y1="2" x2="width-1" y2="height-2" /> - <arc color="C_border_focused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_focused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> - <!-- double arcs for darker borders --> - <arc color="C_border_focused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_focused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> -</draw_ops> - -<draw_ops name="rounded_border_unfocused"> - <line color="C_border_unfocused" x1="2" y1="0" x2="width-3" y2="0" /> - <line color="C_border_unfocused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> - <line color="C_border_unfocused" x1="0" y1="2" x2="0" y2="height-2" /> - <line color="C_border_unfocused" x1="width-1" y1="2" x2="width-1" y2="height-2" /> - <arc color="C_border_unfocused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_unfocused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> - <!-- double arcs for darker borders --> - <arc color="C_border_unfocused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_unfocused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> -</draw_ops> - -<draw_ops name="border_right_focused"> - <line - x1="width-1" y1="0" - x2="width-1" y2="height" - color="C_border_focused" /> -</draw_ops> - -<draw_ops name="border_right_unfocused"> - <line - x1="width-1" y1="0" - x2="width-1" y2="height" - color="C_border_unfocused" /> -</draw_ops> - -<draw_ops name="border_left_focused"> - <line - x1="0" y1="0" - x2="0" y2="height" - color="C_border_focused" /> -</draw_ops> - -<draw_ops name="border_left_unfocused"> - <line - x1="0" y1="0" - x2="0" y2="height" - color="C_border_unfocused" /> -</draw_ops> - -<!-- BUTTON ICONS --> -<!-- note: negative values in x or y causes gnome-shell to crash --> - -<!-- Close icon --> -<draw_ops name="close_focused"> - <image filename="close_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_focused_prelight"> - <image filename="close_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_focused_pressed"> - <image filename="close_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused"> - <image filename="close_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused_prelight"> - <image filename="close_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused_pressed"> - <image filename="close_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Maximize icon --> -<draw_ops name="maximize_focused"> - <image filename="maximize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_focused_prelight"> - <image filename="maximize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_focused_pressed"> - <image filename="maximize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused"> - <image filename="maximize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused_prelight"> - <image filename="maximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused_pressed"> - <image filename="maximize_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - -<!-- Unmaximize icon --> -<draw_ops name="unmaximize_focused"> - <image filename="unmaximize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_focused_prelight"> - <image filename="unmaximize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_focused_pressed"> - <image filename="unmaximize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused"> - <image filename="unmaximize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused_prelight"> - <image filename="unmaximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused_pressed"> - <image filename="unmaximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Minimize icon --> -<draw_ops name="minimize_focused"> - <image filename="minimize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_focused_prelight"> - <image filename="minimize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_focused_pressed"> - <image filename="minimize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused"> - <image filename="minimize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused_prelight"> - <image filename="minimize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused_pressed"> - <image filename="minimize_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Menu icon --> -<draw_ops name="menu_focused"> - <image filename="menu_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_focused_prelight"> - <image filename="menu_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_focused_pressed"> - <image filename="menu_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused"> - <image filename="menu_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused_prelight"> - <image filename="menu_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused_pressed"> - <image filename="menu_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Shade icon --> -<draw_ops name="shade_focused"> - <image filename="shade_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_focused_prelight"> - <image filename="shade_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_focused_pressed"> - <image filename="shade_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused"> - <image filename="shade_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused_prelight"> - <image filename="shade_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused_pressed"> - <image filename="shade_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Unshade icon --> -<draw_ops name="unshade_focused"> - <image filename="unshade_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_focused_prelight"> - <image filename="unshade_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_focused_pressed"> - <image filename="unshade_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused"> - <image filename="unshade_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused_prelight"> - <image filename="unshade_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused_pressed"> - <image filename="unshade_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- FRAME STYLES --> -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="rounded_titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="rounded_border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="rounded_border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay"><draw_ops><line x1="0" y1="height-1" x2="width" y2="height-1" color="C_border_focused" /></draw_ops></piece> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay"><draw_ops><line x1="0" y1="height-1" x2="width" y2="height-1" color="C_border_unfocused" /></draw_ops></piece> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="rounded_titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="rounded_border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="rounded_border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="borderless" geometry="borderless"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_focused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_unfocused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_focused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_right_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_unfocused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_right_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_focused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_left_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_unfocused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_left_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- FRAME STYLE SETS --> -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused" /> - <frame focus="no" state="normal" resize="both" style="normal_unfocused" /> - <frame focus="yes" state="maximized" style="normal_max_focused" /> - <frame focus="no" state="maximized" style="normal_max_unfocused" /> - <frame focus="yes" state="shaded" style="normal_focused" /> - <frame focus="no" state="shaded" style="normal_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused" /> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused" /> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused" /> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="dialog_focused" /> - <frame focus="no" state="shaded" style="dialog_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused" /> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="modal_dialog_focused" /> - <frame focus="no" state="shaded" style="modal_dialog_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused" /> - <frame focus="no" state="normal" resize="both" style="utility_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="utility_focused" /> - <frame focus="no" state="shaded" style="utility_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused" /> - <frame focus="no" state="normal" resize="both" style="border_unfocused" /> - <frame focus="yes" state="maximized" style="borderless" /> - <frame focus="no" state="maximized" style="borderless" /> - <frame focus="yes" state="shaded" style="blank" /> - <frame focus="no" state="shaded" style="blank" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<!-- WINDOWS --> -<window type="normal" style_set="normal_style_set" /> -<window type="dialog" style_set="dialog_style_set" /> -<window type="modal_dialog" style_set="modal_dialog_style_set" /> -<window type="menu" style_set="utility_style_set" /> -<window type="utility" style_set="utility_style_set" /> -<window type="border" style_set="border_style_set" /> - -</metacity_theme> diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme.xml b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme.xml deleted file mode 100755 index 335ab84..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/metacity-theme.xml +++ /dev/null @@ -1,1144 +0,0 @@ -<?xml version="1.0"?> -<metacity_theme> -<info> - <name>Juno-ocean</name> - <author>Eliver Lara <eliverlara@gmail></author> - <copyright>ÂEliver Lara, 2019</copyright> - <date>2019</date> - <description>Juno Window Theme</description> -</info> - - -<!-- CONSTANTS --> -<constant name="C_titlebar" value="#0a0b11" /> -<constant name="C_titlebar_unfocused" value="#0a0b11" /> -<constant name="C_border_focused" value="#0a0b11" /> -<constant name="C_border_unfocused" value="#0a0b11" /> -<constant name="C_title_focused" value="#d8dee9" /> -<constant name="C_title_unfocused" value="#93979f" /> - -<constant name="C_wm_button_background" value="#fc2" /> -<constant name="C_wm_button_foreground" value="#283141" /> -<constant name="C_wm_button_unfocused" value="#e6e8eb" /> - -<constant name="C_close_button" value="#283141" /> -<constant name="C_maximize_button" value="#283141" /> -<constant name="C_restore_button" value="#283141" /> -<constant name="C_minimize_button" value="#283141" /> - -<!-- GEOMETRY --> - -<!-- Focused window --> -<frame_geometry name="normal" title_scale="medium" rounded_top_left="4" rounded_top_right="4"> - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="3" /> - <distance name="left_titlebar_edge" value="5" /> - <distance name="right_titlebar_edge" value="5" /> - <distance name="title_vertical_pad" value="4" /> - <aspect_ratio name="button" value="1.0" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Unfocused window --> -<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="4" rounded_top_right="4" parent="normal" > - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="left_titlebar_edge" value="5"/> - <distance name="right_titlebar_edge" value="5"/> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Maximized window --> -<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="4" bottom="4" /> - <border name="button_border" left="0" right="0" top="4" bottom="4" /> -</frame_geometry> - -<!-- Left tiled window --> -<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="max"> - <distance name="right_width" value="0" /> -</frame_geometry> - -<!-- Right tiled window --> -<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="max"> - <distance name="left_width" value="0" /> -</frame_geometry> - -<!-- Small window --> -<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="title_vertical_pad" value="4" /> - <border name="title_border" left="4" right="4" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0" /> -</frame_geometry> - -<!-- Small unfocused window --> -<frame_geometry name="small_unfocused" parent="small"> - <distance name="left_titlebar_edge" value="5"/> - <distance name="right_titlebar_edge" value="5"/> -</frame_geometry> - -<!-- No buttons --> -<frame_geometry name="nobuttons" hide_buttons="true" parent="normal"> -</frame_geometry> - -<!-- Border --> -<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="1" /> - <distance name="title_vertical_pad" value="1" /> - <border name="title_border" left="10" right="10" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0"/> -</frame_geometry> - -<!-- Borderless --> -<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="0" /> - <border name="title_border" left="0" right="0" top="0" bottom="0" /> - <border name="button_border" left="0" right="0" top="0" bottom="0" /> -</frame_geometry> - -<!-- Modal --> -<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="false" rounded_top_right="false" parent="small"> - <distance name="title_vertical_pad" value="5"/> -</frame_geometry> - -<frame_geometry name="attached" title_scale="medium" hide_buttons="true" rounded_top_left="false" rounded_top_right="false" parent="normal"> - <distance name="title_vertical_pad" value="8"/> - <distance name="bottom_height" value="1"/> - <distance name="left_width" value="1"/> - <distance name="right_width" value="1"/> -</frame_geometry> - - -<!-- TITLES --> - -<!-- Title alignment --> -<draw_ops name="title_focused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2))" - color="C_title_focused" /> -</draw_ops> - -<draw_ops name="title_unfocused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2))" - color="C_title_unfocused" /> -</draw_ops> - -<!-- WINDOW DECORATIONS --> -<draw_ops name="entire_background_focused"> - <rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <include name="entire_background_focused" /> -</draw_ops> - -<draw_ops name="titlebar_fill_focused"> - <rectangle color="C_titlebar" x="4" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_fill_attached_focused"> - <include name="entire_background_focused" /> -</draw_ops> - -<draw_ops name="titlebar_fill_unfocused"> - <rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <include name="titlebar_fill_focused" /> -</draw_ops> - -<draw_ops name="titlebar_attached_focused"> <!-- titlebar for attached and modal dialogs --> - <include name="titlebar_fill_attached_focused" /> -</draw_ops> - -<draw_ops name="rounded_titlebar_focused"> - <include name="titlebar_fill_focused" /> -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_border_focused" x="0" y="0" width="width-1" height="height-1" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_border_unfocused" x="0" y="0" width="width-1" height="height-1" filled="false" /> -</draw_ops> - -<draw_ops name="rounded_border_focused"> - <line color="C_border_focused" x1="2" y1="0" x2="width-3" y2="0" /> - <line color="C_border_focused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> - <line color="C_border_focused" x1="0" y1="2" x2="0" y2="height-2" /> - <line color="C_border_focused" x1="width-1" y1="2" x2="width-1" y2="height-2" /> - <arc color="C_border_focused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_focused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> - <!-- double arcs for darker borders --> - <arc color="C_border_focused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_focused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> -</draw_ops> - -<draw_ops name="rounded_border_unfocused"> - <line color="C_border_unfocused" x1="2" y1="0" x2="width-3" y2="0" /> - <line color="C_border_unfocused" x1="0" y1="height-1" x2="width-1" y2="height-1" /> - <line color="C_border_unfocused" x1="0" y1="2" x2="0" y2="height-2" /> - <line color="C_border_unfocused" x1="width-1" y1="2" x2="width-1" y2="height-2" /> - <arc color="C_border_unfocused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_unfocused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> - <!-- double arcs for darker borders --> - <arc color="C_border_unfocused" x="0" y="0" width="3" height="3" start_angle="270" extent_angle="90" /> - <arc color="C_border_unfocused" x="width-3" y="0" width="2" height="3" start_angle="0" extent_angle="90" /> -</draw_ops> - -<draw_ops name="border_right_focused"> - <line - x1="width-1" y1="0" - x2="width-1" y2="height" - color="C_border_focused" /> -</draw_ops> - -<draw_ops name="border_right_unfocused"> - <line - x1="width-1" y1="0" - x2="width-1" y2="height" - color="C_border_unfocused" /> -</draw_ops> - -<draw_ops name="border_left_focused"> - <line - x1="0" y1="0" - x2="0" y2="height" - color="C_border_focused" /> -</draw_ops> - -<draw_ops name="border_left_unfocused"> - <line - x1="0" y1="0" - x2="0" y2="height" - color="C_border_unfocused" /> -</draw_ops> - -<!-- BUTTON ICONS --> -<!-- note: negative values in x or y causes gnome-shell to crash --> - -<!-- Close icon --> -<draw_ops name="close_focused"> - <image filename="close_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_focused_prelight"> - <image filename="close_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_focused_pressed"> - <image filename="close_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused"> - <image filename="close_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused_prelight"> - <image filename="close_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="close_unfocused_pressed"> - <image filename="close_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Maximize icon --> -<draw_ops name="maximize_focused"> - <image filename="maximize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_focused_prelight"> - <image filename="maximize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_focused_pressed"> - <image filename="maximize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused"> - <image filename="maximize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused_prelight"> - <image filename="maximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="maximize_unfocused_pressed"> - <image filename="maximize_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - -<!-- Unmaximize icon --> -<draw_ops name="unmaximize_focused"> - <image filename="unmaximize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_focused_prelight"> - <image filename="unmaximize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_focused_pressed"> - <image filename="unmaximize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused"> - <image filename="unmaximize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused_prelight"> - <image filename="unmaximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unmaximize_unfocused_pressed"> - <image filename="unmaximize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Minimize icon --> -<draw_ops name="minimize_focused"> - <image filename="minimize_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_focused_prelight"> - <image filename="minimize_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_focused_pressed"> - <image filename="minimize_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused"> - <image filename="minimize_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused_prelight"> - <image filename="minimize_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="minimize_unfocused_pressed"> - <image filename="minimize_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Menu icon --> -<draw_ops name="menu_focused"> - <image filename="menu_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_focused_prelight"> - <image filename="menu_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_focused_pressed"> - <image filename="menu_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused"> - <image filename="menu_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused_prelight"> - <image filename="menu_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="menu_unfocused_pressed"> - <image filename="menu_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Shade icon --> -<draw_ops name="shade_focused"> - <image filename="shade_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_focused_prelight"> - <image filename="shade_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_focused_pressed"> - <image filename="shade_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused"> - <image filename="shade_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused_prelight"> - <image filename="shade_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="shade_unfocused_pressed"> - <image filename="shade_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- Unshade icon --> -<draw_ops name="unshade_focused"> - <image filename="unshade_focused_normal.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_focused_prelight"> - <image filename="unshade_focused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_focused_pressed"> - <image filename="unshade_focused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused"> - <image filename="unshade_unfocused.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused_prelight"> - <image filename="unshade_unfocused_prelight.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> -<draw_ops name="unshade_unfocused_pressed"> - <image filename="unshade_unfocused_pressed.png" x="0" y="2" width="object_width" height="object_height" /> -</draw_ops> - - -<!-- FRAME STYLES --> -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="rounded_titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="rounded_border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="rounded_border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay"><draw_ops><line x1="0" y1="height-1" x2="width" y2="height-1" color="C_border_focused" /></draw_ops></piece> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay"><draw_ops><line x1="0" y1="height-1" x2="width" y2="height-1" color="C_border_unfocused" /></draw_ops></piece> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="rounded_titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="rounded_border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="rounded_border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="borderless" geometry="borderless"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_focused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_unfocused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_attached_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_focused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_right_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_unfocused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_right_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_focused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_fill_focused" /> - <piece position="title" draw_ops="title_focused" /> - <piece position="overlay" draw_ops="border_left_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="prelight" draw_ops="menu_focused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="prelight" draw_ops="shade_focused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_focused" /> - <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed" /> - - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_unfocused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_fill_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <piece position="overlay" draw_ops="border_left_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused" /> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight" /> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed" /> - <button function="maximize" state="normal" draw_ops="maximize_unfocused" /> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" /> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" /> - <button function="minimize" state="normal" draw_ops="minimize_unfocused" /> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" /> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" /> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="unshade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="prelight"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="prelight"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- FRAME STYLE SETS --> -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused" /> - <frame focus="no" state="normal" resize="both" style="normal_unfocused" /> - <frame focus="yes" state="maximized" style="normal_max_focused" /> - <frame focus="no" state="maximized" style="normal_max_unfocused" /> - <frame focus="yes" state="shaded" style="normal_focused" /> - <frame focus="no" state="shaded" style="normal_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused" /> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused" /> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused" /> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="dialog_focused" /> - <frame focus="no" state="shaded" style="dialog_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused" /> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="modal_dialog_focused" /> - <frame focus="no" state="shaded" style="modal_dialog_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused" /> - <frame focus="no" state="normal" resize="both" style="utility_unfocused" /> - <frame focus="yes" state="maximized" style="blank" /> - <frame focus="no" state="maximized" style="blank" /> - <frame focus="yes" state="shaded" style="utility_focused" /> - <frame focus="no" state="shaded" style="utility_unfocused" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused" /> - <frame focus="no" state="normal" resize="both" style="border_unfocused" /> - <frame focus="yes" state="maximized" style="borderless" /> - <frame focus="no" state="maximized" style="borderless" /> - <frame focus="yes" state="shaded" style="blank" /> - <frame focus="no" state="shaded" style="blank" /> - <frame focus="yes" state="maximized_and_shaded" style="blank" /> - <frame focus="no" state="maximized_and_shaded" style="blank" /> -</frame_style_set> - -<!-- WINDOWS --> -<window type="normal" style_set="normal_style_set" /> -<window type="dialog" style_set="dialog_style_set" /> -<window type="modal_dialog" style_set="modal_dialog_style_set" /> -<window type="menu" style_set="utility_style_set" /> -<window type="utility" style_set="utility_style_set" /> -<window type="border" style_set="border_style_set" /> - -</metacity_theme> diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize.png deleted file mode 100644 index ed28415..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused.png deleted file mode 100644 index ed28415..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_normal.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_normal.png deleted file mode 100644 index ed28415..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_normal.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_prelight.png deleted file mode 100644 index cbf47fc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_pressed.png deleted file mode 100644 index cbf47fc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_focused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused.png deleted file mode 100644 index 9e9a998..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused_prelight.png deleted file mode 100644 index cbf47fc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused_pressed.png deleted file mode 100644 index cbf47fc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/minimize_unfocused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade.png deleted file mode 100644 index 9d1ff7d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused.png deleted file mode 100644 index 9d1ff7d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_normal.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_normal.png deleted file mode 100644 index 9d1ff7d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_normal.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_prelight.png deleted file mode 100644 index 90655fc..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_pressed.png deleted file mode 100644 index 7f6df00..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_focused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused.png deleted file mode 100644 index de565c0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused_prelight.png deleted file mode 100644 index 9d1ff7d..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused_pressed.png deleted file mode 100644 index 7f6df00..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/shade_unfocused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/thumbnail.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/thumbnail.png deleted file mode 100644 index 9d7e1e1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/thumbnail.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize.png deleted file mode 100644 index 96b90c8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused.png deleted file mode 100644 index 96b90c8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_normal.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_normal.png deleted file mode 100644 index 96b90c8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_normal.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_prelight.png deleted file mode 100644 index 79512c0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_pressed.png deleted file mode 100644 index 79512c0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_focused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused.png deleted file mode 100644 index b0bcad9..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused_prelight.png deleted file mode 100644 index 79512c0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused_pressed.png deleted file mode 100644 index 79512c0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unmaximize_unfocused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade.png deleted file mode 100644 index ca57d05..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused.png deleted file mode 100644 index ca57d05..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_normal.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_normal.png deleted file mode 100644 index ca57d05..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_normal.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_prelight.png deleted file mode 100644 index b20ccf6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_pressed.png deleted file mode 100644 index c8703e4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_focused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused.png deleted file mode 100644 index de565c0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused_prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused_prelight.png deleted file mode 100644 index ca57d05..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused_prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused_pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused_pressed.png deleted file mode 100644 index c8703e4..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/metacity-1/unshade_unfocused_pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-active.png deleted file mode 100644 index 8bc95c7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-inactive.png deleted file mode 100644 index 8bc95c7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-left-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-left-active.png deleted file mode 100644 index e941aa3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-left-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-left-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-left-inactive.png deleted file mode 100644 index e941aa3..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-left-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-right-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-right-active.png deleted file mode 100644 index 1a12f3c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-right-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-right-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-right-inactive.png deleted file mode 100644 index 1a12f3c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/bottom-right-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-active.png deleted file mode 100644 index cca5b27..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-inactive.png deleted file mode 100644 index bfa1f48..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-prelight.png deleted file mode 100644 index e472211..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-pressed.png deleted file mode 100644 index f819c9c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/close-pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-active.png deleted file mode 100644 index ab5afec..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-inactive.png deleted file mode 100644 index 442d43a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-prelight.png deleted file mode 100644 index f93b58f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-pressed.png deleted file mode 100644 index 30d5d09..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/hide-pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/left-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/left-active.png deleted file mode 100644 index 2ddb2df..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/left-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/left-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/left-inactive.png deleted file mode 100644 index 2ddb2df..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/left-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-active.png deleted file mode 100644 index f979d9e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-inactive.png deleted file mode 100644 index 2cc5d48..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-prelight.png deleted file mode 100644 index 8c56a4b..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-pressed.png deleted file mode 100644 index 587b794..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/maximize-pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-active.png deleted file mode 100644 index 9038f15..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-inactive.png deleted file mode 100644 index 9038f15..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-prelight.png deleted file mode 100644 index 9038f15..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-pressed.png deleted file mode 100644 index 9038f15..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/menu-pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/right-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/right-active.png deleted file mode 100644 index 2ddb2df..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/right-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/right-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/right-inactive.png deleted file mode 100644 index 2ddb2df..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/right-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-active.png deleted file mode 100644 index 8224a0a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-inactive.png deleted file mode 100644 index 1fec60a..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-prelight.png deleted file mode 100644 index 9bc49f7..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-pressed.png deleted file mode 100644 index f008f3c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/shade-pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-active.png deleted file mode 100644 index cb2a3e0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-inactive.png deleted file mode 100644 index acb1e56..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-prelight.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-prelight.png deleted file mode 100644 index 3a0dbb1..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-prelight.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-pressed.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-pressed.png deleted file mode 100644 index 41dda57..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/stick-pressed.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/themerc b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/themerc deleted file mode 100644 index 1e9f00a..0000000 --- a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/themerc +++ /dev/null @@ -1,25 +0,0 @@ -#button_layout=O|HMC -button_offset=2 -button_spacing=2 - -full_width_title=true - -title_horizontal_offset=0 -title_vertical_offset_active=1 -title_vertical_offset_inactive=1 -title_shadow_active=false -title_shadow_inactive=false - -active_text_color=#d8dee9 -active_text_shadow_color=#d8dee9 -inactive_text_color=#778085 -inactive_text_shadow_color=#778085 - -shadow_delta_height=2 -shadow_delta_width=0 -shadow_delta_x=0 -shadow_delta_y=-4 -shadow_opacity=46 - -show_popup_shadow=true -show_app_icon=true diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-active-shaded.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-active-shaded.png deleted file mode 100644 index 0211f89..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-active-shaded.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-active.png deleted file mode 100644 index f4f8c9e..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-inactive.png deleted file mode 100644 index c46334c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-1-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-2-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-2-active.png deleted file mode 100644 index 8fcc691..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-2-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-2-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-2-inactive.png deleted file mode 100644 index 4b18aa8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-2-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-3-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-3-active.png deleted file mode 100644 index 56fdfb0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-3-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-3-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-3-inactive.png deleted file mode 100644 index c1d30f8..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-3-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-4-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-4-active.png deleted file mode 100644 index 70e8c90..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-4-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-4-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-4-inactive.png deleted file mode 100644 index 5d6aa87..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-4-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-5-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-5-active.png deleted file mode 100644 index c079ccb..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-5-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-5-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-5-inactive.png deleted file mode 100644 index 9a1ab89..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/title-5-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-active-shaded.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-active-shaded.png deleted file mode 100644 index 7433f4c..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-active-shaded.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-active.png deleted file mode 100644 index 0534ee6..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-inactive.png deleted file mode 100644 index b9238f5..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-left-inactive.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-active-shaded.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-active-shaded.png deleted file mode 100644 index 44ec7ed..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-active-shaded.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-active.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-active.png deleted file mode 100644 index 0d1b15f..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-active.png and /dev/null differ diff --git a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-inactive.png b/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-inactive.png deleted file mode 100644 index 3136ca0..0000000 Binary files a/homeConfig/dotfiles/themes/Juno-ocean/xfwm4/top-right-inactive.png and /dev/null differ diff --git a/homeConfig/home.nix b/homeConfig/home.nix index 9c88138..72469ee 100644 --- a/homeConfig/home.nix +++ b/homeConfig/home.nix @@ -1,12 +1,28 @@ -{ user, ... }: +{ me, config, ... }: { home.stateVersion = "22.11"; - programs.home-manager.enable = true; home = { - username = user; - homeDirectory = "/home/${user}"; + username = me; + homeDirectory = "/home/${me}"; }; + imports = ./modules; + + config.modules = { + gui.enable = true; + browsers.enable = true; + alacritty.enable = true; + fun.enable = true; + + bash.enable = true; + git.enable = true; + gpg.enable = true; + neovim.enable = true; + + utils.enable = true; + security.enable = true; + corn.enable = true; + }; } diff --git a/homeConfig/modules/alacritty.nix b/homeConfig/modules/alacritty.nix deleted file mode 100644 index 0c4e34a..0000000 --- a/homeConfig/modules/alacritty.nix +++ /dev/null @@ -1,92 +0,0 @@ -{ pkgs, lib, config, ... }: - -with lib; -let - cfg = config.modules.alacritty; - -in -{ options.modules.alacritty = { enable = mkEnableOption "alacritty"; }; - config = mkIf cfg.enable { - programs.alacritty = { - enable = true; - settings = { - scrolling = { - history = 10000; - multiplier = 3; - }; - - window = { - opacity = 0.95; - }; - - colors = { - primary = { - background = 0x0d1117; - foreground = 0xb3b1ad; - }; - - normal = { - black = 0x484f58; - red = 0xff7b72; - green = 0x3fb950; - yellow = 0xd29922; - blue = 0x58a6ff; - magenta = 0xbc8cff; - cyan = 0x39c5cf; - white = 0xb1bac4; - }; - - bright = { - black = 0x6e7681; - red = 0xffa198; - green = 0x56d364; - yellow = 0xe3b341; - blue = 0x79c0ff; - magenta = 0xd2a8ff; - cyan = 0x56d4dd; - white = 0xf0f6fc; - }; - }; - - font = { - normal = { - family = terminus-nerdfont; - style = Medium; - }; - - bold = { - family = terminus-nerdfont; - style = Bold; - }; - - italic = { - family = terminus-nerdfont; - style = Medium Italic; - }; - - bold_italic = { - family = terminus-nerdfont; - style = Bold Italic; - }; - }; - - size = 14; - - cursor = { - color = 0xffffff; - style = { - shape = Block; - blinking = Always; - blink-interval = 750; - }; - }; - }; - }; - - home.packages = with pkgs; [ - terminus-nerdfont - ranger - highlight - ]; - }; -} diff --git a/homeConfig/modules/alacritty/config/alacritty.nix b/homeConfig/modules/alacritty/config/alacritty.nix new file mode 100644 index 0000000..28053c8 --- /dev/null +++ b/homeConfig/modules/alacritty/config/alacritty.nix @@ -0,0 +1,78 @@ +{ pkgs, lib, ... }: + +with lib; +{ + enable = true; + settings = { + scrolling = { + history = 10000; + multiplier = 3; + }; + + window = { + opacity = 0.95; + }; + + colors = { + primary = { + background = 0x0d1117; + foreground = 0xb3b1ad; + }; + + normal = { + black = 0x484f58; + red = 0xff7b72; + green = 0x3fb950; + yellow = 0xd29922; + blue = 0x58a6ff; + magenta = 0xbc8cff; + cyan = 0x39c5cf; + white = 0xb1bac4; + }; + + bright = { + black = 0x6e7681; + red = 0xffa198; + green = 0x56d364; + yellow = 0xe3b341; + blue = 0x79c0ff; + magenta = 0xd2a8ff; + cyan = 0x56d4dd; + white = 0xf0f6fc; + }; + }; + + font = { + normal = { + family = terminus-nerdfont; + style = Medium; + }; + + bold = { + family = terminus-nerdfont; + style = Bold; + }; + + italic = { + family = terminus-nerdfont; + style = Medium Italic; + }; + + bold_italic = { + family = terminus-nerdfont; + style = Bold Italic; + }; + }; + + size = 14; + + cursor = { + color = 0xffffff; + style = { + shape = Block; + blinking = Always; + blink-interval = 750; + }; + }; + }; +} diff --git a/homeConfig/modules/alacritty/default.nix b/homeConfig/modules/alacritty/default.nix new file mode 100644 index 0000000..e2a7aad --- /dev/null +++ b/homeConfig/modules/alacritty/default.nix @@ -0,0 +1,18 @@ +{ pkgs, lib, config, ... }: + +with lib; +let + cfg = config.modules.alacritty; + +in +{ options.modules.alacritty = { enable = mkEnableOption "alacritty"; }; + config = mkIf cfg.enable { + programs.alacritty = import ./alacritty.nix { inherit pkgs; }; + + home.packages = with pkgs; [ + terminus-nerdfont + ranger + highlight + ]; + }; +} diff --git a/homeConfig/modules/bash.nix b/homeConfig/modules/bash.nix deleted file mode 100644 index 4220774..0000000 --- a/homeConfig/modules/bash.nix +++ /dev/null @@ -1,202 +0,0 @@ -{ pkgs, lib, config, ... }: - -with lib; -let - cfg = config.modules.bash; - -in -{ options.modules.bash = { enable = mkEnableOption "bash"; }; - config = mkIf cfg.enable { - programs.bash = { - enable = true; - enableCompletion = true; - initExtra = '' - eval "$(direnv hook bash)" - - is_ssh_session() { - if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then - return 0 - else - return 1 - fi - } - - function set_ps1_prompt() { - local git_branch="" - local flake_icon="" - local cur_dir="" - - if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then - git_branch="$(git symbolic-ref --short HEAD 2>/dev/null)" - - if [ $? -ne 0 ]; then - git_branch="$(git rev-parse --short HEAD 2>/dev/null)" - fi - - git_branch=" \[\033[01;31m\]$git_branch󰘬:\[\033[00m\]" - - if [ -f "$(git rev-parse --show-toplevel)/flake.nix" ]; then - # If it exists, set the flake icon and color it blue - flake_icon="\[\033[01;34m\] \[\033[00m\]" - fi - - git_root="$(basename "$(git rev-parse --show-toplevel)")" - - cur_dir=$(realpath --relative-to=$(git rev-parse --show-toplevel) .) - if [ "$cur_dir" == "." ]; then - cur_dir="\[\033[01;34m\] $git_root\[\033[00m\]" - else - cur_dir="\[\033[01;34m\] $git_root/$cur_dir\[\033[00m\]" - fi - else - cur_dir="\[\033[01;34m\]\w\[\033[00m\]" - fi - - if [ -n "''${IN_NIX_SHELL:+x}" ]; then - PS1="$cur_dir\n$flake_icon\[\033[01;32m\]nixShell>$git_branch\[\033[00m\]" - else - if ! is_ssh_session; then - PS1="\n$cur_dir\n$flake_icon\[\033[01;32m\]>$git_branch\[\033[00m\]" - else - PS1="\n\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]\u@\h:\[\033[00m\] " - fi - fi - unset flake_icon - } - PROMPT_COMMAND="set_ps1_prompt; $PROMPT_COMMAND" - ''; - - profileExtra = '' - if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then - exec sway - fi - ''; - - bashrcExtra = '' - function cdg() { - if [[ $1 == "--help" ]]; then - echo "A simple utility for navigating to the root of a git repo" - return 0 - fi - - # Check for invalid command - if [[ -n "$1" ]]; then - echo "Invalid command: $1. Try 'cdg --help'." - return 1 - fi - - local root_dir - root_dir=$(git rev-parse --show-toplevel 2>/dev/null) - local git_status=$? - - if [ $git_status -ne 0 ]; then - echo "Error: Not a git repo." - return 1 - fi - - cd "$root_dir" - } - - function ldv() { - if [[ $1 == "help" ]] || [[ $1 == "-h" ]] || [[ $1 == "--help" ]]; then - cat << EOF - ldv - A simple utility for setting up development environments effortlessly. - Commands: - ldv Start a preconfigured nix shell. - init Create a new dev template in the current working directory. - help Show available commands and options. - - Contributions welcome: https://github.com/itme-brain/ldv - EOF - - elif [[ $1 == "init" ]] || [[ $1 == "-i" ]] || [[ $1 == "--init" ]]; then - if [[ -e ./shell.nix ]] || [[ -e ./.envrc ]]; then - cat << EOF - Existing environment found. - Initialization cancelled. - EOF - return - fi - - cat << EOF - Initializing a new environment... - Select an environment: - 1. Web - 2. Elixir - 3. Haskell - EOF - - read -p "Enter the number of your choice: " choice - - case $choice in - 1) - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/shells/web.nix -O shell.nix - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/flake -O flake.nix - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/envrc -O .envrc - direnv allow - ;; - 2) - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/shells/elixir.nix -O shell.nix - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/flake -O flake.nix - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/envrc -O .envrc - direnv allow - ;; - 3) - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/shells/haskell.nix -O shell.nix - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/flake -O flake.nix - wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/envrc -O .envrc - direnv allow - ;; - *) - echo "Invalid choice." - ;; - esac - elif [[ -z $1 ]]; then - cat << EOF - Select an environment: - 1. Web - 2. Elixir - 3. Haskell - EOF - - read -p "Enter the number of your choice: " choice - - case $choice in - 1) - (nix develop github:itme-brain/ldv#web) - ;; - 2) - (nix develop github:itme-brain/ldv#elixir) - ;; - 3) - (nix develop github:itme-brain/ldv#haskell) - ;; - # Add more cases here... - *) - echo "Invalid choice." - ;; - esac - else - echo "Error: Invalid command. Try 'ldv --help'" - fi - } - ''; - - shellAliases = { - hmup = "home-manager switch --flake '$HOME/Documents/projects/nixos#bryan'"; - nixup = "sudo nixos-rebuild switch --flake '$HOME/Documents/projects/nixos#socrates'"; - }; - }; - - services.gpg-agent.enableBashIntegration = true; - programs = { - direnv.nix-direnv.enable = true; - ripgrep.enable = true; - lsd = { - enable = true; - enableAliases = true; - }; - }; - }; -} diff --git a/homeConfig/modules/bash/config/alias.nix b/homeConfig/modules/bash/config/alias.nix new file mode 100644 index 0000000..b647675 --- /dev/null +++ b/homeConfig/modules/bash/config/alias.nix @@ -0,0 +1,4 @@ +'' +hmup = "home-manager switch --flake '$HOME/Documents/projects/nixos#bryan'"; +nixup = "sudo nixos-rebuild switch --flake '$HOME/Documents/projects/nixos#socratesV2'"; +'' diff --git a/homeConfig/modules/bash/config/bashprofile.nix b/homeConfig/modules/bash/config/bashprofile.nix new file mode 100644 index 0000000..99ae4de --- /dev/null +++ b/homeConfig/modules/bash/config/bashprofile.nix @@ -0,0 +1,5 @@ +'' +if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then + exec sway +fi +'' diff --git a/homeConfig/modules/bash/config/bashrc.nix b/homeConfig/modules/bash/config/bashrc.nix new file mode 100644 index 0000000..724056d --- /dev/null +++ b/homeConfig/modules/bash/config/bashrc.nix @@ -0,0 +1,110 @@ +'' +function cdg() { + if [[ $1 == "--help" ]]; then + echo "A simple utility for navigating to the root of a git repo" + return 0 + fi + + # Check for invalid command + if [[ -n "$1" ]]; then + echo "Invalid command: $1. Try 'cdg --help'." + return 1 + fi + + local root_dir + root_dir=$(git rev-parse --show-toplevel 2>/dev/null) + local git_status=$? + + if [ $git_status -ne 0 ]; then + echo "Error: Not a git repo." + return 1 + fi + + cd "$root_dir" +} + +function ldv() { +if [[ $1 == "help" ]] || [[ $1 == "-h" ]] || [[ $1 == "--help" ]]; then + cat << EOF +ldv +A simple utility for setting up development environments effortlessly. +Commands: + ldv Start a preconfigured nix shell. + init Create a new dev template in the current working directory. + help Show available commands and options. + +Contributions welcome: https://github.com/itme-brain/ldv +EOF + +elif [[ $1 == "init" ]] || [[ $1 == "-i" ]] || [[ $1 == "--init" ]]; then + if [[ -e ./shell.nix ]] || [[ -e ./.envrc ]]; then + cat << EOF +Existing environment found. +Initialization cancelled. +EOF + return + fi + + cat << EOF +Initializing a new environment... +Select an environment: +1. Web +2. Elixir +3. Haskell +EOF + + read -p "Enter the number of your choice: " choice + + case $choice in + 1) + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/shells/web.nix -O shell.nix + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/flake -O flake.nix + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/envrc -O .envrc + direnv allow + ;; + 2) + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/shells/elixir.nix -O shell.nix + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/flake -O flake.nix + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/envrc -O .envrc + direnv allow + ;; + 3) + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/shells/haskell.nix -O shell.nix + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/flake -O flake.nix + wget -q https://raw.githubusercontent.com/itme-brain/ldv/main/utils/envrc -O .envrc + direnv allow + ;; + *) + echo "Invalid choice." + ;; + esac +elif [[ -z $1 ]]; then + cat << EOF +Select an environment: +1. Web +2. Elixir +3. Haskell +EOF + + read -p "Enter the number of your choice: " choice + + case $choice in + 1) + (nix develop github:itme-brain/ldv#web) + ;; + 2) + (nix develop github:itme-brain/ldv#elixir) + ;; + 3) + (nix develop github:itme-brain/ldv#haskell) + ;; + # Add more cases here... + *) + echo "Invalid choice." + ;; + esac +else + echo "Error: Invalid command. Try 'ldv --help'" +fi +} +'' diff --git a/homeConfig/modules/bash/config/prompt.nix b/homeConfig/modules/bash/config/prompt.nix new file mode 100644 index 0000000..4e7b6b7 --- /dev/null +++ b/homeConfig/modules/bash/config/prompt.nix @@ -0,0 +1,55 @@ +'' +eval "$(direnv hook bash)" + +is_ssh_session() { + if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then + return 0 + else + return 1 + fi +} + +function set_ps1_prompt() { + local git_branch="" + local flake_icon="" + local cur_dir="" + + if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then + git_branch="$(git symbolic-ref --short HEAD 2>/dev/null)" + + if [ $? -ne 0 ]; then + git_branch="$(git rev-parse --short HEAD 2>/dev/null)" + fi + + git_branch=" \[\033[01;31m\]$git_branch󰘬:\[\033[00m\]" + + if [ -f "$(git rev-parse --show-toplevel)/flake.nix" ]; then + # If it exists, set the flake icon and color it blue + flake_icon="\[\033[01;34m\] \[\033[00m\]" + fi + + git_root="$(basename "$(git rev-parse --show-toplevel)")" + + cur_dir=$(realpath --relative-to=$(git rev-parse --show-toplevel) .) + if [ "$cur_dir" == "." ]; then + cur_dir="\[\033[01;34m\] $git_root\[\033[00m\]" + else + cur_dir="\[\033[01;34m\] $git_root/$cur_dir\[\033[00m\]" + fi + else + cur_dir="\[\033[01;34m\]\w\[\033[00m\]" + fi + + if [ -n "''${IN_NIX_SHELL:+x}" ]; then + PS1="$cur_dir\n$flake_icon\[\033[01;32m\]nixShell>$git_branch\[\033[00m\]" + else + if ! is_ssh_session; then + PS1="\n$cur_dir\n$flake_icon\[\033[01;32m\]>$git_branch\[\033[00m\]" + else + PS1="\n\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]\u@\h:\[\033[00m\] " + fi + fi + unset flake_icon +} +PROMPT_COMMAND="set_ps1_prompt; $PROMPT_COMMAND" +'' diff --git a/homeConfig/modules/bash/default.nix b/homeConfig/modules/bash/default.nix new file mode 100644 index 0000000..5b131d1 --- /dev/null +++ b/homeConfig/modules/bash/default.nix @@ -0,0 +1,30 @@ +{ lib, config, ... }: + +with lib; +let + cfg = config.modules.bash; + +in +{ options.modules.bash = { enable = mkEnableOption "bash"; }; + config = mkIf cfg.enable { + programs.bash = { + enable = true; + enableCompletion = true; + + initExtra = import ./config/prompt.nix; + profileExtra = import ./config/bashprofile.nix; + bashrcExtra = import ./bashrc.nix; + shellAliases = import ./alias.nix; + }; + + services.gpg-agent.enableBashIntegration = true; + programs = { + direnv.nix-direnv.enable = true; + ripgrep.enable = true; + lsd = { + enable = true; + enableAliases = true; + }; + }; + }; +} diff --git a/homeConfig/modules/browsers.nix b/homeConfig/modules/browsers.nix deleted file mode 100644 index 71c90d6..0000000 --- a/homeConfig/modules/browsers.nix +++ /dev/null @@ -1,52 +0,0 @@ -{ pkgs, lib, config, user, ... }: - -with lib; -let - cfg = config.modules.firefox; - -in -{ options.modules.firefox = { enable = mkEnableOption "firefox"; }; - config = mkIf cfg.enable { - programs.firefox = { - enabled = true; - profiles.${user} = { - isDefault = true; - search.default = "Startpage"; - extensions = with pkgs.nur.repos.rycee.firefox-addons; [ - ublock-origin - darkreader - keepassxc-browser - multi-account-containers - ]; - - settings = { - "extensions.activeThemeID" = "firefox-compact-dark@mozilla.org"; - - "dom.security.https_only_mode" = true; - "media.peerconnection.enabled" = false; - "browser.formfill.enable" = false; - - "privacy.sanitize.sanitizeOnShutdown" = true; - "toolkit.telemetry.enabled" = false; - "toolkit.telemetry.archive.enabled" = false; - "datareporting.healthreport.uploadEnabled" = false; - "browser.ping-centre.telemetry" = false; - - "privacy.resistFingerprinting" = true; - "privacy.trackingprotection.fingerprinting.enabled" = true; - "privacy.trackingprotection.cryptomining.enabled" = true; - - "geo.enabled" = false; - "privacy.trackingprotection.enabled" = true; - }; - }; - }; - - home.packages = [ - google-chrome - (tor-browser-bundle-bin.override { - useHardenedMalloc = false; # NixOS bug requires this - }) - ]; - }; -} diff --git a/homeConfig/modules/browsers/config/bryan.nix b/homeConfig/modules/browsers/config/bryan.nix new file mode 100644 index 0000000..5677953 --- /dev/null +++ b/homeConfig/modules/browsers/config/bryan.nix @@ -0,0 +1,33 @@ +{ pkgs, ... }: + +{ + isDefault = true; + search.default = "Startpage"; + extensions = with pkgs.nur.repos.rycee.firefox-addons; [ + ublock-origin + darkreader + keepassxc-browser + multi-account-containers + ]; + + settings = { + "extensions.activeThemeID" = "firefox-compact-dark@mozilla.org"; + + "dom.security.https_only_mode" = true; + "media.peerconnection.enabled" = false; + "browser.formfill.enable" = false; + + "privacy.sanitize.sanitizeOnShutdown" = true; + "toolkit.telemetry.enabled" = false; + "toolkit.telemetry.archive.enabled" = false; + "datareporting.healthreport.uploadEnabled" = false; + "browser.ping-centre.telemetry" = false; + + "privacy.resistFingerprinting" = true; + "privacy.trackingprotection.fingerprinting.enabled" = true; + "privacy.trackingprotection.cryptomining.enabled" = true; + + "geo.enabled" = false; + "privacy.trackingprotection.enabled" = true; + }; +} diff --git a/homeConfig/modules/browsers/default.nix b/homeConfig/modules/browsers/default.nix new file mode 100644 index 0000000..33704b8 --- /dev/null +++ b/homeConfig/modules/browsers/default.nix @@ -0,0 +1,22 @@ +{ pkgs, lib, config, me, ... }: + +with lib; +let + cfg = config.modules.browsers; + +in +{ options.modules.browsers = { enable = mkEnableOption "browsers"; }; + config = mkIf cfg.enable { + programs.firefox = { + enabled = true; + profiles.${me} = import (config/${me}.nix) { inherit pkgs; }; + }; + + home.packages = [ + google-chrome + (tor-browser-bundle-bin.override { + useHardenedMalloc = false; # NixOS bug requires this + }) + ]; + }; +} diff --git a/homeConfig/modules/corn.nix b/homeConfig/modules/corn/default.nix similarity index 100% rename from homeConfig/modules/corn.nix rename to homeConfig/modules/corn/default.nix diff --git a/homeConfig/modules/default.nix b/homeConfig/modules/default.nix index a1c15cc..11196be 100644 --- a/homeConfig/modules/default.nix +++ b/homeConfig/modules/default.nix @@ -1,12 +1 @@ -{ pkgs, lib, config, ... }: - -with lib; -let - cfg = config.modules.PROGRAM; - -in -{ options.modules.PROGRAM = { enable = mkEnableOption "PROGRAM"; }; - config = mkIf cfg.enable { - - }; -} +{ imports = ./.; } diff --git a/homeConfig/modules/fun.nix b/homeConfig/modules/fun/default.nix similarity index 62% rename from homeConfig/modules/fun.nix rename to homeConfig/modules/fun/default.nix index 0f69db0..22583d5 100644 --- a/homeConfig/modules/fun.nix +++ b/homeConfig/modules/fun/default.nix @@ -2,10 +2,10 @@ with lib; let - cfg = config.modules.PROGRAM; + cfg = config.modules.fun; in -{ options.modules.PROGRAM = { enable = mkEnableOption "PROGRAM"; }; +{ options.modules.fun = { enable = mkEnableOption "fun"; }; config = mkIf cfg.enable { home.packages = with pkgs; [ spotify diff --git a/homeConfig/modules/git.nix b/homeConfig/modules/git.nix deleted file mode 100644 index 286053c..0000000 --- a/homeConfig/modules/git.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ pkgs, lib, config, ... }: - -with lib; -let cfg = config.modules.git; - -in -{ - options.modules.git = { enable = mkEnableOption "git"; }; - config = mkIf cfg.enable { - programs = { - git = { - enable = true; - userName = "Bryan Ramos"; - userEmail = "bryan@ramos.codes"; - signingKey = "F1F3466458452B2DF351F1E864D12BA95ACE1F2D"; - - extraConfig = { - init = { defaultBranch = "main"; }; - }; - - ignores = [ - "node_modules" - ]; - }; - - gh = { - enable = true; - settings.git_protocol = "ssh"; - }; - - }; - }; -} diff --git a/homeConfig/modules/git/config/git.nix b/homeConfig/modules/git/config/git.nix new file mode 100644 index 0000000..346f3d3 --- /dev/null +++ b/homeConfig/modules/git/config/git.nix @@ -0,0 +1,14 @@ +{ + enable = true; + userName = "Bryan Ramos"; + userEmail = "bryan@ramos.codes"; + signingKey = "F1F3466458452B2DF351F1E864D12BA95ACE1F2D"; + + extraConfig = { + init = { defaultBranch = "main"; }; + }; + + ignores = [ + "node_modules" + ]; +} diff --git a/homeConfig/modules/git/default.nix b/homeConfig/modules/git/default.nix new file mode 100644 index 0000000..a3d64c3 --- /dev/null +++ b/homeConfig/modules/git/default.nix @@ -0,0 +1,19 @@ +{ lib, config, ... }: + +with lib; + let cfg = config.modules.git; + +in +{ options.modules.git = { enable = mkEnableOption "git"; }; + config = mkIf cfg.enable { + programs = { + git = import ./config/git.nix; + + gh = { + enable = true; + settings.git_protocol = "ssh"; + }; + + }; + }; +} diff --git a/homeConfig/modules/gpg.nix b/homeConfig/modules/gpg.nix deleted file mode 100644 index f018afc..0000000 --- a/homeConfig/modules/gpg.nix +++ /dev/null @@ -1,133 +0,0 @@ -{ pkgs, lib, config, ... }: - -with lib; -let cfg = config.modules.gpg; - -in -{ options.modules.gpg = { enable = mkEnableOption "gpg"; }; - config = mkIf cfg.enable { - programs.gpg = { - enable = true; - publicKeys."bryan@ramos.codes" = { - trust = 5; - text = '' - -----BEGIN PGP PUBLIC KEY BLOCK----- - - mQINBGP0BgMBEAC2v+n9plI0p+TqIrmvz7JHoYbtUK3NDkyNeIsgS+sE5nfLB1Ef - vQCR0HdysgpmAUywqEx+YK7Nkr4szoK8nDLpgpSfaDZNss+ePu6eYVTVktelBn2Q - 5f5MKDILY9mkmDPgzvpDDhkFXGK3cpeUX+X5vY1W76yuRgm6zBDIux+yf027nw3U - phesn/WlWXRsmAXG2helt1nB6Foj6LjgwRG/aKMI8cQq0JS13cfUZO1nq2ifM0pm - 4HqWgbZOKYWHsoOw4qNiuxWwVoL5E7UQW2MEyxZmLZaNohEpReYpI0N9FGB/AZYt - iKn9SO9SmG+afE+gxrExJYZSGVHHKlPc79dcIBVvYEA8dV/OJBjHc83EhUQVU4vQ - x1y386HYctlHVWZ64tc1XROlQe++NxfgQZz4jnvGzHMakr8/IZAV3LP3PGVAa7kx - iVrTE+WodK/kELm1PMLWlWmXT3GiumOngm4y1dWtUirqxni/Nl7BA4eHM3Q3OZiR - eEb80FkbXCoaP5REU1EdVlAW/ZGP+mTwiqekT5ThocaD/BgYSy9UlGf5YyOEnqOt - G+0JfS3mG0PysFjF0B5dMyBquikD4zVBo3+a7ppbrAage3EFhHiX0Les0q566I8p - 0hlXS7nz0I4xAxxRLfydwJptndjZgeiq9o1XMRA0JUZQhzuk2VYQ6MSVhwARAQAB - tB9CcnlhbiBSYW1vcyA8YnJ5YW5AcmFtb3MuY29kZXM+iQJOBBMBCgA4FiEE8fNG - ZFhFKy3zUfHoZNErqVrOHy0FAmP0BgMCGwEFCwkIBwIGFQoJCAsCBBYCAwECHgEC - F4AACgkQZNErqVrOHy25SBAArl6JHrDm3fLXPhwtHf9WzxQvW6BmMgLQQ+bGGGba - A3e+eKb0ibSmXH9M22GOSxKqk2BePtoLFdyDKDFNwYDwzj0ioQ80Q9YR6aoSuwOf - HwXeiYsgK76IbsRciXSv6JgAsXO9UOGTlHlTgFsE3AMjnCgPrHbV3SZdkFt71XMo - fbRmYwC33HK6QNUXeq4O+gGO5vJI8Wx1mtmy6kq/3srzMpCGybg9M8C5AQoazo/u - WOjO57QkUdbAXO8HbHInexsstJJn+0o/FLfMoOy7v/cpzTLbbpONRzQbEq1/Utt1 - TaIc1FTWT1b4oWnIGv2stlCGzx9IgsseJocSBG+kGgkKwVBWIcCwq+cCdfkOReCk - VHTg1oRH8t078346KuxEaA7ofKaByirQosZUeF5WTyMuJUDf1mNxxZngRKjIHD3c - lmK8REnYjQ4b+RfznfV8qc8tH624EUTNlT123ufUIvba0fR8OryhdxPOOgdLjlNL - XdkfG5oENnBy3EzGn7xgR6sCRtlFSEcfKQFcec1fjqYMHxPAExajmSHLwr5107LT - 4B+F5eOt9CBFKW/cxnVwG/3oW0mzLa231V0eYquiYkbYHVswLdhr02vyHpLXXVZk - JgiLSXIJ6yKwLA9W8HgHgDYCp899Jl+wqhFLxr7oUjXcLhuZO9Q3P3req0SJRfUu - GTO5Ag0EY/QGQAEQANsJBUpkk0ZW5swgzC/c7pxv4VGS8VZcr3Isol8NHAUUwHyo - jqAYNtqW8PQLgQ34uuuC5GCS2hxN57WdgmSkv/to8THl6IbE1V/YVaaGXX9yiJmH - 72//kc9g2prXyrtObwVhgKiYQxPPegm9ubLkb1khCTLhozCJDM1wbQxmE5I2cICC - 5lwCi1NDsAyvUtWANzb0EXPZh2iPv8sWMh3RStAGSsboHzHYdR9RZGRjKG/ET5zv - OBbFpRLFjvMJUL22M0V5FFPbuz+4Aut21wkYdueHtREpUgAcba68Doz75jQb0PEZ - 52hjLKuXVf0/1sEPXUs/sL8kyl6QzIqFIXsrjbw6BrGSdhn6YoY95koCb6AXUrFC - oOXQC5BecTcP7V3GOWDEaDUbjN8mc2t1ujs7KYIqi0UCiHa9m5L2Q/9TyOSLyjSf - 0VKHzib7Ov76GvphbYoQSXWX8R6ogcexQH6aQlXI31ir/HsHkatImYomySZiwNVV - 5PQD/7lbWGjLB6LB9PsyVIVl3uq+sSX7xKeogZkEuTcerKVJjpknisKh6aR/uJRV - KJs2U3MolyVanDb/y6VBJrCOu8ZiCZuDtCntUg8MxeLNFO0MVdgAPiHMtJd8YrzK - bhbkHBufAgOLMbGTYq47bQNuRz/CjIz0xll0tLeS9LD1hcSWX/nMhFgfxDjxABEB - AAGJBGwEGAEKACAWIQTx80ZkWEUrLfNR8ehk0SupWs4fLQUCY/QGQAIbAgJACRBk - 0SupWs4fLcF0IAQZAQoAHRYhBDgB5+1vnI0s1XHgHmq9zRRNZkPIBQJj9AZAAAoJ - EGq9zRRNZkPIMbUQAJaDnJHMMXTNmANva65XjY2eJpoYBCIvd8FodRfFCbAPkNad - MtsCgd2dXZPizTOUNqcOujACd7u3P/VazYT0cUgjx6mpWdvxYuGMCM71WLHKeCaq - bXzzKrNaREMDTsMBn0wrIr5ZEuRsLOi4ZVZ5vFvtMQYnzjNT6gON+fHpaD6sShnR - VWXWaYtQ2ttN2+6gwmKCaqiH2suA+QkI/gPjqdMOeXvu6sMUd5IjaCBJy3Ddyjif - /ZYkJUjDkxG7aC4B2XtGUf0lPG+kiCHGjgTsvIeYYSpi/TyevTF8QNfZWcp/NBcf - ZXhCoUoA62zzQ2SXpydZpryKn8klAYQLLA8mq6v/ljqcwFyLYtx0Cw49Thspo/4r - ba1jzsv5QdBveIKdGjzcuexTaIEFB6rQXIFuVVfn074tpZIO+KmHO/z62i73bbko - 67tm+VDvbgsGUd4536lSKMekbdn0+5ODl76AJCD0M+Vzxkl9X/fg4zgz0vG2Ppiq - 08LqBPidA9EQ+tEHm7OIXk9Z+wApDCb27zwsiygkV9uWXuEaNYjCjUZTEw9CYTuH - CdCPOdeJYBzKpfGXldJo6F6NbLLXywL4ej2Lt99tqFF2tQ3I6SKyYx+I2veYsjKs - 7g29bF4WuU1IVi4Kn144NUzEHOJZKeyYOwEz5+chq9KuYBY8b1OHe1Q5pEFIbVIP - /1pdwhs6zV8tJZOgzLb9q+yLuXH1Fk4YE9wZDh/rK3hpD+KGyNRa+0J70wdYDOqk - 4C9ybAaljvJPXO622Ai/RlFLQVK4KdJ2Ig9mwtIhwBvjnKkCmG502HGRUa3HVpDK - pb9WDrH9eJPxkRew1y7Kl6ua10mNh7vMIbEDzZY36Eovzc127ANy/EQR8OwnI8Vg - 39rCq1wDVeULHmF4j63cm3pHo6LK1OGZjAkg9XjT/aDpuqigcdEmFjmx7RSBPZFC - RZTJ6kcafbnxQfKx7soI7+1AWVSrTt+/XePZPubnFeMlfXtGVXejTG2rCWJqRpGZ - sjwgGiOtcnzvF37TQ4XrWV5T45XeSmG4hsF+zShXqevGulOwGNPtJbmiINTaeKun - 1KxjSVpwkniOQgrWNSFCD2RzSEuQRKSg0XMbgPLbmplVO4WAzhQ/Ry4DpNqjJwkp - 2z5WQ8XhfsxecNBc10pbPGyDUbXk96bZSXc31s5tKIyUaCxMmUu87Z0q9KEaVrGc - Tp69o4LIX8dhEqAx8Mk1AKpk8TsT0Ebc75X+xbzVoiimblUuB/+OrDsK7R0hihIe - TU+1xOJ1gyppkuacOuHioV4k9k4NUwgk+YrSKTrhFEzbM6gcOngTB0VTFzQlEjxB - wxl2qN7f0lFD6F0rLJ0Rm06xIwTNIe/0MfMXAJBB45DFuQINBGP0BlIBEADAkdgW - M8SyGyde5Op/B9yMHNPfuSNRjK4/HHmLez1GTriNwuqor5FRrDCO8VPUbQX/x06O - 2HZj8fJWa+6hc9+giUTXNbYtlMVpZOUVhGxzuy2Y6YE82maBaJ3EB/KBP7zdgvKT - bxmjv5hre9u/LaY6tloCzeaBUWPV9+e5Bxq72qC507V/z6lc+PgxWWfGkmWBuT+v - laHWFb6ZM5ldtcMSdscrLBcxLMnjNIRlIaWpj+tvuInMdV3HrTn/bdHCP/Ybrf95 - DYY+7p+KPGrdXJH121f8qZXRihTJerJOGvGbue6FIJ+wYSEr3nb9bNyym/w+Mk9Z - 0wJZZVfjbqFNcGhTttZWlzdTJwerwj7cGsTtMcuIphhUdLhQns+dBTVKVrqvvHSu - p/w9IpnyDhcgqv8v23xfSCuKooWPn2E1/Pd4enLCHVzmFW1xQDtDunRuxBbHYpM4 - 5gknVdIp8bY23y1fj0mottIfgZZEfiMR6FJxseFcWuG7VdC7VITdgbNl5YDXw4ts - xmg2qrRSNUTkFAKNwIekqwziay4DcnWkoikH+n3bHre5wQqFzHIV03Zo8YcgKvyT - 0hwAvn2wGRoIynInFMi2/314xbAUBq10QhREGOPS3oUvBUZxhTkiBMKVYyKA97JQ - c2Xhrkx9cuZxh3y7j3DflRBW9XLJvbcLGDziTwARAQABiQI2BBgBCgAgFiEE8fNG - ZFhFKy3zUfHoZNErqVrOHy0FAmP0BlICGwwACgkQZNErqVrOHy0dOxAAlNRb0yBq - SLLU/pQHjnqRQsLpXFmokcAVfZcEoODTMmzPf3uKDExkHBsyRjbRrEazMLQZIwIb - 78AXvPx6W+lwkmrZ1IXfTkURMi2RmSSOcjTJzipM4WKkOy6zSg29chnBz8edq8AF - rErYdY5IgGCn3RHtkGjtKRSV0m4cdoO/wqGHtZdxEhmfmAzs+Wwevqb1nzptG3my - ZdEJ5rkgGcnvUjkJo815FjR1fuo0KSuVZVelvWMp6JFYMWc4FUh2bYWymIQ6u8/f - 2v8EnacG/oNHDkZG0edTPU4dClHCtXqejAxazHYUojJkFdWUMoEIJ7VYg23N4WAW - 0qf78uBOuGBjl8g5sOmu/IQpMsO51NiDSw/lGLfPsKJKTIe7N6Jxs8PT66Jqvw2U - 4moKEAcoLGxXkIfY7UMFGflaADzBQEebNiekRMw/SAxB3mRptuQ96QuCrpLE7kmI - KPs0vk3om0Lz59q3JoYmMEoEIMM3Z1j94mp07nyJzKvOREtQYY7WIKG/sgUHekjm - lrUfez8xHCG4G0r4KTiu3rGT/rvCehTxvkl4Gmimeo+XNb7vwcr1O0/DTH3ZCG8o - +mwGnah7T6ch60YFSWm0RkxNozNHWJf5Ee6gVv7nEyB1pbuqhXHliv3hhK+/4SWW - RMwhK4b5axJn9aHTu3rwDdaDpUkkApY4rhq5Ag0EY/QGZAEQAOXjz3loH0/mn+Wn - wermse6fhyW+HJNIcWLdTZ3o44GhbkWb5VxCdb/FuOYIGxeTkF2KjCwHFCHCfN1/ - P8okvsnlGhuiZQRpVHBv1TBPzx4m94unXgEbyPYndKN/KGsJf7iOQ/HRs9CTUcZy - 5hj608Rd/Wr+mzzwOG7QIBEEjNhA5NhjpvWpbPGkOgVkYeMobyDmJjoUi7rnIoq+ - 9XLV/wiBneXcinAFZVqbGCRNxhjRBhKubOjWftNfHCtZu96cCoGxDRwE+z6BVre4 - iv7VMmXQDPlISUFUa7cu9R2WTny2u09SPpNBHdhSSDtWOWXtYc52qG7HllA2GOQ6 - wd6t/RPDzp7pwTOB5O4htAchvQtyxS6fApy6Hb5q7tE7n31y8efT7FkTkxkHGWgM - NoncmyKWIzyTI8/9TcRGPTdxYtbsGptP6x+MA6XbVELOTSJDGTXC3/xWa0Kv0B2/ - sjKu1pi9/9vBE/6D72V2bMoa3wx1vrTm5XNnvQf8subXt/jRN75Adp7HlvL/qnpy - 7AQRm2AiDndamCW7SsDpTGsF9AQcqX8m3cUt4TSacTJiSRHYycc23JZEhe26phkw - CbZRvWkUcfuNBXWAaINVPDprZ4jArbVr+Fe1GMVSkV3WcHWf4o18kETjNPfCbdR3 - uYrD/qtaehHKFhm8ZeQV2n6ISzj1ABEBAAGJAjYEGAEKACAWIQTx80ZkWEUrLfNR - 8ehk0SupWs4fLQUCY/QGZAIbIAAKCRBk0SupWs4fLcubD/oDGub4+uep50VBUa0u - BZAUu/oS664+53sZyvogMzeIT32DT3vDaa3W2aqUNX/dZVzOcsV07HO4yk6+kiSk - 1Db2FbRFODbFcs5mBYo/EFSxExhQMQFqgXaW3FrpvL5ljAwsjdoSN93DnMkLnC9K - XZUyUT+RDcJnk0xS+0ex77nc8vp13n2huHuXU6BbEGofrT9br7Kyezh84GV9nxls - C0PwTX0gBaesqeY/9rtAXq+p+kYBafbny/3zrL8CBwqHqRZWiNbkyGWx9WHvizZE - 0VJJzGl0CTP7aE/N42t+LDGuaA76SJXkkqGs7GmJ3EHVA8N/2Lwhf0saaG3cBrKx - lXrJoSY7TxeoJ7rdt/KRJfKsU0bdXgVXDFrlf4ZvctCLZmQ0nno2cgYemTnELRYv - FzrS2itqqWP1ev2iPpCbKp099i/w6D13C3jBVAVYPBapD6aaD7YHWLhHIA5zH7bF - n8IgacgKBoJ8u3jo3eeT5CXfsrnwOYdrqposfMCUOriJHx41nGUqjNZDG2ByHxgS - mnUd3lrjRDWTUzXj8pRN2K7Uqbbs2Mz4Q64MgbCkkTichMlVux8kH+O/I/veAYto - OEpwdDwa67AtzYKG0ssOJI+po9TlbKYS4O4H8XnPhYSOEw8eObNPYCX7jyAjXloo - 1hbflYLyMYo1BxGR6bPS9gJA2w== - =5uun - -----END PGP PUBLIC KEY BLOCK----- - ''; - }; - }; - - programs.ssh.enable = true; - services.gpg-agent = { - enable = true; - enableSshSupport = true; - }; - }; -} diff --git a/homeConfig/modules/gpg/config/pubKey.nix b/homeConfig/modules/gpg/config/pubKey.nix new file mode 100644 index 0000000..6a957e3 --- /dev/null +++ b/homeConfig/modules/gpg/config/pubKey.nix @@ -0,0 +1,111 @@ +'' +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mQINBGP0BgMBEAC2v+n9plI0p+TqIrmvz7JHoYbtUK3NDkyNeIsgS+sE5nfLB1Ef +vQCR0HdysgpmAUywqEx+YK7Nkr4szoK8nDLpgpSfaDZNss+ePu6eYVTVktelBn2Q +5f5MKDILY9mkmDPgzvpDDhkFXGK3cpeUX+X5vY1W76yuRgm6zBDIux+yf027nw3U +phesn/WlWXRsmAXG2helt1nB6Foj6LjgwRG/aKMI8cQq0JS13cfUZO1nq2ifM0pm +4HqWgbZOKYWHsoOw4qNiuxWwVoL5E7UQW2MEyxZmLZaNohEpReYpI0N9FGB/AZYt +iKn9SO9SmG+afE+gxrExJYZSGVHHKlPc79dcIBVvYEA8dV/OJBjHc83EhUQVU4vQ +x1y386HYctlHVWZ64tc1XROlQe++NxfgQZz4jnvGzHMakr8/IZAV3LP3PGVAa7kx +iVrTE+WodK/kELm1PMLWlWmXT3GiumOngm4y1dWtUirqxni/Nl7BA4eHM3Q3OZiR +eEb80FkbXCoaP5REU1EdVlAW/ZGP+mTwiqekT5ThocaD/BgYSy9UlGf5YyOEnqOt +G+0JfS3mG0PysFjF0B5dMyBquikD4zVBo3+a7ppbrAage3EFhHiX0Les0q566I8p +0hlXS7nz0I4xAxxRLfydwJptndjZgeiq9o1XMRA0JUZQhzuk2VYQ6MSVhwARAQAB +tB9CcnlhbiBSYW1vcyA8YnJ5YW5AcmFtb3MuY29kZXM+iQJOBBMBCgA4FiEE8fNG +ZFhFKy3zUfHoZNErqVrOHy0FAmP0BgMCGwEFCwkIBwIGFQoJCAsCBBYCAwECHgEC +F4AACgkQZNErqVrOHy25SBAArl6JHrDm3fLXPhwtHf9WzxQvW6BmMgLQQ+bGGGba +A3e+eKb0ibSmXH9M22GOSxKqk2BePtoLFdyDKDFNwYDwzj0ioQ80Q9YR6aoSuwOf +HwXeiYsgK76IbsRciXSv6JgAsXO9UOGTlHlTgFsE3AMjnCgPrHbV3SZdkFt71XMo +fbRmYwC33HK6QNUXeq4O+gGO5vJI8Wx1mtmy6kq/3srzMpCGybg9M8C5AQoazo/u +WOjO57QkUdbAXO8HbHInexsstJJn+0o/FLfMoOy7v/cpzTLbbpONRzQbEq1/Utt1 +TaIc1FTWT1b4oWnIGv2stlCGzx9IgsseJocSBG+kGgkKwVBWIcCwq+cCdfkOReCk +VHTg1oRH8t078346KuxEaA7ofKaByirQosZUeF5WTyMuJUDf1mNxxZngRKjIHD3c +lmK8REnYjQ4b+RfznfV8qc8tH624EUTNlT123ufUIvba0fR8OryhdxPOOgdLjlNL +XdkfG5oENnBy3EzGn7xgR6sCRtlFSEcfKQFcec1fjqYMHxPAExajmSHLwr5107LT +4B+F5eOt9CBFKW/cxnVwG/3oW0mzLa231V0eYquiYkbYHVswLdhr02vyHpLXXVZk +JgiLSXIJ6yKwLA9W8HgHgDYCp899Jl+wqhFLxr7oUjXcLhuZO9Q3P3req0SJRfUu +GTO5Ag0EY/QGQAEQANsJBUpkk0ZW5swgzC/c7pxv4VGS8VZcr3Isol8NHAUUwHyo +jqAYNtqW8PQLgQ34uuuC5GCS2hxN57WdgmSkv/to8THl6IbE1V/YVaaGXX9yiJmH +72//kc9g2prXyrtObwVhgKiYQxPPegm9ubLkb1khCTLhozCJDM1wbQxmE5I2cICC +5lwCi1NDsAyvUtWANzb0EXPZh2iPv8sWMh3RStAGSsboHzHYdR9RZGRjKG/ET5zv +OBbFpRLFjvMJUL22M0V5FFPbuz+4Aut21wkYdueHtREpUgAcba68Doz75jQb0PEZ +52hjLKuXVf0/1sEPXUs/sL8kyl6QzIqFIXsrjbw6BrGSdhn6YoY95koCb6AXUrFC +oOXQC5BecTcP7V3GOWDEaDUbjN8mc2t1ujs7KYIqi0UCiHa9m5L2Q/9TyOSLyjSf +0VKHzib7Ov76GvphbYoQSXWX8R6ogcexQH6aQlXI31ir/HsHkatImYomySZiwNVV +5PQD/7lbWGjLB6LB9PsyVIVl3uq+sSX7xKeogZkEuTcerKVJjpknisKh6aR/uJRV +KJs2U3MolyVanDb/y6VBJrCOu8ZiCZuDtCntUg8MxeLNFO0MVdgAPiHMtJd8YrzK +bhbkHBufAgOLMbGTYq47bQNuRz/CjIz0xll0tLeS9LD1hcSWX/nMhFgfxDjxABEB +AAGJBGwEGAEKACAWIQTx80ZkWEUrLfNR8ehk0SupWs4fLQUCY/QGQAIbAgJACRBk +0SupWs4fLcF0IAQZAQoAHRYhBDgB5+1vnI0s1XHgHmq9zRRNZkPIBQJj9AZAAAoJ +EGq9zRRNZkPIMbUQAJaDnJHMMXTNmANva65XjY2eJpoYBCIvd8FodRfFCbAPkNad +MtsCgd2dXZPizTOUNqcOujACd7u3P/VazYT0cUgjx6mpWdvxYuGMCM71WLHKeCaq +bXzzKrNaREMDTsMBn0wrIr5ZEuRsLOi4ZVZ5vFvtMQYnzjNT6gON+fHpaD6sShnR +VWXWaYtQ2ttN2+6gwmKCaqiH2suA+QkI/gPjqdMOeXvu6sMUd5IjaCBJy3Ddyjif +/ZYkJUjDkxG7aC4B2XtGUf0lPG+kiCHGjgTsvIeYYSpi/TyevTF8QNfZWcp/NBcf +ZXhCoUoA62zzQ2SXpydZpryKn8klAYQLLA8mq6v/ljqcwFyLYtx0Cw49Thspo/4r +ba1jzsv5QdBveIKdGjzcuexTaIEFB6rQXIFuVVfn074tpZIO+KmHO/z62i73bbko +67tm+VDvbgsGUd4536lSKMekbdn0+5ODl76AJCD0M+Vzxkl9X/fg4zgz0vG2Ppiq +08LqBPidA9EQ+tEHm7OIXk9Z+wApDCb27zwsiygkV9uWXuEaNYjCjUZTEw9CYTuH +CdCPOdeJYBzKpfGXldJo6F6NbLLXywL4ej2Lt99tqFF2tQ3I6SKyYx+I2veYsjKs +7g29bF4WuU1IVi4Kn144NUzEHOJZKeyYOwEz5+chq9KuYBY8b1OHe1Q5pEFIbVIP +/1pdwhs6zV8tJZOgzLb9q+yLuXH1Fk4YE9wZDh/rK3hpD+KGyNRa+0J70wdYDOqk +4C9ybAaljvJPXO622Ai/RlFLQVK4KdJ2Ig9mwtIhwBvjnKkCmG502HGRUa3HVpDK +pb9WDrH9eJPxkRew1y7Kl6ua10mNh7vMIbEDzZY36Eovzc127ANy/EQR8OwnI8Vg +39rCq1wDVeULHmF4j63cm3pHo6LK1OGZjAkg9XjT/aDpuqigcdEmFjmx7RSBPZFC +RZTJ6kcafbnxQfKx7soI7+1AWVSrTt+/XePZPubnFeMlfXtGVXejTG2rCWJqRpGZ +sjwgGiOtcnzvF37TQ4XrWV5T45XeSmG4hsF+zShXqevGulOwGNPtJbmiINTaeKun +1KxjSVpwkniOQgrWNSFCD2RzSEuQRKSg0XMbgPLbmplVO4WAzhQ/Ry4DpNqjJwkp +2z5WQ8XhfsxecNBc10pbPGyDUbXk96bZSXc31s5tKIyUaCxMmUu87Z0q9KEaVrGc +Tp69o4LIX8dhEqAx8Mk1AKpk8TsT0Ebc75X+xbzVoiimblUuB/+OrDsK7R0hihIe +TU+1xOJ1gyppkuacOuHioV4k9k4NUwgk+YrSKTrhFEzbM6gcOngTB0VTFzQlEjxB +wxl2qN7f0lFD6F0rLJ0Rm06xIwTNIe/0MfMXAJBB45DFuQINBGP0BlIBEADAkdgW +M8SyGyde5Op/B9yMHNPfuSNRjK4/HHmLez1GTriNwuqor5FRrDCO8VPUbQX/x06O +2HZj8fJWa+6hc9+giUTXNbYtlMVpZOUVhGxzuy2Y6YE82maBaJ3EB/KBP7zdgvKT +bxmjv5hre9u/LaY6tloCzeaBUWPV9+e5Bxq72qC507V/z6lc+PgxWWfGkmWBuT+v +laHWFb6ZM5ldtcMSdscrLBcxLMnjNIRlIaWpj+tvuInMdV3HrTn/bdHCP/Ybrf95 +DYY+7p+KPGrdXJH121f8qZXRihTJerJOGvGbue6FIJ+wYSEr3nb9bNyym/w+Mk9Z +0wJZZVfjbqFNcGhTttZWlzdTJwerwj7cGsTtMcuIphhUdLhQns+dBTVKVrqvvHSu +p/w9IpnyDhcgqv8v23xfSCuKooWPn2E1/Pd4enLCHVzmFW1xQDtDunRuxBbHYpM4 +5gknVdIp8bY23y1fj0mottIfgZZEfiMR6FJxseFcWuG7VdC7VITdgbNl5YDXw4ts +xmg2qrRSNUTkFAKNwIekqwziay4DcnWkoikH+n3bHre5wQqFzHIV03Zo8YcgKvyT +0hwAvn2wGRoIynInFMi2/314xbAUBq10QhREGOPS3oUvBUZxhTkiBMKVYyKA97JQ +c2Xhrkx9cuZxh3y7j3DflRBW9XLJvbcLGDziTwARAQABiQI2BBgBCgAgFiEE8fNG +ZFhFKy3zUfHoZNErqVrOHy0FAmP0BlICGwwACgkQZNErqVrOHy0dOxAAlNRb0yBq +SLLU/pQHjnqRQsLpXFmokcAVfZcEoODTMmzPf3uKDExkHBsyRjbRrEazMLQZIwIb +78AXvPx6W+lwkmrZ1IXfTkURMi2RmSSOcjTJzipM4WKkOy6zSg29chnBz8edq8AF +rErYdY5IgGCn3RHtkGjtKRSV0m4cdoO/wqGHtZdxEhmfmAzs+Wwevqb1nzptG3my +ZdEJ5rkgGcnvUjkJo815FjR1fuo0KSuVZVelvWMp6JFYMWc4FUh2bYWymIQ6u8/f +2v8EnacG/oNHDkZG0edTPU4dClHCtXqejAxazHYUojJkFdWUMoEIJ7VYg23N4WAW +0qf78uBOuGBjl8g5sOmu/IQpMsO51NiDSw/lGLfPsKJKTIe7N6Jxs8PT66Jqvw2U +4moKEAcoLGxXkIfY7UMFGflaADzBQEebNiekRMw/SAxB3mRptuQ96QuCrpLE7kmI +KPs0vk3om0Lz59q3JoYmMEoEIMM3Z1j94mp07nyJzKvOREtQYY7WIKG/sgUHekjm +lrUfez8xHCG4G0r4KTiu3rGT/rvCehTxvkl4Gmimeo+XNb7vwcr1O0/DTH3ZCG8o ++mwGnah7T6ch60YFSWm0RkxNozNHWJf5Ee6gVv7nEyB1pbuqhXHliv3hhK+/4SWW +RMwhK4b5axJn9aHTu3rwDdaDpUkkApY4rhq5Ag0EY/QGZAEQAOXjz3loH0/mn+Wn +wermse6fhyW+HJNIcWLdTZ3o44GhbkWb5VxCdb/FuOYIGxeTkF2KjCwHFCHCfN1/ +P8okvsnlGhuiZQRpVHBv1TBPzx4m94unXgEbyPYndKN/KGsJf7iOQ/HRs9CTUcZy +5hj608Rd/Wr+mzzwOG7QIBEEjNhA5NhjpvWpbPGkOgVkYeMobyDmJjoUi7rnIoq+ +9XLV/wiBneXcinAFZVqbGCRNxhjRBhKubOjWftNfHCtZu96cCoGxDRwE+z6BVre4 +iv7VMmXQDPlISUFUa7cu9R2WTny2u09SPpNBHdhSSDtWOWXtYc52qG7HllA2GOQ6 +wd6t/RPDzp7pwTOB5O4htAchvQtyxS6fApy6Hb5q7tE7n31y8efT7FkTkxkHGWgM +NoncmyKWIzyTI8/9TcRGPTdxYtbsGptP6x+MA6XbVELOTSJDGTXC3/xWa0Kv0B2/ +sjKu1pi9/9vBE/6D72V2bMoa3wx1vrTm5XNnvQf8subXt/jRN75Adp7HlvL/qnpy +7AQRm2AiDndamCW7SsDpTGsF9AQcqX8m3cUt4TSacTJiSRHYycc23JZEhe26phkw +CbZRvWkUcfuNBXWAaINVPDprZ4jArbVr+Fe1GMVSkV3WcHWf4o18kETjNPfCbdR3 +uYrD/qtaehHKFhm8ZeQV2n6ISzj1ABEBAAGJAjYEGAEKACAWIQTx80ZkWEUrLfNR +8ehk0SupWs4fLQUCY/QGZAIbIAAKCRBk0SupWs4fLcubD/oDGub4+uep50VBUa0u +BZAUu/oS664+53sZyvogMzeIT32DT3vDaa3W2aqUNX/dZVzOcsV07HO4yk6+kiSk +1Db2FbRFODbFcs5mBYo/EFSxExhQMQFqgXaW3FrpvL5ljAwsjdoSN93DnMkLnC9K +XZUyUT+RDcJnk0xS+0ex77nc8vp13n2huHuXU6BbEGofrT9br7Kyezh84GV9nxls +C0PwTX0gBaesqeY/9rtAXq+p+kYBafbny/3zrL8CBwqHqRZWiNbkyGWx9WHvizZE +0VJJzGl0CTP7aE/N42t+LDGuaA76SJXkkqGs7GmJ3EHVA8N/2Lwhf0saaG3cBrKx +lXrJoSY7TxeoJ7rdt/KRJfKsU0bdXgVXDFrlf4ZvctCLZmQ0nno2cgYemTnELRYv +FzrS2itqqWP1ev2iPpCbKp099i/w6D13C3jBVAVYPBapD6aaD7YHWLhHIA5zH7bF +n8IgacgKBoJ8u3jo3eeT5CXfsrnwOYdrqposfMCUOriJHx41nGUqjNZDG2ByHxgS +mnUd3lrjRDWTUzXj8pRN2K7Uqbbs2Mz4Q64MgbCkkTichMlVux8kH+O/I/veAYto +OEpwdDwa67AtzYKG0ssOJI+po9TlbKYS4O4H8XnPhYSOEw8eObNPYCX7jyAjXloo +1hbflYLyMYo1BxGR6bPS9gJA2w== +=5uun +-----END PGP PUBLIC KEY BLOCK----- +'' diff --git a/homeConfig/modules/gpg/default.nix b/homeConfig/modules/gpg/default.nix new file mode 100644 index 0000000..6ebb47a --- /dev/null +++ b/homeConfig/modules/gpg/default.nix @@ -0,0 +1,23 @@ +{ lib, config, ... }: + +with lib; +let cfg = config.modules.gpg; + +in +{ options.modules.gpg = { enable = mkEnableOption "gpg"; }; + config = mkIf cfg.enable { + programs.gpg = { + enable = true; + publicKeys."bryan@ramos.codes" = { + trust = 5; + text = import ./config/pubKey.nix; + }; + }; + + programs.ssh.enable = true; + services.gpg-agent = { + enable = true; + enableSshSupport = true; + }; + }; +} diff --git a/homeConfig/modules/gui.nix b/homeConfig/modules/gui.nix deleted file mode 100644 index 3d146cd..0000000 --- a/homeConfig/modules/gui.nix +++ /dev/null @@ -1,273 +0,0 @@ -{ pkgs, lib, config, ... }: - -with lib; -let cfg = config.modules.gui; - modifier = config.wayland.windowManager.sway.config.modifier; - -in { - options.modules.gui = { enable = mkEnableOption "gui"; }; - config = mkIf cfg.enable { - wayland.windowManager.sway = { - enable = true; - xwayland = true; - wrapperFeatures.gtk = true; - config = { - modifier = "Mod1"; - menu = "\${pkgs.rofi-wayland}/bin/rofi -show drun -show-icons -drun-icon-theme Qogir -font 'Noto Sans 14'"; - terminal = "\${pkgs.alacritty}/bin/alacritty"; - startup = [{ command = "exec { exec alacritty -e sh -c 'neofetch; exec $SHELL'"; always = true; }]; - - input = { - keyboard = { - xkb_numlock = "enabled"; - xkb_layout = "us"; - }; - pointer = { - accel_profile = "flat"; - pointer_accel = "0.65"; - }; - }; - - bars.sway-bar = { - position = "top"; - statusCommand = ''while :; do echo "$(free -h | awk '/^Mem/ {print $3}') '|' $(date +'%I:%M:%S %p') '|' $(date +'%m-%d-%Y')"; sleep 1; done''; - fonts = { - names = [ "Noto Sans" "Noto Emoji" "Noto Color Emoji" ]; - size = 10.0; - }; - colors.background = "#0A0E14"; - colors.statusline = "#FFFFFF"; - }; - - gaps = { - smartGaps = false; - inner = 10; - }; - - floating.border = 0; - window.border= 0; - - keybindings = lib.mkOptionDefault { - "${modifier}+q" = "kill"; - "Print" = "exec grim ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png"; - "Shift+Print" = "exec grim -g '$(slurp)'' ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png"; - "${modifier}+Print" = ''exec sh -c 'grim -g "$(swaymsg -t get_tree | jq -j '"'"'.. | select(.type?) | select(.focused).rect | "\(.x),\(.y) \(.width)x\(.height)"'"'"')" ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png' ''; - "${modifier}+Shift+f" = "exec alacritty -e ranger"; - "${modifier}+Shift+d" = "exec emote"; - }; - - extraOptions = [ - "--unsupported-gpu" - "--my-next-gpu-wont-be-nvidia" - ]; - - extraSessionCommands = '' - export _JAVA_AWT_WM_NONREPARENTING=1 - ''; - }; - }; - - gtk = { - enable = true; - theme.package = pkgs.juno-theme; - theme.name = "Juno-ocean"; - iconTheme.package = pkgs.qogir-icon-theme; - iconTheme.name = "Qogir"; - }; - - programs.btop.enable = true; - fonts.fontconfig.enable = true; - - programs.rofi = { - enable = true; - package = pkgs.rofi-wayland; - location = "center"; - terminal = "\${pkgs.alacritty}/bin/alacritty"; - - theme = { - "*" = { - nord0 = mkLiteral "#2e3440"; - nord1 = mkLiteral "#3b4252"; - nord2 = mkLiteral "#434c5e"; - nord3 = mkLiteral "#4c566a"; - nord4 = mkLiteral "#d8dee9"; - nord5 = mkLiteral "#e5e9f0"; - nord6 = mkLiteral "#eceff4"; - nord7 = mkLiteral "#8fbcbb"; - nord8 = mkLiteral "#88c0d0"; - nord9 = mkLiteral "#81a1c1"; - nord10 = mkLiteral "#5e81ac"; - nord11 = mkLiteral "#bf616a"; - nord12 = mkLiteral "#d08770"; - nord13 = mkLiteral "#ebcb8b"; - nord14 = mkLiteral "#a3be8c"; - nord15 = mkLiteral "#b48ead"; - spacing = 2; - background-color = mkLiteral "var(nord1)"; - background = mkLiteral "var(nord1)"; - foreground = mkLiteral "var(nord4)"; - normal-background = mkLiteral "var(background)"; - normal-foreground = mkLiteral "var(foreground)"; - alternate-normal-background = mkLiteral "var(background)"; - alternate-normal-foreground = mkLiteral "var(foreground)"; - selected-normal-background = mkLiteral "var(nord8)"; - selected-normal-foreground = mkLiteral "var(background)"; - active-background = mkLiteral "var(background)"; - active-foreground = mkLiteral "var(nord10)"; - alternate-active-background = mkLiteral "var(background)"; - alternate-active-foreground = mkLiteral "var(nord10)"; - selected-active-background = mkLiteral "var(nord10)"; - selected-active-foreground = mkLiteral "var(background)"; - urgent-background = mkLiteral "var(background)"; - urgent-foreground = mkLiteral "var(nord11)"; - alternate-urgent-background = mkLiteral "var(background)"; - alternate-urgent-foreground = mkLiteral "var(nord11)"; - selected-urgent-background = mkLiteral "var(nord11)"; - selected-urgent-foreground = mkLiteral "var(background)"; - }; - - element = { - padding = mkLiteral "0px 0px 0px 7px"; - spacing = mkLiteral "5px"; - border = 0; - cursor = mkLiteral "pointer"; - }; - - "element normal.normal" = { - background-color = mkLiteral "var(normal-background)"; - text-color = mkLiteral "var(normal-foreground)"; - }; - - "element normal.urgent" = { - background-color = mkLiteral "var(urgent-background)"; - text-color = mkLiteral "var(urgent-foreground)"; - }; - - "element normal.active" = { - background-color = mkLiteral "var(active-background)"; - text-color = mkLiteral "var(active-foreground)"; - }; - - "element selected.normal" = { - background-color = mkLiteral "var(selected-normal-background)"; - text-color = mkLiteral "var(selected-normal-foreground)"; - }; - - "element selected.urgent" = { - background-color = mkLiteral "var(selected-urgent-background)"; - text-color = mkLiteral "var(selected-urgent-foreground)"; - }; - - "element selected.active" = { - background-color = mkLiteral "var(selected-active-background)"; - text-color = mkLiteral "var(selected-active-foreground)"; - }; - - "element alternate.normal" = { - background-color = mkLiteral "var(alternate-normal-background)"; - text-color = mkLiteral "var(alternate-normal-foreground)"; - }; - - "element alternate.urgent" = { - background-color = mkLiteral "var(alternate-urgent-background)"; - text-color = mkLiteral "var(alternate-urgent-foreground)"; - }; - - "element alternate.active" = { - background-color = mkLiteral "var(alternate-active-background)"; - text-color = mkLiteral "var(alternate-active-foreground)"; - }; - - "element-text" = { - background-color = mkLiteral "rgba(0, 0, 0, 0%)"; - text-color = mkLiteral "inherit"; - highlight = mkLiteral "inherit"; - cursor = mkLiteral "inherit"; - }; - - "element-icon" = { - background-color = mkLiteral "rgba(0, 0, 0, 0%)"; - size = mkLiteral "1.0000em"; - text-color = mkLiteral "inherit"; - cursor = mkLiteral "inherit"; - }; - - window = { - padding = 0; - border = 0; - background-color = mkLiteral "var(background)"; - }; - - mainbox = { - padding = 0; - border = 0; - }; - - message = { - margin = mkLiteral "0px 7px"; - }; - - textbox = { - text-color = mkLiteral "var(foreground)"; - }; - - listview = { - margin = mkLiteral "0px 0px 5px"; - scrollbar = true; - spacing = mkLiteral "2px"; - fixed-height = 0; - }; - - scrollbar = { - padding = 0; - handle-width = mkLiteral "14px"; - border = 0; - handle-color = mkLiteral "var(nord3)"; - }; - - button = { - spacing = 0; - text-color = mkLiteral "var(normal-foreground)"; - cursor = mkLiteral "pointer"; - }; - - "button selected" = { - background-color = mkLiteral "var(selected-normal-background)"; - text-color = mkLiteral "var(selected-normal-foreground)"; - }; - - inputbar = { - padding = mkLiteral "7px"; - margin = mkLiteral "7px"; - spacing = 0; - text-color = mkLiteral "var(normal-foreground)"; - background-color = mkLiteral "var(nord3)"; - children = [ "entry" ]; - }; - - entry = { - spacing = 0; - cursor = mkLiteral "text"; - text-color = mkLiteral "var(normal-foreground)"; - background-color = mkLiteral "var(nord3)"; - }; - }; - }; - - home.packages = [ - xdg-utils - grim - slurp - - imv - gimp - evince - - noto-fonts - noto-fonts-cjk - - emote - emojione - ]; - }; -} diff --git a/homeConfig/modules/gui/config/rofi.nix b/homeConfig/modules/gui/config/rofi.nix new file mode 100644 index 0000000..f86ca4e --- /dev/null +++ b/homeConfig/modules/gui/config/rofi.nix @@ -0,0 +1,177 @@ +{ pkgs, lib, ... }: + +with lib; +{ enable = true; + package = pkgs.rofi-wayland; + location = "center"; + terminal = "\${pkgs.alacritty}/bin/alacritty"; + + theme = { + "*" = { + nord0 = mkLiteral "#2e3440"; + nord1 = mkLiteral "#3b4252"; + nord2 = mkLiteral "#434c5e"; + nord3 = mkLiteral "#4c566a"; + nord4 = mkLiteral "#d8dee9"; + nord5 = mkLiteral "#e5e9f0"; + nord6 = mkLiteral "#eceff4"; + nord7 = mkLiteral "#8fbcbb"; + nord8 = mkLiteral "#88c0d0"; + nord9 = mkLiteral "#81a1c1"; + nord10 = mkLiteral "#5e81ac"; + nord11 = mkLiteral "#bf616a"; + nord12 = mkLiteral "#d08770"; + nord13 = mkLiteral "#ebcb8b"; + nord14 = mkLiteral "#a3be8c"; + nord15 = mkLiteral "#b48ead"; + spacing = 2; + background-color = mkLiteral "var(nord1)"; + background = mkLiteral "var(nord1)"; + foreground = mkLiteral "var(nord4)"; + normal-background = mkLiteral "var(background)"; + normal-foreground = mkLiteral "var(foreground)"; + alternate-normal-background = mkLiteral "var(background)"; + alternate-normal-foreground = mkLiteral "var(foreground)"; + selected-normal-background = mkLiteral "var(nord8)"; + selected-normal-foreground = mkLiteral "var(background)"; + active-background = mkLiteral "var(background)"; + active-foreground = mkLiteral "var(nord10)"; + alternate-active-background = mkLiteral "var(background)"; + alternate-active-foreground = mkLiteral "var(nord10)"; + selected-active-background = mkLiteral "var(nord10)"; + selected-active-foreground = mkLiteral "var(background)"; + urgent-background = mkLiteral "var(background)"; + urgent-foreground = mkLiteral "var(nord11)"; + alternate-urgent-background = mkLiteral "var(background)"; + alternate-urgent-foreground = mkLiteral "var(nord11)"; + selected-urgent-background = mkLiteral "var(nord11)"; + selected-urgent-foreground = mkLiteral "var(background)"; + }; + + element = { + padding = mkLiteral "0px 0px 0px 7px"; + spacing = mkLiteral "5px"; + border = 0; + cursor = mkLiteral "pointer"; + }; + + "element normal.normal" = { + background-color = mkLiteral "var(normal-background)"; + text-color = mkLiteral "var(normal-foreground)"; + }; + + "element normal.urgent" = { + background-color = mkLiteral "var(urgent-background)"; + text-color = mkLiteral "var(urgent-foreground)"; + }; + + "element normal.active" = { + background-color = mkLiteral "var(active-background)"; + text-color = mkLiteral "var(active-foreground)"; + }; + + "element selected.normal" = { + background-color = mkLiteral "var(selected-normal-background)"; + text-color = mkLiteral "var(selected-normal-foreground)"; + }; + + "element selected.urgent" = { + background-color = mkLiteral "var(selected-urgent-background)"; + text-color = mkLiteral "var(selected-urgent-foreground)"; + }; + + "element selected.active" = { + background-color = mkLiteral "var(selected-active-background)"; + text-color = mkLiteral "var(selected-active-foreground)"; + }; + + "element alternate.normal" = { + background-color = mkLiteral "var(alternate-normal-background)"; + text-color = mkLiteral "var(alternate-normal-foreground)"; + }; + + "element alternate.urgent" = { + background-color = mkLiteral "var(alternate-urgent-background)"; + text-color = mkLiteral "var(alternate-urgent-foreground)"; + }; + + "element alternate.active" = { + background-color = mkLiteral "var(alternate-active-background)"; + text-color = mkLiteral "var(alternate-active-foreground)"; + }; + + "element-text" = { + background-color = mkLiteral "rgba(0, 0, 0, 0%)"; + text-color = mkLiteral "inherit"; + highlight = mkLiteral "inherit"; + cursor = mkLiteral "inherit"; + }; + + "element-icon" = { + background-color = mkLiteral "rgba(0, 0, 0, 0%)"; + size = mkLiteral "1.0000em"; + text-color = mkLiteral "inherit"; + cursor = mkLiteral "inherit"; + }; + + window = { + padding = 0; + border = 0; + background-color = mkLiteral "var(background)"; + }; + + mainbox = { + padding = 0; + border = 0; + }; + + message = { + margin = mkLiteral "0px 7px"; + }; + + textbox = { + text-color = mkLiteral "var(foreground)"; + }; + + listview = { + margin = mkLiteral "0px 0px 5px"; + scrollbar = true; + spacing = mkLiteral "2px"; + fixed-height = 0; + }; + + scrollbar = { + padding = 0; + handle-width = mkLiteral "14px"; + border = 0; + handle-color = mkLiteral "var(nord3)"; + }; + + button = { + spacing = 0; + text-color = mkLiteral "var(normal-foreground)"; + cursor = mkLiteral "pointer"; + }; + + "button selected" = { + background-color = mkLiteral "var(selected-normal-background)"; + text-color = mkLiteral "var(selected-normal-foreground)"; + }; + + inputbar = { + padding = mkLiteral "7px"; + margin = mkLiteral "7px"; + spacing = 0; + text-color = mkLiteral "var(normal-foreground)"; + background-color = mkLiteral "var(nord3)"; + children = [ "entry" ]; + }; + + entry = { + spacing = 0; + cursor = mkLiteral "text"; + text-color = mkLiteral "var(normal-foreground)"; + background-color = mkLiteral "var(nord3)"; + }; + }; +} diff --git a/homeConfig/modules/gui/config/sway.nix b/homeConfig/modules/gui/config/sway.nix new file mode 100644 index 0000000..624e057 --- /dev/null +++ b/homeConfig/modules/gui/config/sway.nix @@ -0,0 +1,64 @@ +{ config, lib, ... }: + +let + modifier = config.wayland.windowManager.sway.config.modifier; + +in +{ enable = true; + xwayland = true; + wrapperFeatures.gtk = true; + config = { + modifier = "Mod1"; + menu = "\${pkgs.rofi-wayland}/bin/rofi -show drun -show-icons -drun-icon-theme Qogir -font 'Noto Sans 14'"; + terminal = "\${pkgs.alacritty}/bin/alacritty"; + startup = [{ command = "exec { exec alacritty -e sh -c 'neofetch; exec $SHELL'"; always = true; }]; + + input = { + keyboard = { + xkb_numlock = "enabled"; + xkb_layout = "us"; + }; + pointer = { + accel_profile = "flat"; + pointer_accel = "0.65"; + }; + }; + + bars.sway-bar = { + position = "top"; + statusCommand = ''while :; do echo "$(free -h | awk '/^Mem/ {print $3}') '|' $(date +'%I:%M:%S %p') '|' $(date +'%m-%d-%Y')"; sleep 1; done''; + fonts = { + names = [ "Noto Sans" "Noto Emoji" "Noto Color Emoji" ]; + size = 10.0; + }; + colors.background = "#0A0E14"; + colors.statusline = "#FFFFFF"; + }; + + gaps = { + smartGaps = false; + inner = 10; + }; + + floating.border = 0; + window.border= 0; + + keybindings = lib.mkOptionDefault { + "${modifier}+q" = "kill"; + "Print" = "exec grim ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png"; + "Shift+Print" = "exec grim -g '$(slurp)'' ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png"; + "${modifier}+Print" = ''exec sh -c 'grim -g "$(swaymsg -t get_tree | jq -j '"'"'.. | select(.type?) | select(.focused).rect | "\(.x),\(.y) \(.width)x\(.height)"'"'"')" ~/Pictures/screenshot-$(date +'%Y%m%d-%H%M%S').png' ''; + "${modifier}+Shift+f" = "exec alacritty -e ranger"; + "${modifier}+Shift+d" = "exec emote"; + }; + + extraOptions = [ + "--unsupported-gpu" + "--my-next-gpu-wont-be-nvidia" + ]; + + extraSessionCommands = '' + export _JAVA_AWT_WM_NONREPARENTING=1 + ''; + }; +} diff --git a/homeConfig/modules/gui/default.nix b/homeConfig/modules/gui/default.nix new file mode 100644 index 0000000..290c3f9 --- /dev/null +++ b/homeConfig/modules/gui/default.nix @@ -0,0 +1,40 @@ +{ pkgs, lib, config, ... }: + +with lib; +let + cfg = config.modules.gui; + +in +{ options.modules.gui = { enable = mkEnableOption "gui"; }; + config = mkIf cfg.enable { + wayland.windowmanager.sway = import ./config/sway.nix { inherit pkgs; }; + programs.rofi = import ./config/rofi.nix { inherit pkgs; }; + + gtk = { + enable = true; + theme.package = pkgs.juno-theme; + theme.name = "Juno-ocean"; + iconTheme.package = pkgs.qogir-icon-theme; + iconTheme.name = "Qogir"; + }; + + programs.btop.enable = true; + fonts.fontconfig.enable = true; + + home.packages = [ + xdg-utils + grim + slurp + + imv + gimp + evince + + noto-fonts + noto-fonts-cjk + + emote + emojione + ]; + }; +} diff --git a/homeConfig/modules/neovim/config/config.nix b/homeConfig/modules/neovim/config/config.nix new file mode 100644 index 0000000..da3fc73 --- /dev/null +++ b/homeConfig/modules/neovim/config/config.nix @@ -0,0 +1,111 @@ +# Already read as a lua file +'' +require("config.lazy") + +local lsp = require("lsp-zero").preset({}) + +lsp.on_attach(function(client, bufnr) + lsp.default_keymaps({ buffer = bufnr }) +end) + +lsp.setup_servers({ + "tsserver", + "eslint", + "hls", + "pyright", + "nil_ls", + "cssls", + "html", + "jsonls", + "diagnosticls", + "lua_ls", + "marksman", + "purescriptls", + "tailwindcss", + "bashls", +}) + +require("lspconfig").lua_ls.setup(lsp.nvim_lua_ls()) + +lsp.setup() + +local cmp = require("cmp") +cmp.setup({ + snippet = { + expand = function(args) + require("luasnip").lsp_expand(args.body) + end, + }, + sources = { + { name = "nvim_lsp" }, + { name = "luasnip" }, + }, +}) + +local has_words_before = function() + unpack = unpack or table.unpack + local line, col = unpack(vim.api.nvim_win_get_cursor(0)) + return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil +end + +local luasnip = require("luasnip") + +cmp.setup({ + enabled = function() + -- disable completion in comments + local context = require("cmp.config.context") + -- keep command mode completion enabled when cursor is in a comment + if vim.api.nvim_get_mode().mode == "c" then + return true + else + return not context.in_treesitter_capture("comment") and not context.in_syntax_group("Comment") + end + end, + mapping = { + ["<Tab>"] = cmp.mapping(function(fallback) + if cmp.visible() then + cmp.select_next_item() + -- You could replace the expand_or_jumpable() calls with expand_or_locally_jumpable() + -- they way you will only jump inside the snippet region + elseif luasnip.expand_or_jumpable() then + luasnip.expand_or_jump() + elseif has_words_before() then + cmp.complete() + else + fallback() + end + end, { "i", "s" }), + + ["<S-Tab>"] = cmp.mapping(function(fallback) + if cmp.visible() then + cmp.select_prev_item() + elseif luasnip.jumpable(-1) then + luasnip.jump(-1) + else + fallback() + end + end, { "i", "s" }), + + ["<CR>"] = cmp.mapping({ + i = function(fallback) + if cmp.visible() and cmp.get_active_entry() then + cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false }) + else + fallback() + end + end, + s = cmp.mapping.confirm({ select = true }), + c = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true }), + }), + }, +}) + +vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(vim.lsp.diagnostic.on_publish_diagnostics, { + -- Disable virtual_text + virtual_text = false, +}) + +require("notify").setup({ + background_colour = "#000000", +}) +'' diff --git a/homeConfig/modules/neovim/config/init.nix b/homeConfig/modules/neovim/config/init.nix new file mode 100644 index 0000000..a200ab7 --- /dev/null +++ b/homeConfig/modules/neovim/config/init.nix @@ -0,0 +1,17 @@ +'' +lua << EOF + vim.opt.tabstop = 2 + vim.opt.shiftwidth = 2 + vim.opt.expandtab = true + + vim.o.guicursor = \'\' + vim.o.clipboard = "unnamedplus" + + vim.o.foldmethod = "indent" + vim.o.foldlevelstart = 99 + + vim.cmd([[ + au BufRead,BufNewFile *.purs set filetype=purescript + ]]) +EOF +'' diff --git a/homeConfig/modules/neovim/config/lsp.nix b/homeConfig/modules/neovim/config/lsp.nix new file mode 100644 index 0000000..c80402f --- /dev/null +++ b/homeConfig/modules/neovim/config/lsp.nix @@ -0,0 +1,25 @@ +{ pkgs, ... }: + +let + lsp = with pkgs; [ + nil + nixfmt + marksman + sumneko-lua-language-server + stylua + haskell-language-server + hlint + ]; + + lsp' = with pkgs.nodePackages; [ + vscode-langservers-extracted + typescript-language-server + eslint + bash-language-server + diagnostic-languageserver + pyright + purescript-language-server + ]; + +in + lsp ++ lsp' diff --git a/homeConfig/modules/neovim/config/plugins.nix b/homeConfig/modules/neovim/config/plugins.nix new file mode 100644 index 0000000..e36d324 --- /dev/null +++ b/homeConfig/modules/neovim/config/plugins.nix @@ -0,0 +1,68 @@ +{ pkgs, ... }: + +let + github-theme = pkgs.vimUtils.buildVimPlugin { + name = "github-theme"; + src = pkgs.fetchFromGithub { + owner = "projekt0n"; + repo = "github-nvim-theme"; + rev = "ea713c37691b2519f56cd801a2330bdf66393d0f"; + sha256 = "0cwr3b5r2ac7aizxmwb3mlhdc2sh0pw670vcwps79x9jp52yrj2y"; + }; + }; + +in +with pkgs.vimPlugins; +[ + { + plugin = github-theme; + config = '' + lua << EOF + vim.cmd('colorscheme github_dark_high_contrast') + EOF + ''; + } + + { plugin = lazygit.nvim; } + + { + plugin = LazyVim; + config = '' + lua << EOF + return { + {'williamboman/mason.nvim', enabled = false }, + {'williamboman/mason-lspconfig.nvim', enabled = false }, + {'nvim-treesitter/nvim-treesitter', enabled = false }, + } + EOF + ''; + } + + { + plugin = lsp-zero-nvim; + config = '' + lua << EOF + branch = 'v2.x' + requires = { + {'neovim/nvim-lspconfig'}, + {'hrsh7th/nvim-cmp'}, + {'hrsh7th/cmp-nvim-lsp'}, + {'L3MON4D3/LuaSnip'}, + } + EOF + ''; + } + + { + plugin = nvim-treesitter.withAllGrammars; + config = '' + lua << EOF + require'nvim-treesitter.configs'.setup { + highlight = { + enable = true, + }, + } + EOF + ''; + } +] diff --git a/homeConfig/modules/neovim/default.nix b/homeConfig/modules/neovim/default.nix new file mode 100644 index 0000000..0f9863d --- /dev/null +++ b/homeConfig/modules/neovim/default.nix @@ -0,0 +1,21 @@ +{ pkgs, lib, config, ... }: + +with lib; +let + cfg = config.modules.neovim; + +in +{ options.modules.neovim = { enable = mkEnableOption "neovim"; }; + config = mkIf cfg.enable { + programs.neovim = { + enable = true; + viAlias = true; + vimAlias = true; + + extraLuaConfig = import ./config/init.nix; + generatedConfigs.lua = import ./config/config.nix; + plugins = import ./config/plugins.nix { inherit pkgs; }; + extraPackages = import ./config/lsp.nix { inherit pkgs; }; + }; + }; +} diff --git a/homeConfig/modules/nvim.nix b/homeConfig/modules/nvim.nix deleted file mode 100644 index 7b9af19..0000000 --- a/homeConfig/modules/nvim.nix +++ /dev/null @@ -1,220 +0,0 @@ -{ pkgs, lib, config, ... }: - -with lib; -let - cfg = config.modules.neovim; - - github-theme = pkgs.vimUtils.buildVimPlugin { - name = "github-theme"; - src = pkgs.fetchFromGithub { - owner = "projekt0n"; - repo = "github-nvim-theme"; - rev = "ea713c37691b2519f56cd801a2330bdf66393d0f"; - sha256 = "0cwr3b5r2ac7aizxmwb3mlhdc2sh0pw670vcwps79x9jp52yrj2y"; - }; - }; - - LSPs = with pkgs; [ - nil nixfmt marksman - sumneko-lua-language-server stylua - haskell-language-server hlint - ]; - - LSPs' = with pkgs.nodePackages; [ - vscode-langservers-extracted typescript-language-server eslint - bash-language-server diagnostic-languageserver - pyright purescript-language-server - ]; - -in -{ options.modules.neovim = { enable = mkEnableOption "neovim"; }; - config = mkIf cfg.enable { - programs.neovim = { - enable = true; - viAlias = true; - vimAlias = true; - - plugins = with pkgs.vimPlugins; [ - { - plugin = github-theme; - config = '' - lua << EOF - vim.cmd('colorscheme github_dark_high_contrast') - EOF - ''; - } - - { plugin = lazygit.nvim; } - - { - plugin = LazyVim; - config = '' - lua << EOF - return { - {'williamboman/mason.nvim', enabled = false }, - {'williamboman/mason-lspconfig.nvim', enabled = false }, - {'nvim-treesitter/nvim-treesitter', enabled = false }, - } - EOF - ''; - } - - { - plugin = lsp-zero-nvim; - config = '' - lua << EOF - branch = 'v2.x' - requires = { - {'neovim/nvim-lspconfig'}, - {'hrsh7th/nvim-cmp'}, - {'hrsh7th/cmp-nvim-lsp'}, - {'L3MON4D3/LuaSnip'}, - } - ''; - } - - { - plugin = nvim-treesitter.withAllGrammars; - config = '' - lua << EOF - require'nvim-treesitter.configs'.setup { - highlight = { - enable = true, - }, - } - EOF - ''; - } - ]; - - extraLuaConfig = '' - lua << EOF - vim.opt.tabstop = 2 - vim.opt.shiftwidth = 2 - vim.opt.expandtab = true - - vim.o.clipboard = "unnamedplus" - EOF - ''; - - generatedConfigs = { - lua = '' - require("config.lazy") - - local lsp = require("lsp-zero").preset({}) - - lsp.on_attach(function(client, bufnr) - lsp.default_keymaps({ buffer = bufnr }) - end) - - lsp.setup_servers({ - "tsserver", - "eslint", - "hls", - "pyright", - "nil_ls", - "cssls", - "html", - "jsonls", - "diagnosticls", - "lua_ls", - "marksman", - "purescriptls", - "tailwindcss", - "bashls", - }) - - require("lspconfig").lua_ls.setup(lsp.nvim_lua_ls()) - - lsp.setup() - - local cmp = require("cmp") - cmp.setup({ - snippet = { - expand = function(args) - require("luasnip").lsp_expand(args.body) - end, - }, - sources = { - { name = "nvim_lsp" }, - { name = "luasnip" }, - }, - }) - - vim.cmd([[ - au BufRead,BufNewFile *.purs set filetype=purescript - ]]) - - local has_words_before = function() - unpack = unpack or table.unpack - local line, col = unpack(vim.api.nvim_win_get_cursor(0)) - return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil - end - - local luasnip = require("luasnip") - - cmp.setup({ - enabled = function() - -- disable completion in comments - local context = require("cmp.config.context") - -- keep command mode completion enabled when cursor is in a comment - if vim.api.nvim_get_mode().mode == "c" then - return true - else - return not context.in_treesitter_capture("comment") and not context.in_syntax_group("Comment") - end - end, - mapping = { - ["<Tab>"] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_next_item() - -- You could replace the expand_or_jumpable() calls with expand_or_locally_jumpable() - -- they way you will only jump inside the snippet region - elseif luasnip.expand_or_jumpable() then - luasnip.expand_or_jump() - elseif has_words_before() then - cmp.complete() - else - fallback() - end - end, { "i", "s" }), - - ["<S-Tab>"] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_prev_item() - elseif luasnip.jumpable(-1) then - luasnip.jump(-1) - else - fallback() - end - end, { "i", "s" }), - - ["<CR>"] = cmp.mapping({ - i = function(fallback) - if cmp.visible() and cmp.get_active_entry() then - cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false }) - else - fallback() - end - end, - s = cmp.mapping.confirm({ select = true }), - c = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true }), - }), - }, - }) - - vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(vim.lsp.diagnostic.on_publish_diagnostics, { - -- Disable virtual_text - virtual_text = false, - }) - - require("notify").setup({ - background_colour = "#000000", - }) - ''; - }; - - extraPackages = LSPs ++ LSPs'; - }; - }; -} diff --git a/homeConfig/modules/security.nix b/homeConfig/modules/security/default.nix similarity index 89% rename from homeConfig/modules/security.nix rename to homeConfig/modules/security/default.nix index 907ce35..529ada8 100644 --- a/homeConfig/modules/security.nix +++ b/homeConfig/modules/security/default.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, config, ... }: +{ lib, config, ... }: with lib; let diff --git a/homeConfig/modules/utils.nix b/homeConfig/modules/utils/default.nix similarity index 100% rename from homeConfig/modules/utils.nix rename to homeConfig/modules/utils/default.nix