diff --git a/awesome/autostart.sh b/awesome/autostart.sh new file mode 100755 index 0000000..d46f390 --- /dev/null +++ b/awesome/autostart.sh @@ -0,0 +1,51 @@ +#!/usr/bin/env bash +# --- +# Use "run program" to run it only if it is not already running +# Use "program &" to run it regardless +# --- +# NOTE: This script runs with every restart of AwesomeWM +# TODO: run_once + +function run { + if ! pgrep $1 ; + then + $@& + fi +} + +# Load terminal colorscheme and settings +#xrdb ~/.Xresources + +# Urxvt daemon +#run urxvtd -q -o -f + +# Mpv input file +mkfifo /tmp/mpv.fifo + +# Volume notification daemon +#run volume-daemon + +# For desktop effects +run compton --config ~/.config/compton/compton.conf + +# Enable numlock on login +run numlockx + +# For battery notifications +run xfce4-power-manager + +# Network manager tray icon +run nm-applet + +# Keyboard +setxkbmap -layout "us,gr" -option "grp:alt_shift_toggle" +#setxkbmap -layout "us,gr,ru" -option "grp:alt_shift_toggle" + +# Kill redshift processes +#pkill redshift + +# Music +run mpd ~/.config/mpd/mpd.conf + +# Scratchpad +#scratchpad diff --git a/awesome/bars.lua b/awesome/bars.lua new file mode 100644 index 0000000..55a8a72 --- /dev/null +++ b/awesome/bars.lua @@ -0,0 +1,240 @@ +local awful = require("awful") +local gears = require("gears") +local wibox = require("wibox") +local beautiful = require("beautiful") +--local xresources = require("beautiful.xresources") +--local xrdb = xresources.get_current_theme() + +local helpers = require("helpers") +local keys = require("keys") + +-- {{{ Widgets +local desktop_mode_widget = require("noodle.desktop_mode_widget") +local minimal_tasklist = require("noodle.minimal_tasklist") + +-- Volume widget prefix +volumebar_prefix = wibox.widget.textbox(" ") +volumebar_prefix.markup = helpers.colorize_text(volumebar_prefix.text, beautiful.prefix_fg) + +-- Keyboard map indicator and switcher +keyboardlayout_prefix = wibox.widget.textbox(" ") +keyboardlayout_prefix.markup = helpers.colorize_text(keyboardlayout_prefix.text, beautiful.prefix_fg) +mykeyboardlayout = awful.widget.keyboardlayout() + +-- Create a textclock widget that shows date +date_prefix = wibox.widget.textbox(" ") +date_prefix.markup = helpers.colorize_text(date_prefix.text, beautiful.prefix_fg) +--mytextdate = wibox.widget.textclock("%a %d %B") +mytextdate = wibox.widget.textclock("%j days around the sun") --HAHA very useful +-- Create a textclock widget +clock_prefix = wibox.widget.textbox(" ") +clock_prefix.markup = helpers.colorize_text(clock_prefix.text, beautiful.prefix_fg) +mytextclock = wibox.widget.textclock("%H:%M") + +-- Create item separator +textseparator = wibox.widget.textbox() +textseparator.text = beautiful.separator_text +textseparator.markup = helpers.colorize_text(textseparator.text, beautiful.separator_fg) + +-- Create padding +pad = wibox.widget.textbox(" ") + +-- Create a wibox for each screen and add it +local taglist_buttons = gears.table.join( + awful.button({ }, 1, function(t) t:view_only() end), + awful.button({ modkey }, 1, function(t) + if client.focus then + client.focus:move_to_tag(t) + end + end), + awful.button({ }, 3, awful.tag.viewtoggle), + awful.button({ modkey }, 3, function(t) + if client.focus then + client.focus:toggle_tag(t) + end + end), + awful.button({ }, 4, function(t) awful.tag.viewprev(t.screen) end), + awful.button({ }, 5, function(t) awful.tag.viewnext(t.screen) end) + ) + +local tasklist_buttons = gears.table.join( + awful.button({ }, 1, + function (c) + if c == client.focus then + c.minimized = true + else + -- Without this, the following + -- :isvisible() makes no sense + c.minimized = false + if not c:isvisible() and c.first_tag then + c.first_tag:view_only() + end + -- This will also un-minimize + -- the client, if needed + client.focus = c + c:raise() + end + end), + -- Middle mouse button closes the window + awful.button({ }, 2, function (c) c:kill() end), + awful.button({ }, 3, helpers.client_menu_toggle()), + awful.button({ }, 4, function () + awful.client.focus.byidx(-1) + end), + awful.button({ }, 5, function () + awful.client.focus.byidx(1) + end) +) +-- }}} + +awful.screen.connect_for_each_screen(function(s) + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt({prompt = " Run: ", fg = beautiful.prompt_fg}) + -- Create an imagebox widget which will contain an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(gears.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) end), + awful.button({ }, 3, function () awful.layout.inc(-1) end), + awful.button({ }, 4, function () awful.layout.inc( 1) end), + awful.button({ }, 5, function () awful.layout.inc(-1) end))) + -- Create a taglist widget + s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, taglist_buttons) + s.mytaglist.font = beautiful.font + + -- Create a tasklist widget + -- Show all clients + --s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, tasklist_buttons) + -- Show only focused client + --s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.focused, tasklist_buttons) + -- Show only minimized clients + --s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.minimizedcurrenttags, tasklist_buttons) + + -- Outer gaps + --awful.screen.padding(awful.screen.focused(),{left = 28, right = 28, top = 28, bottom = 28}) + + -- Create a system tray widget + s.systray = wibox.widget.systray() + s.systray.visible = false -- can be toggled by a keybind + + -- Wibar detached - Method: Transparent useless bar + -- Requires compositor + if beautiful.wibar_detached then + s.useless_wibar = awful.wibar({ position = beautiful.wibar_position, screen = s, height = beautiful.screen_margin * 2, opacity = 0 }) + --TODO + --s.useless_wibar:buttons(keys.desktopbuttons) + end + -- Create the wibox + s.mywibox = awful.wibar({ position = beautiful.wibar_position, screen = s, width = beautiful.wibar_width, height = beautiful.wibar_height, shape = helpers.rrect(beautiful.wibar_border_radius)}) + -- Wibar items + -- Add or remove widgets here + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + --s.mylayoutbox, + --mylauncher, + s.mytaglist, + textseparator, + minimal_tasklist + }, + { -- Middle widgets + layout = wibox.layout.fixed.horizontal, + --s.mypromptbox, + --textseparator, + --s.mytasklist, + --minimal_tasklist + }, + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + --mpdarc_widget, + --textseparator, + --volumebar_prefix, + --volumebar_widget, + --textseparator, + --keyboardlayout_prefix, + --mykeyboardlayout, + --textseparator, + s.systray, + --minimal_tasklist, + textseparator, + --date_prefix, + mytextdate, + textseparator, + --clock_prefix, + mytextclock, + textseparator, + desktop_mode_widget, + pad, + pad + }, + } + + -- Second (alternate panel) + if beautiful.wibar_alt_enabled then + if beautiful.wibar_alt_detached then + s.useless_wibar_alt = awful.wibar({ position = beautiful.wibar_alt_position, screen = s, height = beautiful.screen_margin * 2, opacity = 0 }) + s.useless_wibar_alt:buttons(gears.table.join( + --TODO + --keys.desktopbuttons + )) + end + s.mywibox_alt = awful.wibox({ position = beautiful.wibar_alt_position, screen = s, width = beautiful.wibar_alt_width, height = beautiful.wibar_alt_height, shape = helpers.rrect(beautiful.wibar_alt_border_radius)}) + -- Only set them if they exist, else they overwrite the position variable + if beautiful.wibar_alt_x then + s.mywibox_alt.x = beautiful.wibar_alt_x + end + if beautiful.wibar_alt_y then + s.mywibox_alt.y = beautiful.wibar_alt_y + end + -- Second wibar items + -- Add or remove widgets here + s.mywibox_alt:setup { + layout = wibox.layout.align.horizontal, + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + --pad, + --s.mylayoutbox, + --mylauncher, + }, + { -- Middle widgets + layout = wibox.layout.fixed.horizontal, + --s.mypromptbox, + --s.mytasklist, + --textseparator, + }, + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + --mpdarc_widget, + --textseparator, + --volumebar_prefix, + --volumebar_widget, + --textseparator, + --keyboardlayout_prefix, + --mykeyboardlayout, + --textseparator, + s.systray, + minimal_tasklist, + textseparator, + date_prefix, + mytextdate, + textseparator, + clock_prefix, + mytextclock, + textseparator, + desktop_mode_widget, + pad + }, + } + end + + -- Only set them if they exist, else they overwrite the position variable + if beautiful.wibar_x then + s.mywibox.x = beautiful.wibar_x + end + if beautiful.wibar_y then + s.mywibox.y = beautiful.wibar_y + end + +end) + diff --git a/awesome/helpers.lua b/awesome/helpers.lua new file mode 100644 index 0000000..106d9de --- /dev/null +++ b/awesome/helpers.lua @@ -0,0 +1,91 @@ +local awful = require("awful") +local gears = require("gears") +local beautiful = require("beautiful") +local wibox = require("wibox") + +local helpers = {} + +-- Create rounded rectangle shape +helpers.rrect = function(radius) + return function(cr, width, height) + --gears.shape.partially_rounded_rect(cr, width, height, true, true, false, false, 12) + gears.shape.rounded_rect(cr, width, height, radius) + --gears.shape.octogon(cr, width, height, radius) + --gears.shape.rounded_bar(cr, width, height) + end +end + +-- Create info bubble shape +-- TODO +helpers.infobubble = function(radius) + return function(cr, width, height) + gears.shape.infobubble(cr, width, height, radius) + end +end + +-- Create rectangle shape +helpers.rect = function() + return function(cr, width, height) + gears.shape.rectangle(cr, width, height) + end +end + +function helpers.colorize_text(txt, fg) + return "" .. txt .. "" +end + +function helpers.client_menu_toggle() + local instance = nil + + return function () + if instance and instance.wibox.visible then + instance:hide() + instance = nil + else + instance = awful.menu.clients({ theme = { width = 250 } }) + end + end +end + +function helpers.pad(size) + local str = "" + for i = 1, size do + str = str .. " " + end + local pad = wibox.widget.textbox(str) + return pad +end + +function helpers.move_to_edge(c, direction) + local workarea = awful.screen.focused().workarea + local client_geometry = c:geometry() + if direction == "up" then + c:geometry({ nil, y = workarea.y + beautiful.screen_margin * 2, nil, nil }) + elseif direction == "down" then + c:geometry({ nil, y = workarea.height + workarea.y - client_geometry.height - beautiful.screen_margin * 2 - beautiful.border_width * 2, nil, nil }) + elseif direction == "left" then + c:geometry({ x = workarea.x + beautiful.screen_margin * 2, nil, nil, nil }) + elseif direction == "right" then + c:geometry({ x = workarea.width + workarea.x - client_geometry.width - beautiful.screen_margin * 2 - beautiful.border_width * 2, nil, nil, nil }) + end +end + +function helpers.create_titlebar(c, titlebar_buttons, titlebar_position, titlebar_size) + awful.titlebar(c, {font = beautiful.titlebar_font, position = titlebar_position, size = titlebar_size}) : setup { + { + buttons = titlebar_buttons, + layout = wibox.layout.fixed.horizontal + }, + { + buttons = titlebar_buttons, + layout = wibox.layout.fixed.horizontal + }, + { + buttons = titlebar_buttons, + layout = wibox.layout.fixed.horizontal + }, + layout = wibox.layout.align.horizontal + } +end + +return helpers diff --git a/awesome/keys.lua b/awesome/keys.lua new file mode 100644 index 0000000..defb914 --- /dev/null +++ b/awesome/keys.lua @@ -0,0 +1,727 @@ +local awful = require("awful") +local naughty = require("naughty") +local gears = require("gears") +local beautiful = require("beautiful") +local wibox = require("wibox") + +local helpers = require("helpers") + +local keys = {} + +-- Mod keys +modkey = "Mod4" +altkey = "Mod1" +ctrlkey = "Control" +shiftkey = "Shift" + +-- {{{ Mouse bindings +keys.desktopbuttons = gears.table.join( + awful.button({ }, 1, function () + mymainmenu:hide() + uc = awful.client.urgent.get() + -- If there is no urgent client, go back to last tag + if uc == nil then + awful.tag.history.restore() + else + awful.client.urgent.jumpto() + end + end), + awful.button({ }, 3, function () mymainmenu:toggle() end), + + -- Side buttons - Minimize and restore minimized client + awful.button({ }, 8, function() + if client.focus ~= nil then + client.focus.minimized = true + end + end), + awful.button({ }, 9, function() + local c = awful.client.restore() + -- Focus restored client + if c then + client.focus = c + c:raise() + end + end), + + -- Middle click and scrolling - Control volume + awful.button({ }, 2, function () awful.spawn.with_shell("volume-control.sh toggle") end), + awful.button({ }, 4, function () awful.spawn.with_shell("volume-control.sh up") end), + awful.button({ }, 5, function () awful.spawn.with_shell("volume-control.sh down") end) + + -- Switch tags with sidebuttons + --awful.button({ }, 8, awful.tag.viewprev), + --awful.button({ }, 9, awful.tag.viewnext) +) +-- }}} + +-- {{{ Key bindings +keys.globalkeys = gears.table.join( + --awful.key({ modkey, }, "s", hotkeys_popup.show_help, + --{description="show help", group="awesome"}), + --awful.key({ modkey, }, "comma", awful.tag.viewprev, + --{description = "view previous", group = "tag"}), + --awful.key({ modkey, }, "period", awful.tag.viewnext, + --{description = "view next", group = "tag"}), + + -- Focus client by direction + awful.key({ modkey }, "Down", + function() + awful.client.focus.bydirection("down") + if client.focus then client.focus:raise() end + end, + {description = "focus down", group = "client"}), + awful.key({ modkey }, "Up", + function() + awful.client.focus.bydirection("up") + if client.focus then client.focus:raise() end + end, + {description = "focus up", group = "client"}), + awful.key({ modkey }, "Left", + function() + awful.client.focus.bydirection("left") + if client.focus then client.focus:raise() end + end, + {description = "focus left", group = "client"}), + awful.key({ modkey }, "Right", + function() + awful.client.focus.bydirection("right") + if client.focus then client.focus:raise() end + end, + {description = "focus right", group = "client"}), + awful.key({ modkey, altkey }, "j", + function() + awful.client.focus.bydirection("down") + if client.focus then client.focus:raise() end + end, + {description = "focus down", group = "client"}), + awful.key({ modkey, altkey }, "k", + function() + awful.client.focus.bydirection("up") + if client.focus then client.focus:raise() end + end, + {description = "focus up", group = "client"}), + awful.key({ modkey, altkey }, "h", + function() + awful.client.focus.bydirection("left") + if client.focus then client.focus:raise() end + end, + {description = "focus left", group = "client"}), + awful.key({ modkey, altkey }, "l", + function() + awful.client.focus.bydirection("right") + if client.focus then client.focus:raise() end + end, + {description = "focus right", group = "client"}), + -- Focus client by index (cycle through clients) + awful.key({ modkey }, "j", + function () + awful.client.focus.byidx( 1) + end, + {description = "focus next by index", group = "client"} + ), + awful.key({ modkey }, "k", + function () + awful.client.focus.byidx(-1) + end, + {description = "focus previous by index", group = "client"} + ), + awful.key({ modkey, }, "g", + function () + awful.tag.incgap(5, nil) + end, + {description = "increment gaps size for the current tag", group = "gaps"} + ), + awful.key({ modkey, shiftkey }, "g", + function () + awful.tag.incgap(-5, nil) + end, + {description = "decrement gap size for the current tag", group = "gaps"} + ), + -- Kill all visible clients + awful.key({ modkey, altkey }, "q", + function () + local clients = awful.screen.focused().clients + for _, c in pairs(clients) do + c:kill() + end + end, + {description = "kill all visible clients for the current tag", group = "gaps"} + ), + -- Main menu + --awful.key({ modkey, }, "w", function () mymainmenu:show() end, + --{description = "show main menu", group = "awesome"}), + awful.key({ modkey, }, "Escape", awful.tag.history.restore, + {description = "go back", group = "tag"}), + + -- Layout manipulation + awful.key({ modkey, shiftkey }, "j", function () + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local c = client.focus + -- Floating: move client to edge + if c ~= nil and (current_layout == "floating" or c.floating) then + --c:relative_move( 0, 40, 0, 0) + helpers.move_to_edge(c, "down") + else + --awful.client.swap.byidx( 1) + awful.client.swap.bydirection("down", c, nil) + + end + end, + --{description = "swap with next client by index", group = "client"}), + {description = "swap with direction down", group = "client"}), + awful.key({ modkey, shiftkey }, "k", function () + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local c = client.focus + -- Floating: move client to edge + if c ~= nil and (current_layout == "floating" or c.floating) then + --c:relative_move( 0, -40, 0, 0) + helpers.move_to_edge(c, "up") + else + --awful.client.swap.byidx( -1) + awful.client.swap.bydirection("up", c, nil) + end + end, + {description = "swap with direction up", group = "client"}), + -- No need for these (single screen setup) + --awful.key({ modkey, ctrlkey }, "j", function () awful.screen.focus_relative( 1) end, + --{description = "focus the next screen", group = "screen"}), + --awful.key({ modkey, ctrlkey }, "k", function () awful.screen.focus_relative(-1) end, + --{description = "focus the previous screen", group = "screen"}), + awful.key({ modkey, }, "u", + function () + uc = awful.client.urgent.get() + -- If there is no urgent client, go back to last tag + if uc == nil then + awful.tag.history.restore() + else + awful.client.urgent.jumpto() + end + end, + {description = "jump to urgent client", group = "client"}), + awful.key({ modkey }, "Tab", function() awful.spawn.with_shell("~/scr/Rofi/rofi_combi") end, + {description = "window switcher", group = "launcher"}), + --awful.key({ modkey, }, "Tab", + --function () + --awful.client.focus.history.previous() + --if client.focus then + --client.focus:raise() + --end + --end, + --{description = "go back", group = "client"}), + + -- Standard program + awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, + {description = "open a terminal", group = "launcher"}), + awful.key({ modkey, }, "t", function () awful.spawn(tmux) end, + {description = "open a terminal with tmux", group = "launcher"}), + -- Spawn floating terminal (see awful.rules below) + awful.key({ modkey, shiftkey }, "Return", function() + awful.spawn(floating_terminal) + end, + {description = "spawn floating terminal", group = "launcher"}), + awful.key({ modkey, shiftkey }, "t", function() awful.spawn(floating_tmux) end, + {description = "spawn floating terminal with tmux", group = "launcher"}), + awful.key({ modkey, shiftkey }, "r", awesome.restart, + {description = "reload awesome", group = "awesome"}), + awful.key({ modkey, shiftkey }, "x", awesome.quit, + {description = "quit awesome", group = "awesome"}), + awful.key({ modkey, ctrlkey }, "h", function () + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local c = client.focus + -- Floating: resize client + if current_layout == "floating" or c.floating == true then + c:relative_move( 0, 0, -20, 0) + else + awful.tag.incmwfact(-0.05) + end + end, + {description = "decrease master width factor", group = "layout"}), + awful.key({ modkey, ctrlkey }, "l", function () + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local c = client.focus + -- Floating: resize client + if current_layout == "floating" or c.floating == true then + c:relative_move( 0, 0, 20, 0) + else + awful.tag.incmwfact( 0.05) + end + end, + {description = "increase master width factor", group = "layout"}), + awful.key({ modkey, shiftkey }, "h", + function () + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local c = client.focus + -- Floating: move client to edge + if c ~= nil and (current_layout == "floating" or c.floating) then + --c:relative_move( -40, 0, 0, 0) + helpers.move_to_edge(c, "left") + else + awful.client.swap.bydirection("left", c, nil) + end + end, + {description = "swap with direction left", group = "client"}), + awful.key({ modkey, shiftkey }, "l", + function () + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local c = client.focus + -- Floating: move client to edge + if c ~= nil and (current_layout == "floating" or c.floating) then + --c:relative_move( 40, 0, 0, 0) + helpers.move_to_edge(c, "right") + else + awful.client.swap.bydirection("right", c, nil) + end + end, + {description = "swap with direction right", group = "client"}), + awful.key({ modkey }, "h", + function () + awful.tag.incnmaster( 1, nil, true) + end, + {description = "increase the number of master clients", group = "layout"}), + awful.key({ modkey }, "l", + function () + awful.tag.incnmaster(-1, nil, true) + end, + {description = "decrease the number of master clients", group = "layout"}), + awful.key({ modkey, shiftkey, ctrlkey }, "h", function () + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local c = client.focus + -- Floating: move client + if c ~= nil and (current_layout == "floating" or c.floating) then + c:relative_move( -20, 0, 0, 0) + else + awful.tag.incncol( 1, nil, true) + end + end, + {description = "increase the number of columns", group = "layout"}), + awful.key({ modkey, shiftkey, ctrlkey }, "l", function () + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local c = client.focus + -- Floating: move client + if c ~= nil and (current_layout == "floating" or c.floating) then + c:relative_move( 20, 0, 0, 0) + else + awful.tag.incncol(-1, nil, true) + end + end), + --awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end, + --{description = "select next", group = "layout"}), + --awful.key({ modkey, shiftkey }, "space", function () awful.layout.inc(-1) end, + --{description = "select previous", group = "layout"}), + + awful.key({ modkey, shiftkey }, "n", + function () + local c = awful.client.restore() + -- Focus restored client + if c then + client.focus = c + c:raise() + end + end, + {description = "restore minimized", group = "client"}), + + -- Prompt + -- Run program (d for dmenu ;) + --awful.key({ modkey }, "d", function () awful.screen.focused().mypromptbox:run() end, + --{description = "run prompt", group = "launcher"}), + awful.key({ modkey }, "d", function() awful.spawn.with_shell("~/scr/Rofi/rofi_launch") end, + {description = "rofi launcher", group = "launcher"}), + + -- Run lua code + --awful.key({ modkey }, "r", + --function () + --awful.prompt.run { + --prompt = " Lua: ", + --textbox = awful.screen.focused().mypromptbox.widget, + --exe_callback = awful.util.eval, + --history_path = awful.util.get_cache_dir() .. "/history_eval" + --} + --end, + --{description = "lua execute prompt", group = "awesome"}), + + -- Dismiss notifications + awful.key( { ctrlkey }, "space", function() + naughty.destroy_all_notifications() + end, + {description = "dismiss notification", group = "notifications"}), + + -- Menubar + --awful.key({ modkey, ctrlkey }, "b", function() menubar.show() end, + --{description = "show the menubar", group = "launcher"}), + -- Volume Control + awful.key( { }, "XF86AudioMute", function() + awful.spawn.with_shell("volume-control.sh toggle") + end, + {description = "(un)mute volume", group = "volume"}), + awful.key( { }, "XF86AudioLowerVolume", function() + awful.spawn.with_shell("volume-control.sh down") + end, + {description = "lower volume", group = "volume"}), + awful.key( { }, "XF86AudioRaiseVolume", function() + awful.spawn.with_shell("volume-control.sh up") + end, + {description = "raise volume", group = "volume"}), + -- Screenshots + awful.key( { }, "Print", function() awful.spawn.with_shell("screenshot.sh") end, + {description = "take full screenshot", group = "screenshots"}), + awful.key( { modkey, shiftkey }, "c", function() awful.spawn.with_shell("screenshot.sh -s") end, + {description = "select area to capture", group = "screenshots"}), + awful.key( { modkey, ctrlkey }, "c", function() awful.spawn.with_shell("screenshot.sh -c") end, + {description = "select area to copy to clipboard", group = "screenshots"}), + awful.key( { modkey }, "Print", function() awful.spawn.with_shell("screenshot.sh -b") end, + {description = "browse screenshots", group = "screenshots"}), + awful.key( { modkey, shiftkey }, "Print", function() awful.spawn.with_shell("screenshot.sh -e") end, + {description = "edit most recent screenshot with gimp", group = "screenshots"}), + -- Toggle tray visibility + awful.key({ modkey }, "=", function () + awful.screen.focused().systray.visible = not awful.screen.focused().systray.visible + end, + {description = "toggle systray visibility", group = "custom"}), + -- Toggle night light + awful.key({ modkey }, "x", function() awful.spawn.with_shell("flux") end, + {description = "toggle night light", group = "launcher"}), + -- Toggle compositor + awful.key({ modkey }, "z", function() awful.spawn.with_shell("compositor") end, + {description = "toggle compositor", group = "launcher"}), + -- Media keys + awful.key({ modkey }, "period", function() awful.spawn.with_shell("mpc next") end, + {description = "next song", group = "media"}), + awful.key({ modkey }, "comma", function() awful.spawn.with_shell("mpc prev") end, + {description = "previous song", group = "media"}), + awful.key({ modkey }, "space", function() awful.spawn.with_shell("mpc toggle") end, + {description = "toggle pause/play", group = "media"}), + awful.key({ modkey, shiftkey }, "period", function() awful.spawn.with_shell("mpvc next") end, + {description = "mpv next song", group = "media"}), + awful.key({ modkey, shiftkey }, "comma", function() awful.spawn.with_shell("mpvc prev") end, + {description = "mpv previous song", group = "media"}), + awful.key({ modkey, shiftkey}, "space", function() awful.spawn.with_shell("mpvc toggle") end, + {description = "mpv toggle pause/play", group = "media"}), + awful.key({ modkey, shiftkey}, "F8", function() awful.spawn.with_shell("mpvc quit") end, + {description = "mpv quit", group = "media"}), + awful.key({ modkey }, "q", function() + if client.focus ~= nil and client.focus.class == "scratchpad" then + client.focus.minimized = true + return + end + local matcher = function (c) + return awful.rules.match(c, {class = 'scratchpad'}) + end + awful.client.run_or_raise( "scratchpad" , matcher) + end, + {description = "scratchpad", group = "launcher"}), + -- Set max layout + awful.key({ modkey }, "w", function() + awful.layout.set(awful.layout.suit.max) + end, + {description = "set max layout", group = "tag"}), + -- Set tiled layout + awful.key({ modkey }, "s", function() + awful.layout.set(awful.layout.suit.tile) + end, + {description = "set tiled layout", group = "tag"}), + -- Set floating layout + awful.key({ modkey, shiftkey }, "s", function() + awful.layout.set(awful.layout.suit.floating) + end, + {description = "set floating layout", group = "tag"}), + -- Run or raise or minimize calcurse + awful.key({ modkey }, "F1", function() + if client.focus ~= nil and client.focus.class == "calendar" then + client.focus.minimized = true + return + end + local matcher = function (c) + return awful.rules.match(c, {class = 'calendar'}) + end + awful.client.run_or_raise( terminal .. " --class calendar -e calcurse", matcher) + end, + {description = "calcurse", group = "launcher"}), + -- Spawn ranger in a terminal + awful.key({ modkey }, "F2", function() awful.spawn(terminal .. " -e ranger") end, + {description = "ranger", group = "launcher"}), + -- Spawn ncmpcpp in a terminal + awful.key({ modkey }, "F3", function() awful.spawn(terminal .. " -e ncmpcpp") end, + {description = "ncmpcpp", group = "launcher"}), + -- Spawn cava in a terminal + awful.key({ modkey }, "F4", function() awful.spawn(terminal .. " -e cava") end, + {description = "cava", group = "launcher"}), + -- Show system info (cpu, ram, battery, temp) + awful.key({ modkey }, "grave", function() awful.spawn.with_shell("~/scr/info/stats") end, + {description = "current system info", group = "launcher"}), + -- Quick edit config file + awful.key({ modkey }, "e", function() awful.spawn.with_shell("~/scr/Rofi/rofi_quickedit") end, + {description = "quick edit", group = "launcher"}), + -- mpvtube + awful.key({ modkey }, "y", function() awful.spawn.with_shell("~/scr/Rofi/rofi_mpvtube") end, + {description = "mpvtube", group = "launcher"}), + -- mpvtube song + awful.key({ modkey, shiftkey }, "y", function() awful.spawn.with_shell("~/scr/info/mpv-query.sh") end, + {description = "show mpv media title", group = "launcher"}), + -- Spawn htop in a terminal + awful.key({ modkey }, "p", function() awful.spawn(terminal .. " -e htop") end, + {description = "htop", group = "launcher"}) +) + +keys.clientkeys = gears.table.join( + -- Move floating client (relative) + awful.key({ modkey, shiftkey }, "Down", function (c) c:relative_move( 0, 40, 0, 0) end), + awful.key({ modkey, shiftkey }, "Up", function (c) c:relative_move( 0, -40, 0, 0) end), + awful.key({ modkey, shiftkey }, "Left", function (c) c:relative_move(-40, 0, 0, 0) end), + awful.key({ modkey, shiftkey }, "Right", function (c) c:relative_move( 40, 0, 0, 0) end), + -- Center client + awful.key({ modkey }, "c", function (c) + awful.placement.centered(c,{honor_workarea=true}) + --awful.placement.centered(c,nil) + end), + -- Resize client + awful.key({ modkey, ctrlkey }, "j", function (c) + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + if current_layout == "floating" or c.floating == true then + c:relative_move( 0, 0, 0, 20) + else + awful.client.incwfact(0.15) + end + end), + awful.key({ modkey, ctrlkey }, "k", function (c) + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + if current_layout == "floating" or c.floating == true then + c:relative_move( 0, 0, 0, -20) + else + awful.client.incwfact(-0.15) + end + end), + awful.key({ modkey, shiftkey, ctrlkey }, "j", function (c) + -- Relative move + c:relative_move(0, 20, 0, 0) + end), + awful.key({ modkey, shiftkey, ctrlkey }, "k", function (c) + -- Relative move + c:relative_move(0, -20, 0, 0) + end), + -- Toggle titlebar (for focused client only) + awful.key({ modkey, }, "b", + function (c) + -- Don't toggle if titlebars are used as borders + if not beautiful.titlebars_imitate_borders then + awful.titlebar.toggle(c, beautiful.titlebar_position) + end + end, + {description = "toggle titlebar", group = "client"}), + -- Toggle titlebar (for all visible clients in selected tag) + awful.key({ modkey, shiftkey }, "b", + function (c) + --local s = awful.screen.focused() + local clients = awful.screen.focused().clients + for _, c in pairs(clients) do + -- Don't toggle if titlebars are used as borders + if not beautiful.titlebars_imitate_borders then + awful.titlebar.toggle(c, beautiful.titlebar_position) + end + end + end, + {description = "toggle titlebar", group = "client"}), + -- Toggle fullscreen + awful.key({ modkey, }, "f", + function (c) + c.fullscreen = not c.fullscreen + c:raise() + end, + {description = "toggle fullscreen", group = "client"}), + -- Resize and set floating + -- F for focused view + awful.key({ modkey, shiftkey }, "f", + function (c) + c.width = 950 + c.height = 600 + --c.width = 750 + --c.height = 500 + c.floating = true + awful.placement.centered(c,{honor_workarea=true}) + c:raise() + end, + {description = "focus mode", group = "client"}), + -- Resize and set floating 2: Electric Boogaloo + -- F for focused view + awful.key({ modkey, ctrlkey }, "f", + function (c) + c.width = 600 + c.height = 600 + --c.width = 750 + --c.height = 500 + c.floating = true + awful.placement.centered(c,{honor_workarea=true}) + c:raise() + end, + {description = "focus mode", group = "client"}), + -- T for tiny window + awful.key({ modkey, ctrlkey }, "t", + function (c) + c.width = 400 + c.height = 260 + c.floating = true + awful.placement.centered(c,{honor_workarea=true}) + c:raise() + end, + {description = "tiny mode", group = "client"}), + -- N for normal window + awful.key({ modkey, ctrlkey }, "n", + function (c) + c.width = 640 + c.height = 400 + c.floating = true + awful.placement.centered(c,{honor_workarea=true}) + c:raise() + end, + {description = "normal mode", group = "client"}), + awful.key({ modkey, shiftkey }, "q", function (c) c:kill() end, + {description = "close", group = "client"}), + --awful.key({ modkey, ctrlkey }, "space", awful.client.floating.toggle , + -- Toggle floating + awful.key({ modkey, ctrlkey }, "space", + function(c) + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + if current_layout ~= "floating" then + awful.client.floating.toggle() + end + --c:raise() + end, + {description = "toggle floating", group = "client"}), + awful.key({ modkey, ctrlkey }, "Return", function (c) c:swap(awful.client.getmaster()) end, + {description = "move to master", group = "client"}), + awful.key({ modkey, }, "o", function (c) c:move_to_screen() end, + {description = "move to screen", group = "client"}), + -- P for pin: keep on top OR sticky + -- On top + awful.key({ modkey, shiftkey }, "p", function (c) c.ontop = not c.ontop end, + {description = "toggle keep on top", group = "client"}), + -- Sticky + awful.key({ modkey, ctrlkey }, "p", function (c) c.sticky = not c.sticky end, + {description = "toggle sticky", group = "client"}), + -- Minimize + awful.key({ modkey, }, "n", + function (c) + -- The client currently has the input focus, so it cannot be + -- minimized, since minimized clients can't have the focus. + c.minimized = true + end , + {description = "minimize", group = "client"}), + awful.key({ modkey, }, "m", + function (c) + c.maximized = not c.maximized + c:raise() + end , + {description = "(un)maximize", group = "client"}), + awful.key({ modkey, ctrlkey }, "m", + function (c) + c.maximized_vertical = not c.maximized_vertical + c:raise() + end , + {description = "(un)maximize vertically", group = "client"}), + awful.key({ modkey, shiftkey }, "m", + function (c) + c.maximized_horizontal = not c.maximized_horizontal + c:raise() + end , + {description = "(un)maximize horizontally", group = "client"}) +) + +-- Bind all key numbers to tags. +-- Be careful: we use keycodes to make it work on any keyboard layout. +-- This should map on the top row of your keyboard, usually 1 to 9. +local ntags = 10 +for i = 1, ntags do + keys.globalkeys = gears.table.join(keys.globalkeys, + -- View tag only. + awful.key({ modkey }, "#" .. i + 9, + function () + local screen = awful.screen.focused() + local tag = screen.tags[i] + local current_tag = screen.selected_tag + -- Tag back and forth: + -- If you try to focus the same tag you are at, + -- go back to the previous tag. + -- Useful for quick switching after for example + -- checking an incoming chat message at tag 2 + -- and coming back to your work at tag 1 + if tag then + if tag == current_tag then + awful.tag.history.restore() + else + tag:view_only() + end + end + -- Simple tag view + --if tag then + --tag:view_only() + --end + end, + {description = "view tag #"..i, group = "tag"}), + -- Toggle tag display. + awful.key({ modkey, ctrlkey }, "#" .. i + 9, + function () + local screen = awful.screen.focused() + local tag = screen.tags[i] + if tag then + awful.tag.viewtoggle(tag) + end + end, + {description = "toggle tag #" .. i, group = "tag"}), + -- Move client to tag. + awful.key({ modkey, shiftkey }, "#" .. i + 9, + function () + if client.focus then + local tag = client.focus.screen.tags[i] + if tag then + client.focus:move_to_tag(tag) + end + end + end, + {description = "move focused client to tag #"..i, group = "tag"}), + -- Move all visible clients to tag and focus that tag + awful.key({ modkey, altkey }, "#" .. i + 9, + function () + local tag = client.focus.screen.tags[i] + local clients = awful.screen.focused().clients + if tag then + for _, c in pairs(clients) do + c:move_to_tag(tag) + end + tag:view_only() + end + end, + {description = "move all visible clients to tag #"..i, group = "tag"}), + -- Toggle tag on focused client. + awful.key({ modkey, ctrlkey, shiftkey }, "#" .. i + 9, + function () + if client.focus then + local tag = client.focus.screen.tags[i] + if tag then + client.focus:toggle_tag(tag) + end + end + end, + {description = "toggle focused client on tag #" .. i, group = "tag"}) + ) +end + +-- Mouse buttons on the client (whole window, not just titlebar) +keys.clientbuttons = gears.table.join( + awful.button({ }, 1, function (c) client.focus = c; c:raise() end), + awful.button({ modkey }, 1, awful.mouse.client.move), + awful.button({ modkey }, 3, function(c) + awful.mouse.resize(c, nil, {jump_to_corner=true}) + end) +) +-- }}} + +-- Set keys +root.keys(keys.globalkeys) +root.buttons(keys.desktopbuttons) + + + + + + + +return keys diff --git a/awesome/noodle/desktop_mode_widget.lua b/awesome/noodle/desktop_mode_widget.lua new file mode 100644 index 0000000..5a1e437 --- /dev/null +++ b/awesome/noodle/desktop_mode_widget.lua @@ -0,0 +1,120 @@ +local awful = require("awful") +local gears = require("gears") +local beautiful = require("beautiful") +local wibox = require("wibox") + +-- Get theme variables +local floating_color = beautiful.desktop_mode_color_floating or "#1D8CD2" +local tile_color = beautiful.desktop_mode_color_tile or "#2DD283" +local max_color = beautiful.desktop_mode_color_max or "#D21D43" +local floating_text = beautiful.desktop_mode_text_floating or "(fl)" +local tile_text = beautiful.desktop_mode_text_tile or "(ti)" +local max_text = beautiful.desktop_mode_text_max or "(ma)" + +--local desktop_mode_widget = wibox.widget.textbox("") +--desktop_mode_widget.font = beautiful.font +--desktop_mode_widget.align = "center" +local desktop_mode_widget = wibox.widget{ + font = beautiful.font, + markup = '  ', + align = 'center', + valign = 'center', + widget = wibox.widget.textbox +} + +-- Mouse control +desktop_mode_widget:buttons(gears.table.join( + -- Old Left click: toggle between tile and floating + toggle titlebars + -- Left click: toggle titlebar for focused client + awful.button({ }, 1, function () + --switch_modes() + if client.focus ~= nil then + awful.titlebar.toggle(client.focus, beautiful.titlebar_position) + end + end), + -- Right click: Toggle titlebars in all visible clients + awful.button({ }, 3, function () + local clients = awful.screen.focused().clients + for _, c in pairs(clients) do + -- Don't toggle if titlebars are used as borders + if not beautiful.titlebars_imitate_borders then + awful.titlebar.toggle(c, beautiful.titlebar_position) + end + end + end), + -- TODO + awful.button({ }, 4, function () + awful.layout.inc(-1) + --local clients = awful.screen.focused().clients + --for _, c in pairs(clients) do + --awful.titlebar.show(c, beautiful.titlebar_position) + --end + end), + awful.button({ }, 5, function () + awful.layout.inc(1) + --local clients = awful.screen.focused().clients + --for _, c in pairs(clients) do + ---- Don't hide if titlebars are used as borders + --if not beautiful.titlebars_imitate_borders then + --awful.titlebar.hide(c, beautiful.titlebar_position) + --end + --end + end) +)) + +function switch_modes() + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + if current_layout == "floating" then + local clients = awful.screen.focused().clients + for _, c in pairs(clients) do + -- Don't hide if titlebars are used as borders + if not beautiful.titlebars_imitate_borders then + awful.titlebar.hide(c, beautiful.titlebar_position) + end + end + awful.layout.set(awful.layout.suit.tile) + else + --elseif current_layout == "tile" then + local clients = awful.screen.focused().clients + for _, c in pairs(clients) do + awful.titlebar.show(c, beautiful.titlebar_position) + end + -- Delay so that the windows will first be resized properly + -- by the tiling layout + gears.timer.delayed_call(function() + awful.layout.set(awful.layout.suit.floating) + end) + end +end + +local function update_widget() + local current_layout = awful.layout.getname(awful.layout.get(awful.screen.focused())) + local color + local txt + if current_layout == "max" then + color = max_color + txt = max_text + elseif current_layout == "tile" then + color = tile_color + txt = tile_text + elseif current_layout == "floating" then + color = floating_color + txt = floating_text + else + --default + color = tile_color + txt = tile_text + end + + desktop_mode_widget.markup = "" .. txt .. "" +end + +-- Signals +awful.tag.attached_connect_signal(s, "property::selected", function () + update_widget() +end) +awful.tag.attached_connect_signal(s, "property::layout", function () + update_widget() +end) + +return desktop_mode_widget diff --git a/awesome/noodle/minimal_tasklist.lua b/awesome/noodle/minimal_tasklist.lua new file mode 100644 index 0000000..8eb67d7 --- /dev/null +++ b/awesome/noodle/minimal_tasklist.lua @@ -0,0 +1,119 @@ +local awful = require("awful") +local gears = require("gears") +local beautiful = require("beautiful") +local wibox = require("wibox") +local capi = { screen = screen, client = client } + +-- Get theme variables +local visible_clients_color = beautiful.minimal_tasklist_visible_clients_color or "#1D8CD2" +local visible_clients_text = beautiful.minimal_tasklist_visible_clients_text or "v: " +local hidden_clients_color = beautiful.minimal_tasklist_hidden_clients_color or "#2DD283" +local hidden_clients_text = beautiful.minimal_tasklist_hidden_clients_text or "h: " + +local minimal_tasklist = wibox.widget{ + font = beautiful.font, + text = "placeholder", + align = 'center', + valign = 'center', + widget = wibox.widget.textbox +} + --TODO forced_width = ? + +-- Mouse control +minimal_tasklist:buttons(gears.table.join( + -- Restore minimized + awful.button({ }, 1, function () + local c = awful.client.restore() + if c then + client.focus = c + c:raise() + end + end), + -- Close + awful.button({ }, 2, function () + if client.focus ~= nil then + client.focus:kill() + end + end), + -- Minimize + awful.button({ }, 3, function () + if client.focus ~= nil then + client.focus.minimized = true + end + end), + -- Cycle clients + awful.button({ }, 4, function () + awful.client.focus.byidx(-1) + end), + awful.button({ }, 5, function () + awful.client.focus.byidx(1) + end) +)) + +-- Returns the minimized clients in the current tag(s) +local function get_minimized_clients() + local clients = {} + for _, c in ipairs(capi.client.get()) do + if not (c.skip_taskbar or c.hidden + or c.type == "splash" or c.type == "dock" + or c.type == "desktop") and c.minimized + and awful.widget.tasklist.filter.currenttags(c, awful.screen.focused()) then + table.insert(clients,c) + end + end + + return clients +end + +local function update_widget() + local s = awful.screen.focused() + local hidden_clients = get_minimized_clients() + --local hidden_clients = s.hidden_clients + local clients = s.clients + --local color = "#493999" + local txt = hidden_clients_text .. #hidden_clients .. visible_clients_text .. #clients + + -- Padding for single digit numbers + local vpad = "" + local hpad = "" + if #clients < 10 then + vpad = " " + --vpad = "0" + --vpad = "_" + end + if #hidden_clients < 10 then + hpad = " " + --hpad = "0" + --hpad = "_" + end + + minimal_tasklist.text = txt + minimal_tasklist.markup = + "" + .. visible_clients_text .. "" .. vpad .. #clients .. " ·~" + .. "" + .. hidden_clients_text .. "" .. hpad .. #hidden_clients +end + +-- Signals +--minimal_tasklist:connect_signal("mouse::enter", function () + --awful.spawn.with_shell("notify-send hello") +--end) +--minimal_tasklist:connect_signal("mouse::leave", function () + --awful.spawn.with_shell("notify-send bye") +--end) + +client.connect_signal("unmanage", function(c) + update_widget() +end) +client.connect_signal("manage", function(c) + update_widget() +end) +client.connect_signal("property::minimized", function(c) + update_widget() +end) +awful.tag.attached_connect_signal(s, "property::selected", function () + update_widget() +end) + +return minimal_tasklist diff --git a/awesome/rc.lua b/awesome/rc.lua new file mode 100644 index 0000000..cd9f2c9 --- /dev/null +++ b/awesome/rc.lua @@ -0,0 +1,684 @@ +-- ████ +-- ▒▒███ +-- ████████ ██████ ▒███ █████ ████ ██████ +-- ▒▒███▒▒███ ███▒▒███ ▒███ ▒▒███ ▒███ ▒▒▒▒▒███ +-- ▒███ ▒▒▒ ▒███ ▒▒▒ ▒███ ▒███ ▒███ ███████ +-- ▒███ ▒███ ███ ▒███ ▒███ ▒███ ███▒▒███ +-- █████ ▒▒██████ ██ █████ ▒▒████████▒▒████████ +-- ▒▒▒▒▒ ▒▒▒▒▒▒ ▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒ +-- +-------------------------------------------------------------------------------- + +local theme_collection = { + "manta", -- 1 -- + --"whatever", -- 2 -- + -- Add more themes here +} + +-- Change this number to use a different theme +local theme_name = theme_collection[1] + +-------------------------------------------------------------------------------- + +-- Jit +--pcall(function() jit.on() end) + +-- Theme handling library +local beautiful = require("beautiful") +-- Themes define colours, icons, font and wallpapers. +local theme_dir = os.getenv("HOME") .. "/.config/awesome/themes/" +beautiful.init( theme_dir .. theme_name .. "/theme.lua" ) +--beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua") + +-- Standard awesome library +local gears = require("gears") +local awful = require("awful") +require("awful.autofocus") +-- Widget and layout library +local wibox = require("wibox") +-- Default notification library +local naughty = require("naughty") +local menubar = require("menubar") +local hotkeys_popup = require("awful.hotkeys_popup").widget +-- Enable hotkeys help widget for VIM and other apps +-- when client with a matching name is opened: +require("awful.hotkeys_popup.keys") + +-- {{{ Initialize stuff +local helpers = require("helpers") +local bars = require("bars") +local keys = require("keys") +local titlebars = require("titlebars") +-- }}} + +-- {{{ Third party stuff +--local volumebar_widget = require("third_party.awesome-wm-widgets.volumebar-widget.volumebar") +--local mpdarc_widget = require("third_party.awesome-wm-widgets.mpdarc-widget.mpdarc") +-- }}} + +-- {{{ Error handling +-- Check if awesome encountered an error during startup and fell back to +-- another config (This code will only ever execute for the fallback config) +if awesome.startup_errors then + naughty.notify({ preset = naughty.config.presets.critical, + title = "Oops, there were errors during startup!", + text = awesome.startup_errors }) +end + +-- Handle runtime errors after startup +do + local in_error = false + awesome.connect_signal("debug::error", function (err) + -- Make sure we don't go into an endless error loop + if in_error then return end + in_error = true + + naughty.notify({ preset = naughty.config.presets.critical, + title = "Oops, an error happened!", + text = tostring(err) }) + in_error = false + end) +end +-- }}} + +-- {{{ Variable definitions +-- This is used later as the default terminal and editor to run. +terminal = "termite" +floating_terminal = "termite --class Diptera" +tmux = terminal .. " -e tmux new " +floating_tmux = terminal .. " --class Diptera -e tmux new " +editor = "vim" +--editor = os.getenv("EDITOR") or "nano" +editor_cmd = terminal .. " -e " .. editor .. " " + +-- Table of layouts to cover with awful.layout.inc, order matters. +awful.layout.layouts = { + -- I only ever use these + awful.layout.suit.tile, + awful.layout.suit.floating, + awful.layout.suit.max, + --awful.layout.suit.spiral, + --awful.layout.suit.spiral.dwindle, + --awful.layout.suit.tile.top, + --awful.layout.suit.fair, + --awful.layout.suit.fair.horizontal, + --awful.layout.suit.tile.left, + --awful.layout.suit.tile.bottom, + --awful.layout.suit.max.fullscreen, + --awful.layout.suit.corner.nw, + --awful.layout.suit.magnifier, + --awful.layout.suit.corner.ne, + --awful.layout.suit.corner.sw, + --awful.layout.suit.corner.se, +} +-- }}} + +-- {{{ Notifications +-- TODO: some options are not respected when the notification is created +-- through lib-notify. Naughty works as expected. + +-- Icon size +naughty.config.defaults['icon_size'] = beautiful.notification_icon_size + +-- Timeouts +naughty.config.defaults.timeout = 5 +naughty.config.presets.low.timeout = 2 +naughty.config.presets.critical.timeout = 12 + +-- Apply theme variables +naughty.config.padding = beautiful.notification_padding +naughty.config.spacing = beautiful.notification_spacing +naughty.config.defaults.margin = beautiful.notification_margin +naughty.config.defaults.border_width = beautiful.notification_border_width + +naughty.config.presets.normal = { + font = beautiful.font, + fg = beautiful.notification_fg, + bg = beautiful.notification_bg, + border_width = beautiful.notification_border_width, + margin = beautiful.notification_margin, + position = beautiful.notification_position +} + +naughty.config.presets.low = { + font = beautiful.font, + fg = beautiful.notification_fg, + bg = beautiful.notification_bg, + border_width = beautiful.notification_border_width, + margin = beautiful.notification_margin, + position = beautiful.notification_position +} + +naughty.config.presets.ok = naughty.config.presets.low +naughty.config.presets.info = naughty.config.presets.low +naughty.config.presets.warn = naughty.config.presets.normal + +naughty.config.presets.critical = { + font = beautiful.font, + fg = beautiful.notification_crit_fg, + bg = beautiful.notification_crit_bg, + border_width = beautiful.notification_border_width, + margin = beautiful.notification_margin, + position = beautiful.notification_position +} + +-- }}} + +-- {{{ Menu +-- Create a launcher widget and a main menu +myawesomemenu = { + { "hotkeys", function() return false, hotkeys_popup.show_help end}, + { "manual", terminal .. " -e \"man awesome\"" }, + { "restart", awesome.restart }, + { "quit", function() awesome.quit() end} +} +mymusicmenu = { + { "mpd toggle", function() awful.spawn.with_shell("mpc toggle") end}, + { "mpd next", function() awful.spawn.with_shell("mpc next") end}, + { "mpd previous", function() awful.spawn.with_shell("mpc prev") end}, + { "ncmpcpp", function() awful.spawn.with_shell(terminal .. " -e ncmpcpp") end}, + { "--------------", nil}, + { "mpv toggle", function() awful.spawn.with_shell("mpvc toggle") end}, + { "mpv next", function() awful.spawn.with_shell("mpvc next") end}, + { "mpv previous", function() awful.spawn.with_shell("mpvc prev") end}, + { "mpvtube", function() awful.spawn.with_shell("~/scr/Rofi/rofi_mpvtube") end} +} + + + +-- Need to allow these commands to be run without password +-- Or if you are using systemd: systemctl [suspend|hibernate] +mypowermenu = { + { "reboot", "reboot" }, + { "suspend", "sudo pm-suspend" }, + { "hibernate", "sudo pm-hibernate" }, + { "poweroff", "poweroff" } +} + +--mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon }, + --{ "music", mymusicmenu, beautiful.awesome_icon }, + --{ "power", mypowermenu, beautiful.awesome_icon }, +mymainmenu = awful.menu({ items = { + { "awesome", myawesomemenu }, + { "music", mymusicmenu }, + { "firefox", "firefox" }, + { "files", "nemo" }, + { "discord", "discord" }, + { "gimp", "gimp" }, + { "appearance", "lxappearance" }, + { "volume", "pavucontrol" }, + { "games", "lutris" }, + { "steam", "steam" }, + { "terminal", terminal }, + { "power", mypowermenu } + } + }) + +mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, + menu = mymainmenu }) + +-- Menubar configuration +menubar.utils.terminal = terminal -- Set the terminal for applications that require it +-- }}} + +local function set_wallpaper(s) + -- Wallpaper + if beautiful.wallpaper then + local wallpaper = beautiful.wallpaper + -- If wallpaper is a function, call it with the screen + if type(wallpaper) == "function" then + wallpaper = wallpaper(s) + end + + -- Method 1: Built in function + --gears.wallpaper.maximized(wallpaper, s, true) + + -- Method 2: Set theme's wallpaper with feh + --awful.spawn.with_shell("feh --bg-fill " .. wallpaper) + + -- Method 3: Set last wallpaper with feh + awful.spawn.with_shell(os.getenv("HOME") .. "/.fehbg") + end +end + +-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) +screen.connect_signal("property::geometry", set_wallpaper) + +-- Tag Names +local tagnames = beautiful.tagnames or { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10" } + +awful.screen.connect_for_each_screen(function(s) + -- Wallpaper + set_wallpaper(s) + + -- Layouts + -- Each screen has its own tag table. + local l = awful.layout.suit -- Alias to save time :) + local layouts = { l.max, l.floating, l.max, l.tile , l.tile, + l.max, l.floating, l.max, l.floating, l.floating} + awful.tag(tagnames, s, layouts) +end) + +-- {{{ Rules +-- Rules to apply to new clients (through the "manage" signal). +awful.rules.rules = { + -- All clients will match this rule. + { rule = { }, + properties = { border_width = beautiful.border_width, + border_color = beautiful.border_normal, + focus = awful.client.focus.filter, + raise = true, + keys = keys.clientkeys, + buttons = keys.clientbuttons, + screen = awful.screen.preferred, + size_hints_honor = false, + honor_workarea = true, + honor_padding = true, + placement = awful.placement.no_overlap+awful.placement.no_offscreen + } + }, + + -- Floating clients + { rule_any = { + instance = { + "DTA", -- Firefox addon DownThemAll. + "copyq", -- Includes session name in class. + }, + class = { + "Galculator", + "feh", + "Gpick", + "Diptera", -- Floating Termite + }, + + name = { + "Event Tester", -- xev + }, + role = { + "AlarmWindow", -- Thunderbird's calendar. + "pop-up", -- e.g. Google Chrome's (detached) Developer Tools. + } + }, properties = { floating = true, ontop = false }}, + + -- Add titlebars to normal clients and dialogs + -- Not needed anymore -- + { rule_any = {type = { "normal", "dialog" } + }, properties = { titlebars_enabled = true }--, + --callback = function (c) + --end + }, + + -- Centered clients + { rule_any = { + type = { + "dialog", + }, + class = { + "feh", + }, + name = { + "Save As", + }, + role = { + "GtkFileChooserDialog", + } + }, properties = {}, + callback = function (c) + awful.placement.centered(c,{honor_workarea=true}) + end + }, + + -- Titlebars OFF (explicitly) + -- Titlebars of these clients will be hidden regardless of the theme setting + { rule_any = { + class = { + "qutebrowser", + "feh", + "Gimp", + "Sublime_text", + --"discord", + --"TelegramDesktop", + "Firefox", + "Chromium-browser", + "Rofi", + }, + }, properties = {}, + callback = function (c) + if not beautiful.titlebars_imitate_borders then + awful.titlebar.hide(c, beautiful.titlebar_position) + end + end + }, + + + -- Titlebars ON (explicitly) + -- Titlebars of these clients will be shown regardless of the theme setting + { rule_any = { + class = { + --"feh", + --"qutebrowser", + --"Firefox", + --"Rofi" + }, + }, properties = {}, + callback = function (c) + awful.titlebar.show(c, beautiful.titlebar_position) + end + }, + + -- Skip taskbar + { rule_any = { + class = { + --"feh", + }, + + }, properties = {}, + callback = function (c) + c.skip_taskbar = true + end + }, + + -- Fixed terminal geometry + { rule_any = { + class = { + "Termite", + "Diptera", + "mpvtube", + "kitty", + "st-256color", + "st", + "URxvt", + "XTerm", + }, + }, properties = { width = 640, height = 400 } + }, + + -- File managers + { rule_any = { + class = { + "Nemo", + "Thunar" + }, + }, properties = { floating = true, width = 580, height = 440 } + }, + + -- Rofi configuration + -- Needed only if option "-normal-window" is used + { rule_any = { + class = { + "Rofi", + }, + }, properties = { floating = true, ontop = true, sticky = true }, + callback = function (c) + c.skip_taskbar = true + awful.placement.centered(c,{honor_workarea=true}) + end + }, + + -- Screenruler + { rule_any = { + class = { + "Screenruler", + }, + }, properties = { floating = true, ontop = true }, + callback = function (c) + c.border_width = 0 + awful.titlebar.hide(c, beautiful.titlebar_position) + awful.placement.centered(c,{honor_workarea=true}) + end + }, + + -- On screen keyboard + --{ rule_any = { + --class = { + --"Onboard", + --}, + --}, properties = { floating = true, ontop = false, sticky = false, focusable = false }, + --callback = function (c) + ----c.skip_taskbar = true + ----awful.placement.centered(c,{honor_workarea=true}) + --end + --}, + + -- Scratchpad and calendar (calcurse) + { rule_any = { + class = { + "scratchpad", + "calendar", + }, + }, properties = { tag = awful.screen.focused().tags[10], floating = true, ontop = false, sticky = true }, + callback = function (c) + c.skip_taskbar = true + c.minimized = true + awful.placement.centered(c,{honor_workarea=true}) + end + }, + + --------------------------------------------- + -- Start application on specific workspace -- + --------------------------------------------- + -- Example: + -- Set Firefox to always map on the tag named "2" on screen 1. + --{ rule = { class = "Firefox" }, + --properties = { screen = 1, tag = "2" } }, + -- Browsing + { rule_any = { + class = { + "Firefox", + "Chromium-browser", + "qutebrowser", + }, + --local clients = + }, properties = { screen = 1, tag = awful.screen.focused().tags[1] } }, + + -- Chatting + { rule_any = { + class = { + "discord", + "TelegramDesktop", + "TeamSpeak 3", + }, + --local clients = + }, properties = { screen = 1, tag = awful.screen.focused().tags[3] } }, + + -- Photo editing + { rule_any = { + class = { + "Gimp", + "Inkscape", + }, + }, properties = { screen = 1, tag = awful.screen.focused().tags[6] } }, + + -- Gaming + { rule_any = { + class = { + "Steam", + "battle.net.exe", + "Lutris", + }, + }, properties = { screen = 1, tag = awful.screen.focused().tags[8] } }, + + -- Music + { rule_any = { + class = { + "mpvtube", + }, + --name = { + --"mpvtube", + --}, + + }, properties = { screen = 1, tag = awful.screen.focused().tags[10] }, + callback = function (c) + awful.placement.centered(c,{honor_workarea=true}) + gears.timer.delayed_call(function() + c.urgent = false + end) + end + }, +} +-- }}} + +-- {{{ Signals +-- Signal function to execute when a new client appears. +client.connect_signal("manage", function (c) + -- Set every new window as a slave, + -- i.e. put it at the end of others instead of setting it master. + if not awesome.startup then awful.client.setslave(c) end + + if awesome.startup and + not c.size_hints.user_position + and not c.size_hints.program_position then + -- Prevent clients from being unreachable after screen count changes. + awful.placement.no_offscreen(c) + end + + -- Hide titlebars if required by the theme + if not beautiful.titlebars_enabled then + awful.titlebar.hide(c, beautiful.titlebar_position) + end + + -- If the layout is not floating, every floating client that appears is centered + if awful.layout.get(mouse.screen) ~= awful.layout.suit.floating then + awful.placement.centered(c,{honor_workarea=true}) + else + -- If the layout is floating, and there is no other client visible, center it + if #mouse.screen.clients == 1 then + awful.placement.centered(c,{honor_workarea=true}) + end + end +end) + +-- Enable sloppy focus, so that focus follows mouse. +--client.connect_signal("mouse::enter", function(c) +-- if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier +-- and awful.client.focus.filter(c) then +-- client.focus = c +-- end +--end) + +-- Rounded corners +if beautiful.border_radius ~= 0 then + client.connect_signal("manage", function (c, startup) + if not c.fullscreen then + c.shape = helpers.rrect(beautiful.border_radius) + end + end) + + -- Make sure fullscreen clients do not have rounded corners + client.connect_signal("property::fullscreen", function (c) + if c.fullscreen then + -- Use delayed_call in order to avoid flickering when corners + -- change shape + gears.timer.delayed_call(function() + c.shape = helpers.rect() + end) + else + c.shape = helpers.rrect(beautiful.border_radius) + end + end) +end + +-- When a client starts up in fullscreen, resize it to cover the fullscreen a short moment later +-- Fixes wrong geometry when titlebars are enabled +client.connect_signal("property::fullscreen", function(c) + if c.fullscreen then + gears.timer.delayed_call(function() + if c.valid then + c:geometry(c.screen.geometry) + end + end) + end +end) + +-- Center client when floating property changes +--client.connect_signal("property::floating", function(c) + --awful.placement.centered(c,{honor_workarea=true}) +--end) + +-- Apply shapes +-- beautiful.notification_shape = helpers.infobubble(beautiful.notification_border_radius) +beautiful.notification_shape = helpers.rrect(beautiful.notification_border_radius) +beautiful.snap_shape = helpers.rrect(beautiful.border_radius * 2) +beautiful.taglist_shape = helpers.rrect(beautiful.taglist_item_roundness) + +client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) +client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) + +-- Scratchpad gets minimized when it loses focus +--client.connect_signal("unfocus", function(c) + --if c.class == "scratchpad" or c.class == "calendar" then + --c.minimized = true + --end +--end) + +-- Scratchpad gets minimized if it is focused and tag changes +awful.tag.attached_connect_signal(s, "property::selected", function () + local c = client.focus + if c ~= nil then + if c.class == "scratchpad" or c.class == "calendar" then + c.minimized = true + end + end +end) + +-- Test signal +-- Use the following line to trigger it: +-- awesome.emit_signal("dummy") +--awesome.connect_signal("dummy", function(c) + --naughty.notify({ preset = naughty.config.presets.normal, + --title = "bitch", + --text = "dummy" }) +--end) + +-- Floating: restore geometry +tag.connect_signal('property::layout', + function(t) + for k, c in ipairs(t:clients()) do + if awful.layout.get(mouse.screen) == awful.layout.suit.floating then + -- Geometry x = 0 and y = 0 most probably means that the + -- clients have been spawned in a non floating layout, and thus + -- they don't have their floating_geometry set properly. + -- If that is the case, don't change their geometry + local cgeo = awful.client.property.get(c, 'floating_geometry') + if cgeo ~= nil then + if not (cgeo.x == 0 and cgeo.y == 0) then + c:geometry(awful.client.property.get(c, 'floating_geometry')) + end + end + --c:geometry(awful.client.property.get(c, 'floating_geometry')) + end + end + end +) + +client.connect_signal('manage', + function(c) + if awful.layout.get(mouse.screen) == awful.layout.suit.floating then + awful.client.property.set(c, 'floating_geometry', c:geometry()) + end + end +) + +client.connect_signal('property::geometry', + function(c) + if awful.layout.get(mouse.screen) == awful.layout.suit.floating then + awful.client.property.set(c, 'floating_geometry', c:geometry()) + end + end +) + +-- Make rofi possible to raise minimized clients +-- Note: causes clients to unminimize after restarting awesome +client.connect_signal("request::activate", + function(c, context, hints) + if c.minimized then + c.minimized = false + end + awful.ewmh.activate(c, context, hints) + end +) + +-- Startup applications +awful.spawn.with_shell( os.getenv("HOME") .. "/.config/awesome/autostart.sh") + +-- }}} diff --git a/awesome/themes/manta/icons/submenu.svg b/awesome/themes/manta/icons/submenu.svg new file mode 100644 index 0000000..54052a6 --- /dev/null +++ b/awesome/themes/manta/icons/submenu.svg @@ -0,0 +1,11 @@ + + + diff --git a/awesome/themes/manta/theme.lua b/awesome/themes/manta/theme.lua new file mode 100644 index 0000000..b90e289 --- /dev/null +++ b/awesome/themes/manta/theme.lua @@ -0,0 +1,333 @@ +-- _ _ _ _ +-- | |__ _____ _| (_) | _____ +-- | '_ \ / _ \ \/ / | | |/ / _ \ +-- | |_) | (_) > <| | | < __/ +-- |_.__/ \___/_/\_\_|_|_|\_\___| +-- +-- A *box lookalike + +local theme_assets = require("beautiful.theme_assets") +local xresources = require("beautiful.xresources") +local dpi = xresources.apply_dpi +local gfs = require("gears.filesystem") +local themes_path = gfs.get_themes_dir() +local theme_name = "manta" +local icon_path = os.getenv("HOME") .. "/.config/awesome/themes/" .. theme_name .. "/icons/" +local titlebar_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/" .. theme_name .. "/titlebar/" +local tip = titlebar_icon_path --alias to save time +local xrdb = xresources.get_current_theme() +local theme = dofile(themes_path.."default/theme.lua") +--local theme = {} + +theme.tip = titlebar_icon_path -- So a script can access it + +local awful = require("awful") +-- Used to make it easier to align the panels in specific monitor positions +local screen_width = awful.screen.focused().geometry.width +local screen_height = awful.screen.focused().geometry.height + +theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/" .. theme_name .. "/wall.png" +theme.font = "monospace 12" +--theme.font = "sans-serif 12" + +local accent_color = xrdb.color14 +local focused_color = xrdb.color14 +local unfocused_color = xrdb.color7 +local urgent_color = xrdb.color1 +local backdrop_color = awesome.xrdb_get_value("", "color16") + +theme.bg_dark = xrdb.background +theme.bg_normal = xrdb.background +theme.bg_focus = xrdb.background +theme.bg_urgent = xrdb.background +theme.bg_minimize = xrdb.color8 +theme.bg_systray = bg_dark + +theme.fg_normal = xrdb.color7 +theme.fg_focus = focused_color +theme.fg_urgent = urgent_color +theme.fg_minimize = xrdb.color8 + +-- Gaps +theme.useless_gap = dpi(5) +-- This is used to manually determine how far away from the +-- screen edge the bars should be (if they are detached) +theme.screen_margin = dpi(5) + +-- Borders +theme.border_width = dpi(0) +theme.border_normal = xrdb.color0 +theme.border_focus = xrdb.color0 +-- Rounded corners +theme.border_radius = dpi(6) + +-- Titlebars +theme.titlebars_enabled = true +theme.titlebar_size = dpi(32) +theme.titlebar_title_enabled = false +theme.titlebar_font = theme.font -- BUG: Uses theme.font regardless +-- Window title alignment: left, right, center +theme.titlebar_title_align = "center" +-- Titlebar position: top, bottom, left, right +theme.titlebar_position = "top" +-- Use 4 titlebars around the window to imitate borders +theme.titlebars_imitate_borders = false +theme.titlebar_bg = xrdb.color7 +-- theme.titlebar_bg_focus = xrdb.color5 +-- theme.titlebar_bg_normal = xrdb.color13 +theme.titlebar_fg_focus = xrdb.color7 +theme.titlebar_fg_normal = xrdb.color15 +--theme.titlebar_fg = xrdb.color7 + +-- Variables set for theming notifications: +-- notification_font +-- notification_[bg|fg] +-- notification_[width|height|margin] +-- notification_[border_color|border_width|shape|opacity] + +-- Values: bottom_left, bottom_right, bottom_middle, +-- top_left, top_right, top_middle +theme.notification_position = "top_right" +theme.notification_border_width = 0 +theme.notification_border_radius = theme.border_radius +theme.notification_border_color = xrdb.color10 +theme.notification_bg = xrdb.color7 +theme.notification_fg = xrdb.color0 +theme.notification_crit_bg = urgent_color +theme.notification_crit_fg = xrdb.color0 +theme.notification_margin = dpi(15) +theme.notification_icon_size = dpi(50) +--theme.notification_height = dpi(80) +--theme.notification_width = dpi(300) +--theme.notification_opacity = 0.7 +theme.notification_font = theme.font +theme.notification_padding = theme.screen_margin * 2 +theme.notification_spacing = theme.screen_margin * 2 + +-- Edge snap +theme.snap_bg = theme.bg_focus +if theme.border_width == 0 then + theme.snap_border_width = dpi(8) +else + theme.snap_border_width = theme.border_width * 2 +end + +-- Tag names +-- Symbols:       +local symb = "  " +theme.tagnames = { symb, symb, symb, symb, symb, symb, symb, symb, symb, symb } +-- Substitutes:    +-- Nature:         +--theme.tagnames = { "  ", "  ", "  ", "  ", "  ", "  ", "  ", "  ", "  ", "  " } +--theme.tagnames = { " i ", " ii ", " iii ", " iv ", " v ", " vi ", " vii ", " viii ", " ix ", " x " } + +-- Widget separator +--theme.separator_text = " / " +--theme.separator_text = " / " +--theme.separator_text = " ) ( " +--theme.separator_text = "  " +--theme.separator_text = " | " +--theme.separator_text = " " +--theme.separator_text = " :: " +--theme.separator_text = " ⠐ " +--theme.separator_text = " • " +--theme.separator_text = " •• " +--theme.separator_text = "  " +theme.separator_text = "  " +theme.separator_fg = xrdb.color8 + +-- Wibar +-- (The panel items can be customized in rc.lua) +theme.wibar_position = "bottom" +theme.wibar_detached = true +theme.wibar_height = dpi(40) +theme.wibar_fg = xrdb.color0 +theme.wibar_bg = xrdb.color7 +--theme.wibar_opacity = 0.7 +theme.wibar_border_color = xrdb.color0 +theme.wibar_border_width = 0 +theme.wibar_border_radius = theme.border_radius +--theme.wibar_width = screen_width - theme.screen_margin * 4 -theme.wibar_border_width * 2 +theme.wibar_width = 885 +--theme.wibar_x = screen_width / 2 - theme.wibar_width - theme.screen_margin * 2 +--theme.wibar_x = theme.screen_margin * 2 +--theme.wibar_x = screen_width - theme.wibar_width - theme.wibar_border_width * 2 - theme.screen_margin * 2 +--theme.wibar_y = theme.screen_margin * 2 + +-- Another wibar (optional) +theme.wibar_alt_enabled = false +--theme.wibar_alt_position = "bottom" +theme.wibar_alt_position = "left" --fake position so it does not increase screen margin +theme.wibar_alt_detached = false +theme.wibar_alt_height = dpi(40) +theme.wibar_alt_fg = xrdb.color7 +theme.wibar_alt_bg = xrdb.color0 +--theme.wibar_alt_opacity = 0.7 +theme.wibar_alt_border_color = xrdb.color0 +theme.wibar_alt_border_width = 0 +theme.wibar_alt_border_radius = theme.border_radius +theme.wibar_alt_width = 420 +theme.wibar_alt_x = screen_width / 2 + theme.screen_margin +--theme.wibar_alt_x = screen_width - theme.wibar_alt_width - theme.wibar_alt_border_width * 2 - theme.screen_margin * 2 +theme.wibar_alt_y = theme.screen_margin * 2 +--theme.wibar_alt_y = screen_height - theme.screen_margin * 2 - theme.wibar_alt_height - theme.wibar_alt_border_width * 2 + +-- Widgets +theme.prefix_fg = xrdb.color8 + + --There are other variable sets + --overriding the default one when + --defined, the sets are: + --taglist_[bg|fg]_[focus|urgent|occupied|empty|volatile] + --tasklist_[bg|fg]_[focus|urgent] + --titlebar_[bg|fg]_[normal|focus] + --tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] + --mouse_finder_[color|timeout|animate_timeout|radius|factor] + --prompt_[fg|bg|fg_cursor|bg_cursor|font] + --hotkeys_[bg|fg|border_width|border_color|shape|opacity|modifiers_fg|label_bg|label_fg|group_margin|font|description_font] + --Example: +--theme.taglist_bg_focus = "#ff0000" + + --Tasklist +theme.tasklist_disable_icon = true +theme.tasklist_plain_task_name = true +theme.tasklist_bg_focus = xrdb.color0 .. "00" +theme.tasklist_fg_focus = focused_color +theme.tasklist_bg_normal = xrdb.color0 .. "00" +theme.tasklist_fg_normal = unfocused_color +theme.tasklist_bg_minimize = xrdb.color0 .. "00" +theme.tasklist_fg_minimize = theme.fg_minimize +theme.tasklist_bg_urgent = xrdb.color0 .. "00" +theme.tasklist_fg_urgent = urgent_color +theme.tasklist_spacing = 5 +theme.tasklist_align = "center" + +-- Prompt +theme.prompt_fg = accent_color + +-- Taglist +theme.taglist_font = theme.font +theme.taglist_bg_focus = xrdb.color0 .. "00" +theme.taglist_fg_focus = xrdb.color9 +theme.taglist_bg_occupied = xrdb.color0 .. "00" +theme.taglist_fg_occupied = xrdb.color1 +theme.taglist_bg_empty = xrdb.color0 .. "00" +theme.taglist_fg_empty = xrdb.color15 +theme.taglist_bg_urgent = xrdb.color0 .. "00" +theme.taglist_fg_urgent = urgent_color +theme.taglist_disable_icon = true +theme.taglist_spacing = dpi(0) +--theme.taglist_item_roundness = 0 +theme.taglist_item_roundness = theme.border_radius +-- Generate taglist squares: +local taglist_square_size = dpi(0) +theme.taglist_squares_sel = theme_assets.taglist_squares_sel( + taglist_square_size, theme.fg_focus +) +theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel( + taglist_square_size, theme.fg_normal +) + +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] +theme.menu_submenu_icon = icon_path.."submenu.svg" +theme.menu_height = dpi(25) +theme.menu_width = dpi(200) + +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.bg_widget = "#cc0000" + +-- Define the images to load +theme.titlebar_close_button_normal = tip .. "/close_normal.svg" +theme.titlebar_close_button_focus = tip .. "/close_focus.svg" +theme.titlebar_minimize_button_normal = tip .. "/minimize_normal.svg" +theme.titlebar_minimize_button_focus = tip .. "/minimize_focus.svg" +theme.titlebar_ontop_button_normal_inactive = tip .. "/ontop_normal_inactive.svg" +theme.titlebar_ontop_button_focus_inactive = tip .. "/ontop_focus_inactive.svg" +theme.titlebar_ontop_button_normal_active = tip .. "/ontop_normal_active.svg" +theme.titlebar_ontop_button_focus_active = tip .. "/ontop_focus_active.svg" +theme.titlebar_sticky_button_normal_inactive = tip .. "/sticky_normal_inactive.svg" +theme.titlebar_sticky_button_focus_inactive = tip .. "/sticky_focus_inactive.svg" +theme.titlebar_sticky_button_normal_active = tip .. "/sticky_normal_active.svg" +theme.titlebar_sticky_button_focus_active = tip .. "/sticky_focus_active.svg" +theme.titlebar_floating_button_normal_inactive = tip .. "/floating_normal_inactive.svg" +theme.titlebar_floating_button_focus_inactive = tip .. "/floating_focus_inactive.svg" +theme.titlebar_floating_button_normal_active = tip .. "/floating_normal_active.svg" +theme.titlebar_floating_button_focus_active = tip .. "/floating_focus_active.svg" +theme.titlebar_maximized_button_normal_inactive = tip .. "/maximized_normal_inactive.svg" +theme.titlebar_maximized_button_focus_inactive = tip .. "/maximized_focus_inactive.svg" +theme.titlebar_maximized_button_normal_active = tip .. "/maximized_normal_active.svg" +theme.titlebar_maximized_button_focus_active = tip .. "/maximized_focus_active.svg" +-- (hover) +theme.titlebar_close_button_normal_hover = tip .. "/close_normal_hover.svg" +theme.titlebar_close_button_focus_hover = tip .. "/close_focus_hover.svg" +theme.titlebar_minimize_button_normal_hover = tip .. "/minimize_normal_hover.svg" +theme.titlebar_minimize_button_focus_hover = tip .. "/minimize_focus_hover.svg" +theme.titlebar_ontop_button_normal_inactive_hover = tip .. "/ontop_normal_inactive_hover.svg" +theme.titlebar_ontop_button_focus_inactive_hover = tip .. "/ontop_focus_inactive_hover.svg" +theme.titlebar_ontop_button_normal_active_hover = tip .. "/ontop_normal_active_hover.svg" +theme.titlebar_ontop_button_focus_active_hover = tip .. "/ontop_focus_active_hover.svg" +theme.titlebar_sticky_button_normal_inactive_hover = tip .. "/sticky_normal_inactive_hover.svg" +theme.titlebar_sticky_button_focus_inactive_hover = tip .. "/sticky_focus_inactive_hover.svg" +theme.titlebar_sticky_button_normal_active_hover = tip .. "/sticky_normal_active_hover.svg" +theme.titlebar_sticky_button_focus_active_hover = tip .. "/sticky_focus_active_hover.svg" +theme.titlebar_floating_button_normal_inactive_hover = tip .. "/floating_normal_inactive_hover.svg" +theme.titlebar_floating_button_focus_inactive_hover = tip .. "/floating_focus_inactive_hover.svg" +theme.titlebar_floating_button_normal_active_hover = tip .. "/floating_normal_active_hover.svg" +theme.titlebar_floating_button_focus_active_hover = tip .. "/floating_focus_active_hover.svg" +theme.titlebar_maximized_button_normal_inactive_hover = tip .. "/maximized_normal_inactive_hover.svg" +theme.titlebar_maximized_button_focus_inactive_hover = tip .. "/maximized_focus_inactive_hover.svg" +theme.titlebar_maximized_button_normal_active_hover = tip .. "/maximized_normal_active_hover.svg" +theme.titlebar_maximized_button_focus_active_hover = tip .. "/maximized_focus_active_hover.svg" + +-- You can use your own layout icons like this: +theme.layout_fairh = icon_path .. "fairh.png" +theme.layout_fairv = icon_path .. "fairv.png" +theme.layout_floating = icon_path .. "floating.png" +theme.layout_magnifier = icon_path .. "magnifier.png" +theme.layout_max = icon_path .. "max.png" +theme.layout_fullscreen = icon_path .. "fullscreen.png" +theme.layout_tilebottom = icon_path .. "tilebottom.png" +theme.layout_tileleft = icon_path .. "tileleft.png" +theme.layout_tile = icon_path .. "tile.png" +theme.layout_tiletop = icon_path .. "tiletop.png" +theme.layout_spiral = icon_path .. "spiral.png" +theme.layout_dwindle = icon_path .. "dwindle.png" +theme.layout_cornernw = icon_path .. "cornernw.png" +theme.layout_cornerne = icon_path .. "cornerne.png" +theme.layout_cornersw = icon_path .. "cornersw.png" +theme.layout_cornerse = icon_path .. "cornerse.png" + +-- Recolor layout icons +--theme = theme_assets.recolor_layout(theme, xrdb.color1) + +-- Desktop mode widget variables +-- Symbols    +theme.desktop_mode_color_floating = xrdb.color4 +theme.desktop_mode_color_tile = xrdb.color4 +theme.desktop_mode_color_max = xrdb.color3 +theme.desktop_mode_text_floating = "" +theme.desktop_mode_text_tile = "" +theme.desktop_mode_text_max = "" +-- Minimal tasklist widget variables +theme.minimal_tasklist_visible_clients_color = focused_color +theme.minimal_tasklist_visible_clients_text = "  " +theme.minimal_tasklist_hidden_clients_color = xrdb.color8 +theme.minimal_tasklist_hidden_clients_text = "  " + + +-- Generate Awesome icon: +theme.awesome_icon = theme_assets.awesome_icon( + theme.menu_height, theme.bg_focus, theme.fg_focus +) + +-- Define the icon theme for application icons. If not set then the icons +-- from /usr/share/icons and /usr/share/icons/hicolor will be used. +theme.icon_theme = "/usr/share/icons/Numix" + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/awesome/themes/manta/titlebar/button_focus.svg b/awesome/themes/manta/titlebar/button_focus.svg new file mode 100644 index 0000000..54052a6 --- /dev/null +++ b/awesome/themes/manta/titlebar/button_focus.svg @@ -0,0 +1,11 @@ + + + diff --git a/awesome/themes/manta/titlebar/button_hover.svg b/awesome/themes/manta/titlebar/button_hover.svg new file mode 100644 index 0000000..7b6005a --- /dev/null +++ b/awesome/themes/manta/titlebar/button_hover.svg @@ -0,0 +1,11 @@ + + + diff --git a/awesome/themes/manta/titlebar/button_normal.svg b/awesome/themes/manta/titlebar/button_normal.svg new file mode 100644 index 0000000..9d9c73a --- /dev/null +++ b/awesome/themes/manta/titlebar/button_normal.svg @@ -0,0 +1,11 @@ + + + diff --git a/awesome/themes/manta/titlebar/close_focus.svg b/awesome/themes/manta/titlebar/close_focus.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/close_focus.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/close_focus_hover.svg b/awesome/themes/manta/titlebar/close_focus_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/close_focus_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/close_normal.svg b/awesome/themes/manta/titlebar/close_normal.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/close_normal.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/close_normal_hover.svg b/awesome/themes/manta/titlebar/close_normal_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/close_normal_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/floating_focus_active.svg b/awesome/themes/manta/titlebar/floating_focus_active.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/floating_focus_active.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/floating_focus_active_hover.svg b/awesome/themes/manta/titlebar/floating_focus_active_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/floating_focus_active_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/floating_focus_inactive.svg b/awesome/themes/manta/titlebar/floating_focus_inactive.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/floating_focus_inactive.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/floating_focus_inactive_hover.svg b/awesome/themes/manta/titlebar/floating_focus_inactive_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/floating_focus_inactive_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/floating_normal_active.svg b/awesome/themes/manta/titlebar/floating_normal_active.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/floating_normal_active.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/floating_normal_active_hover.svg b/awesome/themes/manta/titlebar/floating_normal_active_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/floating_normal_active_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/floating_normal_inactive.svg b/awesome/themes/manta/titlebar/floating_normal_inactive.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/floating_normal_inactive.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/floating_normal_inactive_hover.svg b/awesome/themes/manta/titlebar/floating_normal_inactive_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/floating_normal_inactive_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/maximized_focus_active.svg b/awesome/themes/manta/titlebar/maximized_focus_active.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/maximized_focus_active.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/maximized_focus_active_hover.svg b/awesome/themes/manta/titlebar/maximized_focus_active_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/maximized_focus_active_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/maximized_focus_inactive.svg b/awesome/themes/manta/titlebar/maximized_focus_inactive.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/maximized_focus_inactive.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/maximized_focus_inactive_hover.svg b/awesome/themes/manta/titlebar/maximized_focus_inactive_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/maximized_focus_inactive_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/maximized_normal_active.svg b/awesome/themes/manta/titlebar/maximized_normal_active.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/maximized_normal_active.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/maximized_normal_active_hover.svg b/awesome/themes/manta/titlebar/maximized_normal_active_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/maximized_normal_active_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/maximized_normal_inactive.svg b/awesome/themes/manta/titlebar/maximized_normal_inactive.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/maximized_normal_inactive.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/maximized_normal_inactive_hover.svg b/awesome/themes/manta/titlebar/maximized_normal_inactive_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/maximized_normal_inactive_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/minimize_focus.svg b/awesome/themes/manta/titlebar/minimize_focus.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/minimize_focus.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/minimize_focus_hover.svg b/awesome/themes/manta/titlebar/minimize_focus_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/minimize_focus_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/minimize_normal.svg b/awesome/themes/manta/titlebar/minimize_normal.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/minimize_normal.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/minimize_normal_hover.svg b/awesome/themes/manta/titlebar/minimize_normal_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/minimize_normal_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/ontop_focus_active.svg b/awesome/themes/manta/titlebar/ontop_focus_active.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/ontop_focus_active.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/ontop_focus_active_hover.svg b/awesome/themes/manta/titlebar/ontop_focus_active_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/ontop_focus_active_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/ontop_focus_inactive.svg b/awesome/themes/manta/titlebar/ontop_focus_inactive.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/ontop_focus_inactive.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/ontop_focus_inactive_hover.svg b/awesome/themes/manta/titlebar/ontop_focus_inactive_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/ontop_focus_inactive_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/ontop_normal_active.svg b/awesome/themes/manta/titlebar/ontop_normal_active.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/ontop_normal_active.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/ontop_normal_active_hover.svg b/awesome/themes/manta/titlebar/ontop_normal_active_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/ontop_normal_active_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/ontop_normal_inactive.svg b/awesome/themes/manta/titlebar/ontop_normal_inactive.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/ontop_normal_inactive.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/ontop_normal_inactive_hover.svg b/awesome/themes/manta/titlebar/ontop_normal_inactive_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/ontop_normal_inactive_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/sticky_focus_active.svg b/awesome/themes/manta/titlebar/sticky_focus_active.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/sticky_focus_active.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/sticky_focus_active_hover.svg b/awesome/themes/manta/titlebar/sticky_focus_active_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/sticky_focus_active_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/sticky_focus_inactive.svg b/awesome/themes/manta/titlebar/sticky_focus_inactive.svg new file mode 120000 index 0000000..f5c599e --- /dev/null +++ b/awesome/themes/manta/titlebar/sticky_focus_inactive.svg @@ -0,0 +1 @@ +./button_focus.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/sticky_focus_inactive_hover.svg b/awesome/themes/manta/titlebar/sticky_focus_inactive_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/sticky_focus_inactive_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/sticky_normal_active.svg b/awesome/themes/manta/titlebar/sticky_normal_active.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/sticky_normal_active.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/sticky_normal_active_hover.svg b/awesome/themes/manta/titlebar/sticky_normal_active_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/sticky_normal_active_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/sticky_normal_inactive.svg b/awesome/themes/manta/titlebar/sticky_normal_inactive.svg new file mode 120000 index 0000000..a72934b --- /dev/null +++ b/awesome/themes/manta/titlebar/sticky_normal_inactive.svg @@ -0,0 +1 @@ +./button_normal.svg \ No newline at end of file diff --git a/awesome/themes/manta/titlebar/sticky_normal_inactive_hover.svg b/awesome/themes/manta/titlebar/sticky_normal_inactive_hover.svg new file mode 120000 index 0000000..fb79269 --- /dev/null +++ b/awesome/themes/manta/titlebar/sticky_normal_inactive_hover.svg @@ -0,0 +1 @@ +./button_hover.svg \ No newline at end of file diff --git a/awesome/titlebars.lua b/awesome/titlebars.lua new file mode 100644 index 0000000..6b197a1 --- /dev/null +++ b/awesome/titlebars.lua @@ -0,0 +1,137 @@ +local awful = require("awful") +local gears = require("gears") +local beautiful = require("beautiful") +local wibox = require("wibox") + +local helpers = require("helpers") +local titlebars = {} +local pad = helpers.pad + +-- Mouse buttons +titlebars.buttons = gears.table.join( + -- Left button - move + awful.button({ }, 1, function() + c = mouse.object_under_pointer() + client.focus = c + c:raise() + awful.mouse.client.move(c) + end), + -- Middle button - close + awful.button({ }, 2, function () + window_to_kill = mouse.object_under_pointer() + window_to_kill:kill() + end), + -- Right button - resize + awful.button({ }, 3, function() + c = mouse.object_under_pointer() + client.focus = c + c:raise() + awful.mouse.client.resize(c) + end), + -- Scroll up - toggle ontop + awful.button({ }, 4, function() + c = mouse.object_under_pointer() + --c.maximized = not c.maximized + c.ontop = not c.ontop + c:raise() + end), + -- Scroll down - minimize + awful.button({ }, 5, function() + c = mouse.object_under_pointer() + c.minimized = true + end), + -- Side button up - toggle floating + awful.button({ }, 9, function() + c = mouse.object_under_pointer() + --client.focus = c + --awful.placement.centered(c,{honor_workarea=true}) + c.floating = not c.floating + c:raise() + end), + -- Side button down - toggle sticky + awful.button({ }, 8, function() + c = mouse.object_under_pointer() + c.sticky = not c.sticky + end) +) + +-- Disable popup tooltip on titlebar button hover +awful.titlebar.enable_tooltip = false + +-- Add a titlebar +client.connect_signal("request::titlebars", function(c) + local buttons = titlebars.buttons + + local title_widget + if beautiful.titlebar_title_enabled then + title_widget = awful.titlebar.widget.titlewidget(c) + title_widget:set_align(beautiful.titlebar_title_align) + else + title_widget = wibox.widget.textbox("") + end + + local titlebar_item_layout + local titlebar_layout + if beautiful.titlebar_position == "left" or beautiful.titlebar_position == "right" then + titlebar_item_layout = wibox.layout.fixed.vertical + titlebar_layout = wibox.layout.align.vertical + else + titlebar_item_layout = wibox.layout.fixed.horizontal + titlebar_layout = wibox.layout.align.horizontal + end + + -- Create 4 dummy titlebars around the window to imitate borders + if beautiful.titlebars_imitate_borders then + helpers.create_titlebar(c, buttons, "top", beautiful.titlebar_size) + helpers.create_titlebar(c, buttons, "bottom", beautiful.titlebar_size) + helpers.create_titlebar(c, buttons, "left", beautiful.titlebar_size) + helpers.create_titlebar(c, buttons, "right", beautiful.titlebar_size) + else -- Normal, single titlebar + awful.titlebar(c, {font = beautiful.titlebar_font, position = beautiful.titlebar_position, size = beautiful.titlebar_size}) : setup { + -- Titlebar items + { -- Left + -- In the presence of buttons, use padding to center the title if needed. + --pad(10), + -- Clickable buttons + --awful.titlebar.widget.closebutton (c), + --awful.titlebar.widget.maximizedbutton(c), + --awful.titlebar.widget.minimizebutton (c), + --awful.titlebar.widget.ontopbutton (c), + --awful.titlebar.widget.stickybutton (c), + --awful.titlebar.widget.floatingbutton (c), + + buttons = buttons, + --awful.titlebar.widget.iconwidget(c), + + layout = titlebar_item_layout + }, + { -- Middle + --{ -- Title + --align = beautiful.titlebar_title_align, + --widget = title_widget + --}, + title_widget, + buttons = buttons, + layout = wibox.layout.flex.horizontal + }, + { -- Right + -- Clickable buttons + --awful.titlebar.widget.floatingbutton (c), + --awful.titlebar.widget.stickybutton (c), + --awful.titlebar.widget.ontopbutton (c), + awful.titlebar.widget.minimizebutton(c), + awful.titlebar.widget.maximizedbutton(c), + awful.titlebar.widget.closebutton (c), + --buttons = buttons, + -- In the presence of buttons, use padding to center the title if needed. + --pad(10), + layout = titlebar_item_layout + --layout = wibox.layout.fixed.horizontal() + }, + layout = titlebar_layout + --layout = wibox.layout.align.horizontal + } + end +end) + +return titlebars diff --git a/bin/colorballs b/bin/colorballs new file mode 100755 index 0000000..8a65cdb --- /dev/null +++ b/bin/colorballs @@ -0,0 +1,24 @@ +#!/bin/bash +# Script that shows terminal colors +# -- elenapan @ github + +f=3 b=4 +for j in f b; do + for i in {0..7}; do + printf -v $j$i %b "\e[${!j}${i}m" + done +done +d=$'\e[1m' +t=$'\e[0m' +v=$'\e[7m' + +# Symbol +s= +# s= + +cat << EOF + + $f0$s$d$s$t $f1$s$d$s$t $f2$s$d$s$t $f3$s$d$s$t + $f4$s$d$s$t $f5$s$d$s$t $f6$s$d$s$t $f7$s$d$s$t + +EOF diff --git a/bin/colorblocks b/bin/colorblocks new file mode 100755 index 0000000..1e32b40 --- /dev/null +++ b/bin/colorblocks @@ -0,0 +1,24 @@ +#!/bin/bash + +# Show the terminal colourscheme as blocks +# Inspired by u/dkeg +# Cheers! Addy + +f=3 b=4 +for j in f b; do + for i in {0..7}; do + printf -v $j$i %b "\e[${!j}${i}m" + done +done +d=$'\e[1m' +t=$'\e[0m' +v=$'\e[7m' + +cat << EOF + + $f1██████$d██$t $f2██████$d██$t $f3██████$d██$t $f4██████$d██$t $f5██████$d██$t $f6██████$d██$t + $f1██████$d██$t $f2██████$d██$t $f3██████$d██$t $f4██████$d██$t $f5██████$d██$t $f6██████$d██$t + $f1██████$d██$t $f2██████$d██$t $f3██████$d██$t $f4██████$d██$t $f5██████$d██$t $f6██████$d██$t + $ft██████$d$f7██$t $ft██████$d$f7██$t $ft██████$d$f7██$t $ft██████$d$f7██$t $ft██████$d$f7██$t $ft██████$d$f7██$t + +EOF diff --git a/bin/colorpanes b/bin/colorpanes new file mode 100755 index 0000000..12e673e --- /dev/null +++ b/bin/colorpanes @@ -0,0 +1,24 @@ +#!/bin/bash + +# Author: GekkoP +# Source: http://linuxbbq.org/bbs/viewtopic.php?f=4&t=1656#p33189 + +f=3 b=4 +for j in f b; do + for i in {0..7}; do + printf -v $j$i %b "\e[${!j}${i}m" + done +done +d=$'\e[1m' +t=$'\e[0m' +v=$'\e[7m' + + +cat << EOF + + $f0████$d▄$t $f1████$d▄$t $f2████$d▄$t $f3████$d▄$t $f4████$d▄$t $f5████$d▄$t $f6████$d▄$t $f7████$d▄$t + $f0████$d█$t $f1████$d█$t $f2████$d█$t $f3████$d█$t $f4████$d█$t $f5████$d█$t $f6████$d█$t $f7████$d█$t + $f0████$d█$t $f1████$d█$t $f2████$d█$t $f3████$d█$t $f4████$d█$t $f5████$d█$t $f6████$d█$t $f7████$d█$t + $d$f0 ▀▀▀▀ $d$f1 ▀▀▀▀ $f2▀▀▀▀ $f3▀▀▀▀ $f4▀▀▀▀ $f5▀▀▀▀ $f6▀▀▀▀ $f7▀▀▀▀$t + +EOF diff --git a/bin/screenshot.sh b/bin/screenshot.sh new file mode 100755 index 0000000..97146e4 --- /dev/null +++ b/bin/screenshot.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# Screenshot wrapper +# Uses maim (which uses slop) +# "Friendship ended with scrot. Now maim is my best friend." + +SCREENSHOTS_DIR=~/pix/Screenshots +TIMESTAMP="$(date +%Y.%m.%d-%H.%M.%S)" +#TIMESTAMP="$(date +%Y.%m.%d--%s)" +FILENAME=$SCREENSHOTS_DIR/$TIMESTAMP.screenshot.png +PHOTO_ICON_PATH=~/.icons/oomox-only_icons/categories/scalable/applications-photography.svg + + +# -u option hides cursor +# -m option changes the compression level +# -m 3 takes the shot faster but the file size is slightly bigger + +if [[ "$1" = "-s" ]]; then + # Area/window selection. + notify-send 'Select area to capture.' --urgency low -i $PHOTO_ICON_PATH + maim -u -m 3 -s $FILENAME + if [[ "$?" = "0" ]]; then + notify-send "Screenshot taken." --urgency low -i $PHOTO_ICON_PATH + fi +elif [[ "$1" = "-c" ]]; then + notify-send 'Select area to copy to clipboard.' --urgency low -i $PHOTO_ICON_PATH + # Copy selection to clipboard + #maim -u -m 3 -s | xclip -selection clipboard -t image/png + maim -u -m 3 -s /tmp/maim_clipboard + if [[ "$?" = "0" ]]; then + xclip -selection clipboard -t image/png /tmp/maim_clipboard + notify-send "Copied selection to clipboard." --urgency low -i $PHOTO_ICON_PATH + rm /tmp/maim_clipboard + fi +elif [[ "$1" = "-b" ]]; then + # Browse with feh + cd $SCREENSHOTS_DIR ; feh $(ls -t) & +elif [[ "$1" = "-e" ]]; then + # Edit last screenshot with GIMP + cd $SCREENSHOTS_DIR ; gimp $(ls -t | head -n1) & notify-send 'Opening last screenshot with GIMP' --urgency low -i ~/.icons/oomox-only_icons/categories/scalable/applications-painting.svg +else + # Full screenshot + maim -u -m 3 $FILENAME + notify-send "Screenshot taken." --urgency low -i $PHOTO_ICON_PATH +fi diff --git a/bin/volume-control.sh b/bin/volume-control.sh new file mode 100755 index 0000000..d03bf84 --- /dev/null +++ b/bin/volume-control.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# Control volume +# Requires pulseaudio +# -------------------------- + +# Steps for raising/lowering volume +STEP=5 +BIG_STEP=25 + +if [[ "$1" = "up" ]]; then + pactl set-sink-mute 0 0 && pactl set-sink-volume @DEFAULT_SINK@ +$STEP% +elif [[ "$1" = "UP" ]]; then + pactl set-sink-mute 0 0 && pactl set-sink-volume @DEFAULT_SINK@ +$BIG_STEP% +elif [[ "$1" = "down" ]]; then + pactl set-sink-mute 0 0 && pactl set-sink-volume @DEFAULT_SINK@ -$STEP% +elif [[ "$1" = "DOWN" ]]; then + pactl set-sink-mute 0 0 && pactl set-sink-volume @DEFAULT_SINK@ -$BIG_STEP% +elif [[ "$1" = "toggle" ]]; then + pactl set-sink-mute 0 toggle +else + echo "No argument." +fi diff --git a/bin/xvars b/bin/xvars new file mode 100755 index 0000000..7765b5c --- /dev/null +++ b/bin/xvars @@ -0,0 +1,22 @@ +#!/bin/bash +# Grab ~/.Xresources colors +# Use like so: +# source xvars +XBG="$(xrdb -query | grep -m 1 background: | awk '{print $2}')" +XFG="$(xrdb -query | grep -m 1 foreground: | awk '{print $2}')" +X0="$(xrdb -query | grep -m 1 color0: | awk '{print $2}')" +X1="$(xrdb -query | grep -m 1 color1: | awk '{print $2}')" +X2="$(xrdb -query | grep -m 1 color2: | awk '{print $2}')" +X3="$(xrdb -query | grep -m 1 color3: | awk '{print $2}')" +X4="$(xrdb -query | grep -m 1 color4: | awk '{print $2}')" +X5="$(xrdb -query | grep -m 1 color5: | awk '{print $2}')" +X6="$(xrdb -query | grep -m 1 color6: | awk '{print $2}')" +X7="$(xrdb -query | grep -m 1 color7: | awk '{print $2}')" +X8="$(xrdb -query | grep -m 1 color8: | awk '{print $2}')" +X9="$(xrdb -query | grep -m 1 color9: | awk '{print $2}')" +X10="$(xrdb -query | grep -m 1 color10: | awk '{print $2}')" +X11="$(xrdb -query | grep -m 1 color11: | awk '{print $2}')" +X12="$(xrdb -query | grep -m 1 color12: | awk '{print $2}')" +X13="$(xrdb -query | grep -m 1 color13: | awk '{print $2}')" +X14="$(xrdb -query | grep -m 1 color14: | awk '{print $2}')" +X15="$(xrdb -query | grep -m 1 color15: | awk '{print $2}')" diff --git a/gtk/manta/COPYING b/gtk/manta/COPYING new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/gtk/manta/COPYING @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/gtk/manta/chrome/chrome-scrollbar.crx b/gtk/manta/chrome/chrome-scrollbar.crx new file mode 100644 index 0000000..a4d7958 Binary files /dev/null and b/gtk/manta/chrome/chrome-scrollbar.crx differ diff --git a/gtk/manta/chrome/chrome-theme.crx b/gtk/manta/chrome/chrome-theme.crx new file mode 100644 index 0000000..bca54a1 Binary files /dev/null and b/gtk/manta/chrome/chrome-theme.crx differ diff --git a/gtk/manta/gnome-shell/assets/calendar-arrow-left.svg b/gtk/manta/gnome-shell/assets/calendar-arrow-left.svg new file mode 100644 index 0000000..b614eb3 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/calendar-arrow-right.svg b/gtk/manta/gnome-shell/assets/calendar-arrow-right.svg new file mode 100644 index 0000000..61f2207 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/checkbox-off.svg b/gtk/manta/gnome-shell/assets/checkbox-off.svg new file mode 100644 index 0000000..1d93845 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/checkbox.svg b/gtk/manta/gnome-shell/assets/checkbox.svg new file mode 100644 index 0000000..4a9b90b --- /dev/null +++ b/gtk/manta/gnome-shell/assets/checkbox.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/close.svg b/gtk/manta/gnome-shell/assets/close.svg new file mode 100644 index 0000000..5dcd087 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/dash-placeholder.svg b/gtk/manta/gnome-shell/assets/dash-placeholder.svg new file mode 100644 index 0000000..c522672 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash-placeholder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/bottom-running1-focused.svg b/gtk/manta/gnome-shell/assets/dash/bottom-running1-focused.svg new file mode 100644 index 0000000..0459853 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/bottom-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/bottom-running1.svg b/gtk/manta/gnome-shell/assets/dash/bottom-running1.svg new file mode 100644 index 0000000..1a0e5a4 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/bottom-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/dash/bottom-running2-focused.svg b/gtk/manta/gnome-shell/assets/dash/bottom-running2-focused.svg new file mode 100644 index 0000000..9844932 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/bottom-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/bottom-running2.svg b/gtk/manta/gnome-shell/assets/dash/bottom-running2.svg new file mode 100644 index 0000000..079e2bf --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/bottom-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/bottom-running3-focused.svg b/gtk/manta/gnome-shell/assets/dash/bottom-running3-focused.svg new file mode 100644 index 0000000..6af01da --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/bottom-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/bottom-running3.svg b/gtk/manta/gnome-shell/assets/dash/bottom-running3.svg new file mode 100644 index 0000000..8679520 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/bottom-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/bottom-running4-focused.svg b/gtk/manta/gnome-shell/assets/dash/bottom-running4-focused.svg new file mode 100644 index 0000000..fae8f4d --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/bottom-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/bottom-running4.svg b/gtk/manta/gnome-shell/assets/dash/bottom-running4.svg new file mode 100644 index 0000000..f58bee4 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/bottom-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/left-running1-focused.svg b/gtk/manta/gnome-shell/assets/dash/left-running1-focused.svg new file mode 100644 index 0000000..c8b6305 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/left-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/left-running1.svg b/gtk/manta/gnome-shell/assets/dash/left-running1.svg new file mode 100644 index 0000000..75197a9 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/left-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/dash/left-running2-focused.svg b/gtk/manta/gnome-shell/assets/dash/left-running2-focused.svg new file mode 100644 index 0000000..229ffee --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/left-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/left-running2.svg b/gtk/manta/gnome-shell/assets/dash/left-running2.svg new file mode 100644 index 0000000..4e03633 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/left-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/left-running3-focused.svg b/gtk/manta/gnome-shell/assets/dash/left-running3-focused.svg new file mode 100644 index 0000000..535dc3c --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/left-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/left-running3.svg b/gtk/manta/gnome-shell/assets/dash/left-running3.svg new file mode 100644 index 0000000..c0497ad --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/left-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/left-running4-focused.svg b/gtk/manta/gnome-shell/assets/dash/left-running4-focused.svg new file mode 100644 index 0000000..f8d044f --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/left-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/left-running4.svg b/gtk/manta/gnome-shell/assets/dash/left-running4.svg new file mode 100644 index 0000000..8a4bcc7 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/left-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/right-running1-focused.svg b/gtk/manta/gnome-shell/assets/dash/right-running1-focused.svg new file mode 100644 index 0000000..82f0a6d --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/right-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/right-running1.svg b/gtk/manta/gnome-shell/assets/dash/right-running1.svg new file mode 100644 index 0000000..cdb4da2 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/right-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/dash/right-running2-focused.svg b/gtk/manta/gnome-shell/assets/dash/right-running2-focused.svg new file mode 100644 index 0000000..8544b89 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/right-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/right-running2.svg b/gtk/manta/gnome-shell/assets/dash/right-running2.svg new file mode 100644 index 0000000..b2d545c --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/right-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/right-running3-focused.svg b/gtk/manta/gnome-shell/assets/dash/right-running3-focused.svg new file mode 100644 index 0000000..a5ead44 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/right-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/right-running3.svg b/gtk/manta/gnome-shell/assets/dash/right-running3.svg new file mode 100644 index 0000000..e10576f --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/right-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/right-running4-focused.svg b/gtk/manta/gnome-shell/assets/dash/right-running4-focused.svg new file mode 100644 index 0000000..a1284ce --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/right-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/right-running4.svg b/gtk/manta/gnome-shell/assets/dash/right-running4.svg new file mode 100644 index 0000000..2645e15 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/right-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/top-running1-focused.svg b/gtk/manta/gnome-shell/assets/dash/top-running1-focused.svg new file mode 100644 index 0000000..38ab8c0 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/top-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/top-running1.svg b/gtk/manta/gnome-shell/assets/dash/top-running1.svg new file mode 100644 index 0000000..e34f152 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/top-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/dash/top-running2-focused.svg b/gtk/manta/gnome-shell/assets/dash/top-running2-focused.svg new file mode 100644 index 0000000..3f83898 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/top-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/top-running2.svg b/gtk/manta/gnome-shell/assets/dash/top-running2.svg new file mode 100644 index 0000000..776421c --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/top-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/top-running3-focused.svg b/gtk/manta/gnome-shell/assets/dash/top-running3-focused.svg new file mode 100644 index 0000000..02bd767 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/top-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/top-running3.svg b/gtk/manta/gnome-shell/assets/dash/top-running3.svg new file mode 100644 index 0000000..3abe2c6 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/top-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/top-running4-focused.svg b/gtk/manta/gnome-shell/assets/dash/top-running4-focused.svg new file mode 100644 index 0000000..663b332 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/top-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gtk/manta/gnome-shell/assets/dash/top-running4.svg b/gtk/manta/gnome-shell/assets/dash/top-running4.svg new file mode 100644 index 0000000..a7754fb --- /dev/null +++ b/gtk/manta/gnome-shell/assets/dash/top-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gtk/manta/gnome-shell/assets/more-results.svg b/gtk/manta/gnome-shell/assets/more-results.svg new file mode 100644 index 0000000..0393e0f --- /dev/null +++ b/gtk/manta/gnome-shell/assets/more-results.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/no-events.svg b/gtk/manta/gnome-shell/assets/no-events.svg new file mode 100644 index 0000000..a131a8e --- /dev/null +++ b/gtk/manta/gnome-shell/assets/no-events.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/no-notifications.svg b/gtk/manta/gnome-shell/assets/no-notifications.svg new file mode 100644 index 0000000..385d1ae --- /dev/null +++ b/gtk/manta/gnome-shell/assets/no-notifications.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/assets/process-working.svg b/gtk/manta/gnome-shell/assets/process-working.svg new file mode 100644 index 0000000..52814dd --- /dev/null +++ b/gtk/manta/gnome-shell/assets/process-working.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gtk/manta/gnome-shell/assets/toggle-off.svg b/gtk/manta/gnome-shell/assets/toggle-off.svg new file mode 100644 index 0000000..f0b2803 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/toggle-off.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/toggle-on.svg b/gtk/manta/gnome-shell/assets/toggle-on.svg new file mode 100644 index 0000000..9f84be1 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/toggle-on.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gtk/manta/gnome-shell/assets/window-close-active.svg b/gtk/manta/gnome-shell/assets/window-close-active.svg new file mode 100644 index 0000000..a362413 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/window-close-active.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/assets/window-close.svg b/gtk/manta/gnome-shell/assets/window-close.svg new file mode 100644 index 0000000..4c9a717 --- /dev/null +++ b/gtk/manta/gnome-shell/assets/window-close.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gtk/manta/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css b/gtk/manta/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css new file mode 100644 index 0000000..a8a2ec0 --- /dev/null +++ b/gtk/manta/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css @@ -0,0 +1,519 @@ +#workspacestodockTriggerSpacer { + background-color: none; +} + +#workspacestodockContainerWrapper { + background-color: none; +} + +#workspacestodockContainer { + background-color: none; +} + +#workspacestodockDockWrapper { +} + +#workspacestodockDock { + padding: 0; +} + +#workspacestodockDock .workspace-thumbnails { + background-color: #EEFFFF; + background-color: rgba(0, 0, 0, 0.6); +} + +#workspacestodockDock:overview .workspace-thumbnails { + background-color: rgba(255, 255, 255, 0.1); +} + +#workspacestodockDock.fullheight:overview .workspace-thumbnails { + background-color: transparent; +} + +#workspacestodockDock .workspace-thumbnail-indicator { + border-left-width: 0; +} + +#workspacestodockDock.right .workspace-thumbnail-indicator { + border-left-width: 2px; +} + +#workspacestodockDock.left .workspace-thumbnail-indicator { + border-right-width: 2px; +} + +#workspacestodockDock.top .workspace-thumbnail-indicator { + border-bottom-width: 2px; +} + +#workspacestodockDock.bottom .workspace-thumbnail-indicator { + border-top-width: 2px; +} + +#workspacestodockDock.right .workspace-thumbnails { + border-radius: 2px 0 0 2px; +} + +#workspacestodockDock.left .workspace-thumbnails { + border-radius: 0 2px 2px 0; +} + +#workspacestodockDock.top .workspace-thumbnails { + border-radius: 0 0 2px 2px; +} + +#workspacestodockDock.bottom .workspace-thumbnails { + border-radius: 2px 2px 0 0; +} + +#workspacestodockDock.right.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.left.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.top.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.bottom.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.right.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.left.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.top.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.bottom.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock .workspacestodock-shortcuts-panel { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +#workspacestodockDock.right .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-left: 1px; + border-right: none; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-left: none; + border-right: 1px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-top: none; + border-bottom: 1px; +} + +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-top: 1px; + border-bottom: none; +} + +#workspacestodockDock.right.inside .workspacestodock-shortcuts-panel { + border-radius: 2px 0 0 2px; + padding: 0; + spacing: 0; + border-left: none; + border-right: 1px; +} + +#workspacestodockDock.left.inside .workspacestodock-shortcuts-panel { + border-radius: 0 2px 2px 0; + padding: 0; + spacing: 0; + border-left: 1px; + border-right: none; +} + +#workspacestodockDock.top.inside .workspacestodock-shortcuts-panel { + border-radius: 0 0 2px 2px; + padding: 0; + spacing: 0; + border-top: 1px; + border-bottom: none; +} + +#workspacestodockDock.bottom.inside .workspacestodock-shortcuts-panel { + border-radius: 2px 2px 0 0; + padding: 0; + spacing: 0; + border-top: none; + border-bottom: 1px; +} + +#workspacestodockDock.right.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.left.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.top.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.bottom.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock .workspacestodock-shortcuts-panel > * { + border: 0 !important; +} + +.workspacestodock-shortcuts-panel-popupmenu { + padding: 2px; + spacing: 0; +} + +.workspacestodock-shortcuts-panel-favorites { +} + +.workspacestodock-shortcuts-panel-running { +} + +.workspacestodock-shortcuts-panel-places { +} + +/* shortcuts panel buttons */ +#workspacestodockDock .app-well-app { +} + +#workspacestodockDock .workspacestodock-shortcuts-panel > StButton { + background-size: cover; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton { + padding: 3px 6px; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:first-child, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:first-child { + padding: 6px 6px 3px 6px; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:last-child, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:last-child { + padding: 3px 6px 6px 6px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton { + padding: 6px 3px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:first-child, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:first-child { + padding: 6px 3px 6px 6px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:last-child, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:last-child { + padding: 6px 6px 6px 3px; +} + +.workspacestodock-shortcut-button { +} + +.workspacestodock-shortcut-button-symbolic { +} + +/* shortcuts panel button icons */ +#workspacestodockDock .app-well-app > .overview-icon { +} + +.workspacestodock-shortcut-button-icon { + padding: 6px; +} + +.workspacestodock-shortcut-button-symbolic-icon { + padding: 8px; +} + +/* shortcuts panel items */ +#workspacestodockDock .popup-separator-menu-item { + margin: 0; +} + +.workspacestodock-shortcut-panel-separator { + -margin-horizontal: 0; +} + +.workspacestodock-shortcut-panel-filler { + -margin-horizontal: 0; + height: 0; + padding: 0; + border: none; +} + +/* shortcuts panel button window count indicators */ +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/right-running1.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/left-running1.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/top-running1.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/bottom-running1.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/right-running2.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/left-running2.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/top-running2.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/bottom-running2.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/right-running3.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/left-running3.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/top-running3.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/bottom-running3.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/right-running4.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/left-running4.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/top-running4.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/bottom-running4.svg"); +} + +.workspacestodock-workspace-caption-container { + padding: 0; +} + +.workspacestodock-workspace-caption-background { + background-color: rgba(0, 0, 0, 0.6); + /* border-radius: 0 0 2px 2px; */ +} + +.workspacestodock-workspace-caption-background.caption-top { + /* border-radius: 2px 2px 0 0; */ +} + +.workspacestodock-workspace-caption { +} + +/* caption window apps (taskbar) */ +.workspacestodock-caption-windowapps { + padding: 0; +} + +.workspacestodock-caption-windowapps-menu { + -boxpointer-gap: 12px; +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item { + min-height: 24px; + padding-top: 4px; + padding-bottom: 4px; +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item:active { + background-color: rgba(0, 0, 0, 0.12); +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item.selected:active { + background-color: rgba(0, 0, 0, 0.24); +} + +.workspacestodock-caption-windowapps-menu-item { + /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */ +} + +.workspacestodock-caption-windowapps-menu-item:active { + /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */ +} + +.workspacestodock-caption-windowapps-menu-icon { +} + +.workspacestodock-caption-windowapps-menu-label { + padding: 0 8px; +} + +.workspacestodock-caption-windowapps-menu .window-close { + /* GS36+ can override gnome shell class 'window-close' */ + border-radius: 100px; + -st-background-image-shadow: none; + background-image: url("../../assets/close.svg"); + background-size: 24px; + height: 24px; + width: 24px; +} + +.workspacestodock-caption-windowapps-menu .window-close:hover { + background-color: rgba(0, 0, 0, 0.12); +} + +.workspacestodock-caption-windowapps-menu .window-close:active { + background-color: rgba(0, 0, 0, 0.24); +} + +.workspacestodock-caption-windowapps-menu-close { + /*fallback class for GS34 since it can't override gnome shell class 'window-close' */ +} + +.workspacestodock-caption-windowapps-menu-close:hover { + /*fallback class for GS34 since it can't override gnome shell class 'window-close' */ +} + +.workspacestodock-caption-windowapps-button { + padding: 0; +} + +.workspacestodock-caption-windowapps-button-icon { + padding: 2px; + background-color: rgba(0, 0, 0, 0.01); /* needs to draw box-shadow */ +} + +.workspacestodock-caption-windowapps-button:active > .workspacestodock-caption-windowapps-button-icon { + box-shadow: inset 0 -2px rgba(255, 255, 255, 0.3); +} + +.workspacestodock-caption-windowapps-button-active > .workspacestodock-caption-windowapps-button-icon { + box-shadow: inset 0 -2px #EEFFFF; +} + +/* caption workspace number */ +.workspacestodock-caption-number { + margin: 1px; + padding: 0 10px; + border-radius: 0; + background-color: rgba(255, 255, 255, 0.3); + color: #EEFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* caption workspace name */ +.workspacestodock-caption-name { + margin: 0 4px; + color: rgba(255, 255, 255, 0.6); + font-size: 9pt; + text-align: center; +} + +/* caption workspace windowcount */ +.workspacestodock-caption-windowcount { + /* min-width: 16px; */ + margin: 0px 4px; + padding: 0px 4px; + color: #EEFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* caption workspace windowcount image*/ +.workspacestodock-caption-windowcount-image { + width: 20px; + height: 20px; + margin: 1px; + border-radius: 0; + background-color: #57C7FF; + color: #EEFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* The classes below are used in conjunction with the above workspacestodock-caption-windowcount-image + * They provide background images that corespond with the window count */ +.workspacestodock-caption-windowcount-image-1 { +} + +.workspacestodock-caption-windowcount-image-2 { +} + +.workspacestodock-caption-windowcount-image-3 { +} + +.workspacestodock-caption-windowcount-image-4 { +} + +/* caption spacer-filler */ +.workspacestodock-caption-spacer { + width: 4px; +} + +/* The classes below are used in conjuction with the above classes + * They provide additional theming for the current workspace caption */ +.workspacestodock-workspace-caption-background-current { +} + +.workspacestodock-workspace-caption-background-current.caption-top { +} + +.workspacestodock-caption-number-current { + /* background-color: #F0719B; */ +} + +.workspacestodock-caption-name-current { +} + +.workspacestodock-caption-windowcount-current { +} + +.workspacestodock-caption-windowcount-image-current { +} diff --git a/gtk/manta/gnome-shell/gnome-shell-theme.gresource b/gtk/manta/gnome-shell/gnome-shell-theme.gresource new file mode 100644 index 0000000..c531770 Binary files /dev/null and b/gtk/manta/gnome-shell/gnome-shell-theme.gresource differ diff --git a/gtk/manta/gnome-shell/gnome-shell.css b/gtk/manta/gnome-shell/gnome-shell.css new file mode 100644 index 0000000..bc8875a --- /dev/null +++ b/gtk/manta/gnome-shell/gnome-shell.css @@ -0,0 +1,3209 @@ +/* This stylesheet is generated, DO NOT EDIT */ +/* Copyright 2009, 2015 Red Hat, Inc. + * + * Portions adapted from Mx's data/style/default.css + * Copyright 2009 Intel Corporation + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU Lesser General Public License, + * version 2.1, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + */ +/* GLOBALS */ +* { + transition-duration: 150ms; +} + +stage { + font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif; + font-size: 9.75pt; + font-weight: 400; + color: #1E2541; +} + +/* WIDGETS */ +/* Buttons */ +.button { + min-height: 32px; + padding: 0 16px; + border-width: 0; + border-radius: 2px; + font-size: 9.75pt; + font-weight: 500; + color: rgba(30, 37, 65, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:hover { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:active { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:insensitive { + color: rgba(30, 37, 65, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:focus { + color: #1E2541; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.modal-dialog-linked-button { + min-height: 40px; + padding: 0 16px; + border-top: 1px solid rgba(30, 37, 65, 0.12) !important; + border-right-width: 0; + font-size: 9.75pt; + font-weight: 500; + color: rgba(30, 37, 65, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:hover { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:active { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:insensitive { + color: rgba(30, 37, 65, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:focus { + color: #1E2541; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.modal-dialog-linked-button:first-child { + border-radius: 0px 0px 0px 2px; +} + +.modal-dialog-linked-button:last-child { + border-right-width: 0px; + border-radius: 0px 0px 2px 0px; +} + +.modal-dialog-linked-button:first-child:last-child { + border-right-width: 0px; + border-radius: 0px 0px 2px 2px; +} + +/* Entries */ +StEntry { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + border-width: 0; + color: #1E2541; + selection-background-color: #F0719B; + selected-color: #1E2541; + font-size: 11.25pt; + font-weight: 400; + background-color: rgba(238, 255, 255, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.26); +} + +StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #F0719B; +} + +StEntry:insensitive { + color: rgba(30, 37, 65, 0.38); + border-color: transparent; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); +} + +StEntry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #FF6D00; + padding: 0 0; +} + +/* Scrollbars */ +StScrollView.vfade { + -st-vfade-offset: 32px; +} + +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollBar { + padding: 0; +} + +StScrollView StScrollBar { + min-width: 16px; + min-height: 16px; +} + +StScrollBar StBin#trough { + margin: 4px; + border-radius: 100px; + background-color: rgba(30, 37, 65, 0.12); +} + +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 100px; + background-color: rgba(30, 37, 65, 0.38); + margin: 4px; +} + +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: rgba(29, 160, 226, 0.54); +} + +StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #1E2541; +} + +#overview StScrollBar StBin#trough, #screenShieldNotifications StScrollBar StBin#trough { + background-color: rgba(30, 37, 65, 0.12); +} + +#overview StScrollBar StButton#vhandle, #screenShieldNotifications StScrollBar StButton#vhandle, #overview StScrollBar StButton#hhandle, #screenShieldNotifications StScrollBar StButton#hhandle { + background-color: rgba(30, 37, 65, 0.5); +} + +#overview StScrollBar StButton#vhandle:hover, #screenShieldNotifications StScrollBar StButton#vhandle:hover, #overview StScrollBar StButton#hhandle:hover, #screenShieldNotifications StScrollBar StButton#hhandle:hover { + background-color: rgba(30, 37, 65, 0.7); +} + +#overview StScrollBar StButton#vhandle:active, #screenShieldNotifications StScrollBar StButton#vhandle:active, #overview StScrollBar StButton#hhandle:active, #screenShieldNotifications StScrollBar StButton#hhandle:active { + background-color: #1E2541; +} + +/* Slider */ +.slider { + height: 20px; + color: #57C7FF; + -slider-height: 2px; + -slider-background-color: rgba(30, 37, 65, 0.26); + -slider-border-color: transparent; + -slider-active-background-color: #57C7FF; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 7px; +} + +/* Check Boxes */ +.check-box * { + min-height: 16px; + padding: 8px 0; +} + +.check-box StBoxLayout { + spacing: 8px; +} + +.check-box StBin { + width: 24px; + height: 24px; + padding: 4px; + border-radius: 100px; + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:hover StBin { + background-color: rgba(30, 37, 65, 0.12); +} + +.check-box:active StBin { + background-color: rgba(30, 37, 65, 0.26); +} + +.check-box:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +.check-box:focus:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +.check-box:hover:checked StBin { + background-color: rgba(87, 199, 255, 0.15); +} + +.check-box:active:checked StBin { + background-color: rgba(87, 199, 255, 0.3); +} + +/* Switches */ +.toggle-switch { + width: 40px; + height: 20px; + background-size: contain; +} + +.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 { + border-radius: 2px; + color: #F0719B; +} + +.shell-link:hover { + color: #F0719B; + background-color: rgba(240, 113, 155, 0.15); +} + +.shell-link:active { + color: #F0719B; + background-color: rgba(240, 113, 155, 0.3); +} + +/* Modal Dialogs */ +.headline { + font-size: 15pt; + font-weight: 500; +} + +.lightbox { + background-color: black; +} + +.flashspot { + background-color: white; +} + +.modal-dialog { + border-radius: 2px; + color: #1E2541; + background-color: #EEFFFF; + border: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +.modal-dialog .modal-dialog-content-box { + padding: 24px; +} + +.modal-dialog .run-dialog-entry { + width: 20em; + margin-bottom: 6px; +} + +.modal-dialog .run-dialog-error-box { + padding-top: 16px; + spacing: 6px; +} + +.modal-dialog .run-dialog-button-box { + padding-top: 1em; +} + +.modal-dialog .run-dialog-label { + font-size: 1em; + font-weight: normal; + color: rgba(30, 37, 65, 0.38); + padding-bottom: .4em; +} + +.mount-dialog-subject, +.end-session-dialog-subject { + font-size: 15pt; + font-weight: 500; +} + +/* 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: rgba(29, 160, 226, 0.54); + font-weight: bold; +} + +/* End Session Dialog */ +.end-session-dialog { + spacing: 42px; + border: none; +} + +.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: #FF6D00; + padding-top: 6px; +} + +.end-session-dialog-warning:rtl { + text-align: right; +} + +.end-session-dialog-logout-icon { + border-radius: 5px; + width: 48px; + height: 48px; + background-size: contain; +} + +.end-session-dialog-shutdown-icon { + color: rgba(30, 37, 65, 0.38); + 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: rgba(30, 37, 65, 0.38); + font-size: 1em; +} + +/* 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: #1E2541; +} + +.mount-dialog-app-list-item:hover { + color: #1E2541; +} + +.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: 1em; +} + +/* Password or Authentication Dialog */ +.prompt-dialog { + width: 34em; + border: none; +} + +.prompt-dialog .message-dialog-main-layout { + spacing: 24px; + padding: 10px; +} + +.prompt-dialog .message-dialog-content { + spacing: 16px; +} + +.prompt-dialog .message-dialog-title { + font-size: 15pt; + font-weight: 500; + color: #1E2541; +} + +.prompt-dialog-description:rtl { + text-align: right; +} + +.prompt-dialog-password-box { + spacing: 1em; + padding-bottom: 1em; +} + +.prompt-dialog-error-label { + font-size: 1em; + color: #DD2C00; + padding-bottom: 8px; +} + +.prompt-dialog-info-label { + font-size: 1em; + padding-bottom: 8px; +} + +.hidden { + color: transparent; +} + +.prompt-dialog-null-label { + font-size: 1em; + 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: #FF6D00; +} + +.polkit-dialog-user-icon { + border-radius: 5px; + 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 rgba(30, 37, 65, 0.12); + border-radius: 2px; +} + +.audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus { + background-color: #F0719B; +} + +.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: rgba(29, 160, 226, 0.54); +} + +/* 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: 200px; +} + +.popup-menu .popup-sub-menu { + background-color: #deefef; + box-shadow: 0 0 transparent; +} + +.popup-menu .popup-menu-content { + padding: 8px 0; +} + +.popup-menu .popup-menu-item { + spacing: 8px; + transition-duration: 100ms; +} + +.popup-menu .popup-menu-item:ltr { + padding: 0.4em 24px 0.4em 0; +} + +.popup-menu .popup-menu-item:rtl { + padding: 0.4em 0 0.4em 24px; +} + +.popup-menu .popup-menu-item:checked { + background-color: #F0719B; + color: #1E2541; + box-shadow: 0 0 transparent; + font-weight: normal; +} + +.popup-menu .popup-menu-item:checked.selected { + background-color: #d1668e; + color: #1E2541; +} + +.popup-menu .popup-menu-item:checked:active { + background-color: #b15a80; + color: #1E2541 !important; +} + +.popup-menu .popup-menu-item:checked:insensitive { + color: rgba(30, 37, 65, 0.5); +} + +.popup-menu .popup-menu-item.selected { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; + transition-duration: 0ms; +} + +.popup-menu .popup-menu-item:active { + background-color: rgba(30, 37, 65, 0.26); + color: #1E2541; + transition-duration: 150ms; +} + +.popup-menu .popup-menu-item.selected:active { + color: #1E2541; +} + +.popup-menu .popup-menu-item:insensitive { + color: rgba(30, 37, 65, 0.38); +} + +.popup-menu .popup-inactive-menu-item { + color: #1E2541; +} + +.popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(30, 37, 65, 0.38); +} + +.popup-menu.panel-menu { + -boxpointer-gap: 4px; + margin-bottom: 1.75em; +} + +.popup-menu-ornament { + text-align: right; + width: 16px; + height: 16px; +} + +.popup-menu-boxpointer, +.candidate-popup-boxpointer { + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-box-shadow: none; + margin: 5px 8px 8px; + background-color: #EEFFFF; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.popup-separator-menu-item { + height: 1px; + margin: 8px 40px; + background-color: transparent; + border-color: rgba(30, 37, 65, 0.12); + border-bottom-width: 1px; + border-bottom-style: solid; +} + +.background-menu { + -boxpointer-gap: 4px; + -arrow-rise: 0; +} + +/* 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: 45px; + font-weight: 400; +} + +.osd-window .level { + height: 8px; + border-radius: 0; + background-color: rgba(240, 113, 155, 0.3); + color: #1E2541; +} + +.osd-window .level-bar { + background-color: #F0719B; + border-radius: 0; +} + +/* Pad OSD */ +.pad-osd-window { + padding: 32px; + background-color: rgba(238, 255, 255, 0.6); +} + +.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: 2px; +} + +.switcher-list .item-box:outlined { + padding: 8px; + border: none; + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +.switcher-list .item-box:selected { + background-color: #F0719B; + color: #1E2541; +} + +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} + +.switcher-list .thumbnail { + width: 256px; +} + +.switcher-list .separator { + width: 1px; + background: rgba(30, 37, 65, 0.12); +} + +.switcher-arrow { + border-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +.switcher-arrow:highlighted { + color: #1E2541; +} + +.input-source-switcher-symbol { + font-size: 45px; + font-weight: 400; + width: 96px; + height: 96px; +} + +/* Window Cycler */ +.cycler-highlight { + border: 4px solid #F0719B; +} + +/* Workspace Switcher */ +.workspace-switcher-group { + padding: 8px; +} + +.workspace-switcher { + background: transparent; + border: 0px; + border-radius: 0px; + padding: 0px; + spacing: 8px; +} + +.ws-switcher-active-up, .ws-switcher-active-down { + height: 48px; + background-color: #F0719B; + color: #1E2541; + background-size: 32px; + border-radius: 2px; +} + +.ws-switcher-box { + height: 48px; + border: none; + background: rgba(30, 37, 65, 0.12); + border-radius: 2px; +} + +.osd-window, +.resize-popup, +.switcher-list, .workspace-switcher-container { + color: #1E2541; + background-color: #EEFFFF; + border: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); + border-radius: 2px; + padding: 12px; +} + +/* Tiled window previews */ +.tile-preview { + background-color: rgba(255, 145, 187, 0.3); + border: 1px solid #ff91bb; +} + +.tile-preview-left.on-primary { + border-radius: 0 0 0 0; +} + +.tile-preview-right.on-primary { + border-radius: 0 0 0 0; +} + +.tile-preview-left.tile-preview-right.on-primary { + border-radius: 0 0 0 0; +} + +/* TOP BAR */ +#panel { + background-color: rgba(238, 255, 255, 0.6); + /* transition from solid to transparent */ + transition-duration: 250ms; + font-weight: bold; + height: 28px; +} + +#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { + background-color: transparent; +} + +#panel #panelLeft, #panel #panelCenter { + spacing: 0; +} + +#panel .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: rgba(238, 255, 255, 0.6); + -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: #1E2541; +} + +#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: rgba(30, 37, 65, 0.7); + text-shadow: none; + transition-duration: 150ms; +} + +#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: none; +} + +#panel .panel-button:hover { + color: #1E2541; + text-shadow: none; +} + +#panel .panel-button:hover .system-status-icon, +#panel .panel-button:hover .app-menu-icon > StIcon, +#panel .panel-button:hover .popup-menu-arrow { + icon-shadow: none; +} + +#panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { + background-color: rgba(238, 255, 255, 0.01); + box-shadow: inset 0 -2px 0px #1E2541; + color: #1E2541; +} + +#panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { + icon-shadow: none; +} + +#panel .panel-button .system-status-icon { + icon-size: 1.23077em; + padding: 0 4px; +} + +.unlock-screen #panel .panel-button, +.login-screen #panel .panel-button, +.lock-screen #panel .panel-button { + color: rgba(30, 37, 65, 0.7); +} + +.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: #1E2541; +} + +#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: #FF6D00; +} + +#panel.solid { + background-color: #EEFFFF; + /* transition from transparent to solid */ + transition-duration: 250ms; + background-gradient-direction: none; + text-shadow: none; +} + +#panel.solid:overview { + background-color: transparent; +} + +#panel.solid .panel-corner { + -panel-corner-background-color: #EEFFFF; +} + +#panel.solid .panel-button { + color: rgba(30, 37, 65, 0.7); + text-shadow: none; +} + +#panel.solid .panel-button:hover, #panel.solid .panel-button:active, #panel.solid .panel-button:overview, #panel.solid .panel-button:focus, #panel.solid .panel-button:checked { + color: #1E2541; +} + +#panel.solid .system-status-icon, +#panel.solid .app-menu-icon > StIcon, +#panel.solid .popup-menu-arrow { + icon-shadow: none; +} + +#calendarArea { + padding: 8px 16px; +} + +.calendar { + margin-bottom: 0; +} + +.calendar, +.datemenu-today-button, +.datemenu-displays-box, +.message-list-sections { + margin: 0 8px; +} + +.datemenu-calendar-column { + spacing: 8px; +} + +.datemenu-displays-section { + padding-bottom: 0; +} + +.datemenu-displays-box { + spacing: 8px; +} + +.datemenu-calendar-column { + border: 0 solid rgba(30, 37, 65, 0.12); +} + +.datemenu-calendar-column:ltr { + border-left-width: 0; +} + +.datemenu-calendar-column:rtl { + border-right-width: 0; +} + +.datemenu-today-button, +.world-clocks-button, +.weather-button, +.events-section-title { + min-height: 20px; + padding: 4px 8px; + border-radius: 2px; +} + +.datemenu-today-button { + min-height: 48px; +} + +.message-list-section-list:ltr { + padding-left: 0; +} + +.message-list-section-list:rtl { + padding-right: 0; +} + +.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 { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.12); +} + +.datemenu-today-button:active, +.world-clocks-button:active, +.weather-button:active, +.events-section-title:active { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.26); +} + +.datemenu-today-button .date-label { + font-size: 18pt; + font-weight: 400; +} + +.world-clocks-header, +.weather-header, +.events-section-title { + color: rgba(29, 160, 226, 0.54); + font-weight: bold; +} + +.world-clocks-grid { + spacing-rows: 0.4em; +} + +.weather-box { + spacing: 0.4em; +} + +.calendar-month-label { + height: 16px; + margin: 2px; + padding: 6px 16px; + border-radius: 2px; + color: #1E2541; + font-weight: bold; + text-align: center; +} + +.calendar-month-label:focus { + background-color: rgba(30, 37, 65, 0.12); +} + +.pager-button { + width: 28px; + height: 28px; + margin: 2px; + border-radius: 100px; + background-color: transparent; + color: #1E2541; +} + +.pager-button:hover, .pager-button:focus { + background-color: rgba(30, 37, 65, 0.12); +} + +.pager-button:active { + background-color: rgba(30, 37, 65, 0.26); +} + +.calendar-change-month-back { + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-change-month-back:rtl { + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward { + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward:rtl { + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-day-base { + font-size: 9pt; + font-weight: 400; + text-align: center; + width: 28px; + height: 28px; + padding: 0; + margin: 2px; + border-radius: 100px; +} + +.calendar-day-base:hover, .calendar-day-base:focus { + background-color: rgba(30, 37, 65, 0.12); +} + +.calendar-day-base:active { + color: inherit; + background-color: rgba(30, 37, 65, 0.26); + border-color: transparent; +} + +.calendar-day-base:selected { + color: #1E2541; + background-color: #F0719B; + border-color: transparent; +} + +.calendar-day-base.calendar-day-heading { + width: 28px; + height: 21px; + margin-top: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(30, 37, 65, 0.38); + font-size: 9pt; + font-weight: 400; + font-weight: bold; + text-align: center; +} + +.calendar-day { + border-width: 0; +} + +.calendar-day-top { + border-top-width: 0; +} + +.calendar-day-left { + border-left-width: 0; +} + +.calendar-nonwork-day { + color: #1E2541; +} + +.calendar-today { + font-weight: bold !important; + border: none; +} + +.calendar-day-with-events { + color: #F0719B; + font-weight: normal; + text-decoration: underline; + background-image: none; +} + +.calendar-other-month-day { + color: rgba(29, 160, 226, 0.26); + opacity: 0.5; +} + +.calendar-week-number { + width: 28px; + height: 21px; + margin: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(30, 37, 65, 0.38); + font-size: inherit; + font-weight: bold; + text-align: center; +} + +/* Message list */ +.message-list { + width: 420px; +} + +.message-list-clear-button.button { + background-color: transparent; + margin: 8px 8px 0; +} + +.message-list-clear-button.button:hover, .message-list-clear-button.button:focus { + background-color: rgba(30, 37, 65, 0.12); +} + +.message-list-clear-button.button:active { + background-color: rgba(30, 37, 65, 0.26); +} + +.message-list-sections { + spacing: 8px; +} + +.message-list-section, +.message-list-section-list { + spacing: 8px; +} + +.message { + min-height: 56px; + background-color: transparent; + border-radius: 2px; +} + +.message:hover, .message:focus { + background-color: rgba(30, 37, 65, 0.12); +} + +.message:active { + background-color: rgba(30, 37, 65, 0.26); +} + +.message-icon-bin { + padding: 8px 0px 8px 8px; +} + +.message-icon-bin:rtl { + padding: 8px 8px 8px 0px; +} + +.message-icon-bin > StIcon { + color: #1E2541; + icon-size: 1.23077em; + -st-icon-style: requested; + margin: 4px 0px 4px 4px; +} + +.message-icon-bin > StIcon:rtl { + margin: 4px 4px 4px 0px; +} + +.message-secondary-bin { + padding: 0 8px; +} + +.message-secondary-bin > .event-time { + min-height: 18px; + padding-top: 2px; + color: rgba(29, 160, 226, 0.54); + font-size: 1em; + /* HACK: the label should be baseline-aligned with a 1em label, + fake this with some bottom padding */ + padding-bottom: 0; +} + +.message-secondary-bin > StIcon { + icon-size: 1.23077em; +} + +.message-title { + min-height: 18px; + padding-top: 2px; + color: #1E2541; + font-weight: bold; + font-size: 1em; +} + +.message-content { + min-height: 40px; + padding: 8px; + color: rgba(29, 160, 226, 0.54); + font-size: 1em; +} + +.message-content * > StIcon { + icon-size: 16px; + border-radius: 16px; + padding: 2px; + color: rgba(29, 160, 226, 0.54); +} + +/* FIXME: how do you do this in sass? */ +.message-content *:hover > StIcon, +.message-content *:focus > StIcon { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.12); +} + +.message-content *:active > StIcon { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.26); +} + +.message-media-control { + margin: 16px 0; + padding: 8px; + border-radius: 100px; + color: rgba(29, 160, 226, 0.54); +} + +.message-media-control:hover, .message-media-control:focus { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.12); +} + +.message-media-control:active { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.26); +} + +.message-media-control:insensitive { + color: rgba(29, 160, 226, 0.26); +} + +.message-media-control:last-child:ltr { + margin-right: 16px; + padding-right: 8px; +} + +.message-media-control:last-child:rtl { + margin-left: 16px; + padding-left: 8px; +} + +.media-message-cover-icon { + icon-size: 32px !important; + margin: 8px 0px 8px 4px !important; +} + +.media-message-cover-icon:rtl { + margin: 8px 4px 8px 0px !important; +} + +.media-message-cover-icon.fallback { + icon-size: 16px !important; + padding: 8px; + border: none; + border-radius: 2px; + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + +.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("process-working.svg"); + spacing: 4px; +} + +#appMenu .label-shadow { + color: transparent; +} + +.aggregate-menu { + min-width: 280px; +} + +.aggregate-menu .popup-menu-icon { + padding: 0 4px; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item :first-child:ltr { + /* 8px spacing + 2*4px padding */ + padding-left: 16px; + margin-left: 1.23077em; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item :first-child:rtl { + /* 8px spacing + 2*4px padding */ + padding-right: 16px; + margin-right: 1.23077em; +} + +.system-menu-action { + color: rgba(29, 160, 226, 0.54); + border-radius: 100px; + /* wish we could do 50% */ + padding: 14px; + border: none; +} + +.system-menu-action:hover, .system-menu-action:focus { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; + border: none; + padding: 14px; +} + +.system-menu-action:active { + background-color: rgba(30, 37, 65, 0.26); + color: #1E2541; +} + +.system-menu-action > StIcon { + icon-size: 16px; +} + +.ripple-box { + width: 48px; + height: 48px; + border-radius: 0 0 48px 0; + background-color: rgba(30, 37, 65, 0.3); + background-image: none; + background-size: auto; +} + +.ripple-box:rtl { + border-radius: 0 0 0 48px; + background-image: none; +} + +.popup-menu-arrow { + width: 16px; + height: 16px; +} + +.popup-menu-icon { + icon-size: 1.23077em; +} + +.window-close { + transition-duration: 0ms; + height: 32px; + width: 32px; + -shell-close-overlap: 16px; + -st-background-image-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + background-image: url("assets/window-close.svg"); + background-size: 32px; +} + +.window-close:hover { + -st-background-image-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + background-image: url("assets/window-close.svg"); +} + +.window-close:active { + background-image: url("assets/window-close-active.svg"); +} + +.window-close:rtl { + -st-background-image-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.window-close:rtl:hover { + -st-background-image-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +/* 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: #1E2541; +} + +.nm-dialog-header-icon { + icon-size: 32px; +} + +.nm-dialog-scroll-view { + border: none; +} + +.nm-dialog-header { + font-size: 15pt; + font-weight: 500; +} + +.nm-dialog-item { + font-size: 1em; + border-bottom: none; + border-radius: 2px; + padding: 12px; + spacing: 20px; +} + +.nm-dialog-item:hover, .nm-dialog-item:focus { + background-color: rgba(30, 37, 65, 0.12); +} + +.nm-dialog-item:active { + background-color: rgba(30, 37, 65, 0.26); +} + +.nm-dialog-item:selected { + background-color: #F0719B; + color: #1E2541; +} + +.nm-dialog-icons { + spacing: .5em; +} + +.nm-dialog-icon { + icon-size: 16px; +} + +.no-networks-label { + color: rgba(30, 37, 65, 0.38); +} + +.no-networks-box { + spacing: 12px; +} + +/* OVERVIEW */ +#overview { + spacing: 24px; +} + +.overview-controls { + padding-bottom: 32px; +} + +.window-picker { + -horizontal-spacing: 16px; + -vertical-spacing: 16px; + padding: 0 16px 32px; +} + +.window-picker.external-monitor { + padding: 16px; +} + +.window-clone-border { + border: 4px solid rgba(30, 37, 65, 0.3); + border-radius: 2px; + box-shadow: inset 0 0 0 1px rgba(30, 37, 65, 0.3); +} + +.window-caption { + spacing: 25px; + color: #1E2541; + background-color: rgba(238, 255, 255, 0.6); + border-radius: 2px; + padding: 4px 8px; +} + +.search-entry { + width: 304px; + padding: 0 8px; + border-radius: 0; + color: rgba(30, 37, 65, 0.5); + selection-background-color: rgba(30, 37, 65, 0.3); + selected-color: #1E2541; + background-color: rgba(238, 255, 255, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.3); +} + +.search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #1E2541; + padding: 0 8px; + border-width: 0; + color: #1E2541; +} + +.search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 0; + color: rgba(30, 37, 65, 0.5); +} + +.search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { + color: #1E2541; +} + +#searchResultsBin { + max-width: 1000px; +} + +#searchResultsContent { + padding-left: 20px; + padding-right: 20px; + spacing: 16px; +} + +.search-section { + spacing: 16px; +} + +.search-section-content { + spacing: 32px; +} + +.list-search-results { + spacing: 3px; +} + +.search-section-separator { + height: 1px; + background-color: rgba(30, 37, 65, 0.12); +} + +.list-search-result-content { + spacing: 30px; +} + +.list-search-result-title { + font-size: 11.25pt; + font-weight: 400; + color: #1E2541; + spacing: 12px; +} + +.list-search-result-description { + color: rgba(30, 37, 65, 0.7); +} + +.list-search-provider-details { + width: 150px; + color: rgba(30, 37, 65, 0.7); + margin-top: 0.24em; +} + +.list-search-provider-content { + spacing: 20px; +} + +.search-provider-icon { + padding: 15px; +} + +/* DASHBOARD */ +#dash { + font-size: 1em; + color: #1E2541; + background-color: rgba(30, 37, 65, 0.1); + padding: 3px 0; + border: none; + border-left: 0px; + border-radius: 0px 2px 2px 0px; +} + +#dash:rtl { + border-radius: 2px 0 0 2px; +} + +#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: 3px 6px; +} + +.dash-label { + border-radius: 2px; + padding: 7px 8px; + color: #1E2541; + background-color: #EEFFFF; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + 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 { + box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); + background-color: #212121; + color: #FFFFFF; + border-radius: 99px; + icon-size: 48px; +} + +.app-view-controls { + width: 320px; + padding-bottom: 32px; +} + +.app-view-control { + padding: 0 16px; + font-weight: bold; + color: rgba(30, 37, 65, 0.7); +} + +.app-view-control:hover { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.12) !important; +} + +.app-view-control:active { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.3) !important; +} + +.app-view-control:checked { + color: #1E2541; + background-color: rgba(238, 255, 255, 0.01) !important; + box-shadow: inset 0 2px 0 #1E2541; +} + +.app-view-control:first-child { + border-right-width: 0; + border-radius: 2px; +} + +.app-view-control:first-child:checked { + border-radius: 0; +} + +.app-view-control:last-child { + border-radius: 2px; +} + +.app-view-control:last-child:checked { + border-radius: 0; +} + +.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, +.list-search-result:focus, +.list-search-result:selected, +.list-search-result:hover { + background-color: rgba(30, 37, 65, 0.12); + transition-duration: 0ms; +} + +.search-provider-icon:active, .search-provider-icon:checked, +.list-search-result:active, +.list-search-result:checked { + background-color: rgba(30, 37, 65, 0.3); + transition-duration: 150ms; +} + +.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(30, 37, 65, 0.12); + transition-duration: 0ms; + border-image: none; + background-image: 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(30, 37, 65, 0.3); + box-shadow: 0 0 transparent; + transition-duration: 150ms; +} + +.app-well-app-running-dot { + width: 32px; + height: 2px; + background-color: #1E2541; + margin-bottom: 0; +} + +.search-provider-icon, +.list-search-result, .app-well-app .overview-icon, +.app-well-app.app-folder .overview-icon, +.show-apps .overview-icon, +.grid-search-result .overview-icon { + color: #1E2541; + border-radius: 2px; + padding: 6px; + border: none; + transition-duration: 150ms; + text-align: center; +} + +.app-well-app.app-folder > .overview-icon { + background-color: rgba(30, 37, 65, 0.1); +} + +.show-apps .show-apps-icon { + color: rgba(30, 37, 65, 0.7); +} + +.show-apps:hover .show-apps-icon, +.show-apps:active .show-apps-icon, +.show-apps:checked .show-apps-icon, +.show-apps:focus .show-apps-icon { + color: #1E2541; + transition-duration: 150ms; +} + +.app-folder-popup { + -arrow-border-radius: 2px; + -arrow-background-color: rgba(30, 37, 65, 0.1); + -arrow-base: 24px; + -arrow-rise: 12px; +} + +.app-folder-popup-bin { + padding: 5px; +} + +.app-folder-icon { + padding: 5px; + spacing-rows: 5px; + spacing-columns: 5px; +} + +.page-indicator { + padding: 15px 20px; +} + +.page-indicator .page-indicator-icon { + width: 12px; + height: 12px; + border-radius: 12px; + background-image: none; + background-color: rgba(30, 37, 65, 0.3); +} + +.page-indicator:hover .page-indicator-icon { + background-image: none; + background-color: rgba(30, 37, 65, 0.5); +} + +.page-indicator:active .page-indicator-icon { + background-image: none; + background-color: rgba(30, 37, 65, 0.7); +} + +.page-indicator:checked .page-indicator-icon { + background-image: none; + background-color: #1E2541; + transition-duration: 0ms; +} + +.page-indicator:checked:active { + background-image: none; +} + +.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: 12px; + padding: 12px; + border-radius: 2px 0 0 2px; +} + +.workspace-thumbnails:rtl { + border-radius: 0 2px 2px 0; +} + +.workspace-thumbnail-indicator { + border: 0 solid #1E2541; + border-left-width: 2px; + padding: 6px; + border-radius: 0; +} + +.search-display > StBoxLayout, +.all-apps, +.frequent-apps > StBoxLayout { + padding: 0px 88px 10px 88px; +} + +.workspace-thumbnails { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.1); + border: none; +} + +.search-statustext, .no-frequent-applications-label { + font-size: 45px; + font-weight: 400; + color: rgba(30, 37, 65, 0.5); +} + +/* NOTIFICATIONS & MESSAGE TRAY */ +.url-highlighter { + link-color: #F0719B; +} + +.notification-banner { + font-size: 1em; + width: 34em; + min-height: 56px; + margin: 5px; + border-radius: 2px; + color: #1E2541; + background-color: #EEFFFF; + border: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.notification-banner:hover { + background-color: #EEFFFF; +} + +.notification-banner:focus { + background-color: #EEFFFF; +} + +.notification-banner .notification-icon { + padding: 5px; +} + +.notification-banner .notification-content { + padding: 5px; + spacing: 5px; +} + +.notification-banner .secondary-icon { + icon-size: 1.23077em; +} + +.notification-banner .notification-actions { + background-color: transparent; + padding-top: 0; + border-top: 1px solid rgba(30, 37, 65, 0.12); + spacing: 1px; +} + +.notification-banner .notification-button { + min-height: 40px; + padding: 0 16px; + background-color: transparent; + color: rgba(29, 160, 226, 0.54); + font-weight: 500; +} + +.notification-banner .notification-button:first-child { + border-radius: 0 0 0 2px; +} + +.notification-banner .notification-button:last-child { + border-radius: 0 0 2px 0; +} + +.notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +.notification-banner .notification-button:active { + background-color: rgba(30, 37, 65, 0.26); + color: #1E2541; +} + +.summary-source-counter { + font-size: 1em; + font-weight: bold; + height: 1.6em; + width: 1.6em; + -shell-counter-overlap-x: 3px; + -shell-counter-overlap-y: 3px; + background-color: #F0719B; + color: #1E2541; + border: 2px solid #1E2541; + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); + border-radius: 0.9em; +} + +.secondary-icon { + icon-size: 1.23077em; +} + +.chat-body { + spacing: 5px; +} + +.chat-response { + margin: 5px; +} + +.chat-log-message { + color: #1E2541; +} + +.chat-new-group { + padding-top: 1em; +} + +.chat-received { + padding-left: 4px; +} + +.chat-received:rtl { + padding-left: 0px; + padding-right: 4px; +} + +.chat-sent { + padding-left: 18pt; + color: rgba(29, 160, 226, 0.54); +} + +.chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; +} + +.chat-meta-message { + padding-left: 4px; + font-size: 9pt; + font-weight: 400; + color: rgba(30, 37, 65, 0.38); +} + +.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: 2px; +} + +.hotplug-resident-mount:hover { + background-color: rgba(30, 37, 65, 0.12); +} + +.hotplug-resident-mount:active { + background-color: rgba(30, 37, 65, 0.26); +} + +.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: 2px; + color: #1E2541; +} + +/* Eeeky things */ +.magnifier-zoom-region { + border: 2px solid #F0719B; +} + +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +/* On-screen Keyboard */ +#keyboard { + background-color: rgba(238, 255, 255, 0.3); +} + +.keyboard-layout { + spacing: 10px; + padding: 10px; +} + +.keyboard-row { + spacing: 15px; +} + +.keyboard-key { + min-height: 64px; + min-width: 64px; + font-size: 2em; + font-weight: 500; + border-radius: 2px; + border: none; + color: inherit; + color: #1DA0E2; + background-color: #EEFFFF; + border-color: transparent; + box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + text-shadow: none; + icon-shadow: none; +} + +.keyboard-key:focus { + color: #1E2541; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.keyboard-key:hover, .keyboard-key:checked { + color: #1E2541; + background-color: #EEFFFF; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-shadow: none; + icon-shadow: none; +} + +.keyboard-key:active { + color: #1E2541; + background-color: #b0bec6; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-shadow: none; + icon-shadow: none; +} + +.keyboard-key:grayed { + background-color: rgba(238, 255, 255, 0.3); + color: #1E2541; + border-color: rgba(238, 255, 255, 0.3); +} + +.keyboard-subkeys { + color: inherit; + padding: 5px; + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -boxpointer-gap: 5px; + background-color: #EEFFFF; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.candidate-popup-content { + padding: 8px; + spacing: 0; +} + +.candidate-index { + padding: 0 4px 0 0; + color: rgba(30, 37, 65, 0.38); +} + +.candidate-box:selected .candidate-index { + color: rgba(30, 37, 65, 0.5); +} + +.candidate-box { + transition-duration: 0ms; + min-height: 28px; + padding: 0 8px; + border-radius: 2px; +} + +.candidate-box:hover { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +.candidate-box:active { + background-color: rgba(30, 37, 65, 0.26); + color: #1E2541; +} + +.candidate-box:selected { + background-color: #F0719B; + color: #1E2541; +} + +.candidate-page-button-box { + height: 28px; +} + +.vertical .candidate-page-button-box { + padding-top: 0; +} + +.horizontal .candidate-page-button-box { + padding-left: 0; +} + +.candidate-page-button { + min-width: 28px; + min-height: 28px; + padding: 0; +} + +.candidate-page-button-previous { + border-radius: 2px; + border-right-width: 0; +} + +.candidate-page-button-next { + border-radius: 2px; +} + +.candidate-page-button-icon { + icon-size: 1.23077em; +} + +/* Auth Dialogs & Screen Shield */ +.framed-user-icon { + background-size: contain; + border: none; + color: #1E2541; + border-radius: 2px; +} + +.framed-user-icon:hover { + border-color: #1E2541; + color: #1E2541; +} + +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; +} + +.login-dialog { + border: none; + background-color: transparent; +} + +.login-dialog StEntry { + color: #1E2541; + selection-background-color: rgba(30, 37, 65, 0.3); + selected-color: #1E2541; + background-color: rgba(238, 255, 255, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.3); +} + +.login-dialog StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #1E2541; +} + +.login-dialog StEntry:insensitive { + color: rgba(30, 37, 65, 0.38); + border-color: transparent; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.5); +} + +.login-dialog .modal-dialog-button-box { + spacing: 3px; +} + +.login-dialog .modal-dialog-button { + padding: 0 16px; + color: rgba(30, 37, 65, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:hover, .login-dialog .modal-dialog-button:focus { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:active { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:insensitive { + color: rgba(30, 37, 65, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default { + color: #1DA0E2; + background-color: #57C7FF; + border-color: transparent; + box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { + color: #1E2541; + background-color: #57C7FF; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:active { + color: #1E2541; + background-color: #4696c6; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:insensitive { + color: rgba(30, 37, 65, 0.5); + background-color: rgba(30, 37, 65, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog-logo-bin { + padding: 24px 0px; +} + +.login-dialog-banner { + color: rgba(30, 37, 65, 0.7); +} + +.login-dialog-button-box { + spacing: 5px; +} + +.login-dialog-message-warning { + color: #FF6D00; +} + +.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: #1E2541; +} + +.login-dialog-not-listed-label { + font-size: 1em; + font-weight: bold; + color: rgba(30, 37, 65, 0.7); + padding-top: 1em; +} + +.login-dialog-not-listed-label:hover { + color: #1E2541; +} + +.login-dialog-not-listed-label:focus { + background-color: rgba(30, 37, 65, 0.12); +} + +.login-dialog-user-list-view { + -st-vfade-offset: 1em; +} + +.login-dialog-user-list { + spacing: 12px; + padding: .2em; + width: 23em; +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:selected { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:hover { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:active { + background-color: rgba(30, 37, 65, 0.3); + color: #1E2541; +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid #1E2541; +} + +.login-dialog-user-list-item { + border-radius: 2px; + padding: 4px 4px 0; + color: rgba(30, 37, 65, 0.7); +} + +.login-dialog-user-list-item:ltr { + padding-right: 1em; +} + +.login-dialog-user-list-item:rtl { + padding-left: 1em; +} + +.login-dialog-user-list-item:hover { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +.login-dialog-user-list-item:active { + background-color: rgba(30, 37, 65, 0.3); + color: #1E2541; +} + +.login-dialog-user-list-item .login-dialog-timed-login-indicator { + height: 2px; + margin: 2px 0 0 0; + background-color: #1E2541; +} + +.login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { + background-color: #1E2541; +} + +.login-dialog-username, +.user-widget-label { + color: #1E2541; + font-size: 15pt; + font-weight: 500; + 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: rgba(30, 37, 65, 0.5); + font-size: 1em; + padding-top: 1em; +} + +.login-dialog-session-list-button StIcon { + icon-size: 1.25em; +} + +.login-dialog-session-list-button { + color: rgba(30, 37, 65, 0.7); +} + +.login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { + color: #1E2541; +} + +.login-dialog-session-list-button:active { + color: #1E2541; +} + +.screen-shield-arrows { + padding-bottom: 3em; +} + +.screen-shield-arrows Gjs_Arrow { + color: white; + width: 80px; + height: 48px; + -arrow-thickness: 12px; + -arrow-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.screen-shield-clock { + color: white; + text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + font-weight: normal; + text-align: center; + padding-bottom: 1.5em; +} + +.screen-shield-clock-time { + font-size: 112px; + font-weight: 300; + text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.screen-shield-clock-date { + font-size: 45px; + font-weight: 400; +} + +.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: 8px; + border: none; + background-color: rgba(238, 255, 255, 0.3); + color: #1E2541; + border-radius: 2px; +} + +.screen-shield-notifications-container .notification { + margin-right: 16px; +} + +.screen-shield-notification-label { + min-height: 18px; + padding: 2px 0px 0px 16px; + font-weight: bold; +} + +.screen-shield-notification-count-text { + min-height: 18px; + padding: 2px 0px 0px 16px; + color: rgba(30, 37, 65, 0.7); +} + +#panel.lock-screen { + background-color: rgba(238, 255, 255, 0.3); +} + +.screen-shield-background { + background: black; + box-shadow: 0 19px 19px rgba(0, 0, 0, 0.6), 0 15px 6px rgba(0, 0, 0, 0.44); +} + +#lockDialogGroup { + background: #EEFFFF; + background-size: cover; +} + +#LookingGlassDialog { + background-color: #EEFFFF; + spacing: 4px; + padding: 0; + border: none; + border-radius: 2px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +#LookingGlassDialog > #Toolbar { + padding: 0 8px; + border: none; + border-radius: 0; + background-color: rgba(238, 255, 255, 0.01); + box-shadow: inset 0 -1px 0 rgba(30, 37, 65, 0.12); +} + +#LookingGlassDialog .labels { + spacing: 0; +} + +#LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + font-weight: bold; + color: rgba(30, 37, 65, 0.38); + transition-duration: 150ms; + padding-left: 16px; + padding-right: 16px; + min-height: 32px; + padding: 0 32px; +} + +#LookingGlassDialog .notebook-tab:hover { + box-shadow: inset 0 -2px 0px rgba(30, 37, 65, 0.26); + color: #1E2541; + text-shadow: none; +} + +#LookingGlassDialog .notebook-tab:selected { + border-bottom-width: 0; + border-color: transparent; + background-color: rgba(238, 255, 255, 0.01); + box-shadow: inset 0 -2px 0px #F0719B; + color: #1E2541; + text-shadow: none; +} + +#LookingGlassDialog StBoxLayout#EvalBox { + padding: 4px; + spacing: 4px; +} + +#LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; +} + +.lg-dialog StEntry { + selection-background-color: #F0719B; + selected-color: #1E2541; +} + +.lg-dialog .shell-link { + color: #F0719B; +} + +.lg-dialog .shell-link:hover { + color: #F0719B; +} + +.lg-completions-text { + font-size: 1em; + font-style: italic; +} + +.lg-obj-inspector-title { + spacing: 4px; +} + +.lg-obj-inspector-button { + min-height: 32px; + padding: 0 16px; + border: none; + border-radius: 2px; + font-size: 9.75pt; + font-weight: 500; + color: rgba(30, 37, 65, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:hover { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:active { + color: #1E2541; + background-color: rgba(30, 37, 65, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:insensitive { + color: rgba(30, 37, 65, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:focus { + color: #1E2541; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.lg-obj-inspector-button:hover { + border: none; +} + +#lookingGlassExtensions { + padding: 4px; +} + +.lg-extensions-list { + padding: 4px; + spacing: 6px; +} + +.lg-extension { + border: none; + border-radius: 2px; + padding: 4px; +} + +.lg-extension-name { + font-size: 18pt; + font-weight: 400; +} + +.lg-extension-meta { + spacing: 6px; +} + +#LookingGlassPropertyInspector { + background: #EEFFFF; + border: none; + border-radius: 2px; + padding: 6px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +/* Dash to Dock */ +#dashtodockContainer #dash { + background-color: rgba(238, 255, 255, 0.6); +} + +#dashtodockContainer:overview #dash { + background-color: rgba(30, 37, 65, 0.1); +} + +#dashtodockContainer.extended:overview #dash { + background-color: transparent; +} + +#dashtodockContainer.left #dash, +#dashtodockContainer.right #dash { + padding: 3px 0; +} + +#dashtodockContainer.top #dash, +#dashtodockContainer.bottom #dash { + padding: 0 3px; +} + +#dashtodockContainer.extended #dash { + padding: 0; + border-radius: 0; +} + +#dashtodockContainer.left .dash-item-container > StWidget, +#dashtodockContainer.right .dash-item-container > StWidget, +#dashtodockContainer.extended.left .dash-item-container > StWidget, +#dashtodockContainer.extended.right .dash-item-container > StWidget { + padding: 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:first-child > StWidget { + padding: 6px 6px 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:last-child > StWidget { + padding: 3px 6px 6px 6px; +} + +#dashtodockContainer.top .dash-item-container > StWidget, +#dashtodockContainer.bottom .dash-item-container > StWidget, +#dashtodockContainer.extended.top .dash-item-container > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container > StWidget { + padding: 6px 3px; +} + +#dashtodockContainer.extended.top .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:first-child > StWidget { + padding: 6px 3px 6px 6px; +} + +#dashtodockContainer.extended.top .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:last-child > StWidget { + padding: 6px 6px 6px 3px; +} + +#dashtodockContainer .app-well-app-running-dot { + background-color: transparent; +} + +#dashtodockContainer .dash-item-container > StWidget { + background-size: cover; +} + +#dashtodockContainer.left .dash-item-container > StWidget.running1 { + background-image: url("assets/dash/left-running1.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running1.focused { + background-image: url("assets/dash/left-running1-focused.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running2 { + background-image: url("assets/dash/left-running2.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running2.focused { + background-image: url("assets/dash/left-running2-focused.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running3 { + background-image: url("assets/dash/left-running3.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running3.focused { + background-image: url("assets/dash/left-running3-focused.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running4 { + background-image: url("assets/dash/left-running4.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running4.focused { + background-image: url("assets/dash/left-running4-focused.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running1 { + background-image: url("assets/dash/right-running1.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running1.focused { + background-image: url("assets/dash/right-running1-focused.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running2 { + background-image: url("assets/dash/right-running2.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running2.focused { + background-image: url("assets/dash/right-running2-focused.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running3 { + background-image: url("assets/dash/right-running3.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running3.focused { + background-image: url("assets/dash/right-running3-focused.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running4 { + background-image: url("assets/dash/right-running4.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running4.focused { + background-image: url("assets/dash/right-running4-focused.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running1 { + background-image: url("assets/dash/top-running1.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running1.focused { + background-image: url("assets/dash/top-running1-focused.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running2 { + background-image: url("assets/dash/top-running2.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running2.focused { + background-image: url("assets/dash/top-running2-focused.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running3 { + background-image: url("assets/dash/top-running3.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running3.focused { + background-image: url("assets/dash/top-running3-focused.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running4 { + background-image: url("assets/dash/top-running4.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running4.focused { + background-image: url("assets/dash/top-running4-focused.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running1 { + background-image: url("assets/dash/bottom-running1.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running1.focused { + background-image: url("assets/dash/bottom-running1-focused.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running2 { + background-image: url("assets/dash/bottom-running2.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running2.focused { + background-image: url("assets/dash/bottom-running2-focused.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running3 { + background-image: url("assets/dash/bottom-running3.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running3.focused { + background-image: url("assets/dash/bottom-running3-focused.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running4 { + background-image: url("assets/dash/bottom-running4.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running4.focused { + background-image: url("assets/dash/bottom-running4-focused.svg"); +} + +/* Simple Dock */ +#dash:desktop { + background-color: rgba(238, 255, 255, 0.6); +} + +/* GPaste */ +.popup-menu .search-entry { + color: #1E2541; + selection-background-color: #F0719B; + selected-color: #1E2541; + background-color: rgba(238, 255, 255, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.26); +} + +.popup-menu .search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #F0719B; + color: #1E2541; +} + +.popup-menu .search-entry .search-entry-icon { + color: rgba(30, 37, 65, 0.38); +} + +.popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon { + color: #1E2541; +} diff --git a/gtk/manta/gnome-shell/message-indicator-symbolic.svg b/gtk/manta/gnome-shell/message-indicator-symbolic.svg new file mode 100644 index 0000000..a93cc63 --- /dev/null +++ b/gtk/manta/gnome-shell/message-indicator-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gnome-shell/no-events.svg b/gtk/manta/gnome-shell/no-events.svg new file mode 120000 index 0000000..d2fcad0 --- /dev/null +++ b/gtk/manta/gnome-shell/no-events.svg @@ -0,0 +1 @@ +assets/no-events.svg \ No newline at end of file diff --git a/gtk/manta/gnome-shell/no-notifications.svg b/gtk/manta/gnome-shell/no-notifications.svg new file mode 120000 index 0000000..175731c --- /dev/null +++ b/gtk/manta/gnome-shell/no-notifications.svg @@ -0,0 +1 @@ +assets/no-notifications.svg \ No newline at end of file diff --git a/gtk/manta/gnome-shell/noise-texture.png b/gtk/manta/gnome-shell/noise-texture.png new file mode 100644 index 0000000..ca1563d Binary files /dev/null and b/gtk/manta/gnome-shell/noise-texture.png differ diff --git a/gtk/manta/gnome-shell/pad-osd.css b/gtk/manta/gnome-shell/pad-osd.css new file mode 100644 index 0000000..31c2377 --- /dev/null +++ b/gtk/manta/gnome-shell/pad-osd.css @@ -0,0 +1,30 @@ +.Leader { + stroke-width: .5 !important; + stroke: #535353; + fill: none !important; +} + +.Button { + stroke-width: .25; + stroke: #ededed; + fill: #ededed; +} + +.Ring { + stroke-width: .5 !important; + stroke: #535353 !important; + fill: none !important; +} + +.Label { + stroke: none !important; + stroke-width: .1 !important; + font-size: .1 !important; + fill: transparent !important; +} + +.TouchStrip, .TouchRing { + stroke-width: .1 !important; + stroke: #ededed !important; + fill: #535353 !important; +} diff --git a/gtk/manta/gnome-shell/process-working.svg b/gtk/manta/gnome-shell/process-working.svg new file mode 120000 index 0000000..a6586c3 --- /dev/null +++ b/gtk/manta/gnome-shell/process-working.svg @@ -0,0 +1 @@ +assets/process-working.svg \ No newline at end of file diff --git a/gtk/manta/gtk-2.0/apps.rc b/gtk/manta/gtk-2.0/apps.rc new file mode 100644 index 0000000..f48b013 --- /dev/null +++ b/gtk/manta/gtk-2.0/apps.rc @@ -0,0 +1,92 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g. +# custom widgets, programs giving us a chance to alter their UI to fit more with +# the theme or stuff that is supposed to look different, like panels. + +# TODO: This could really look nicer +style "gimp_spin_scale" { + # Spin background + bg[NORMAL] = @base_color + + engine "pixmap" { + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/pan-up-alt-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/pan-down-alt-insensitive.png" + overlay_stretch = FALSE + } + } +} + +style "chrome_gtk_frame" { + ChromeGtkFrame::frame-color = @titlebar_bg_color + ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color + ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color + ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color + + ChromeGtkFrame::frame-gradient-size = 0 +} + +# Disable spin button assets for GimpSpinScale +class "GimpSpinScale" style "gimp_spin_scale" + +# Chromium lets us define some colours and settings for better integration +class "ChromeGtkFrame" style "chrome_gtk_frame" diff --git a/gtk/manta/gtk-2.0/assets/border.png b/gtk/manta/gtk-2.0/assets/border.png new file mode 100644 index 0000000..01b6d05 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/border.png differ diff --git a/gtk/manta/gtk-2.0/assets/button-active.png b/gtk/manta/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..3662a88 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/button-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/button-hover.png b/gtk/manta/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..09e98f0 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/button-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/button-insensitive.png b/gtk/manta/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..8896564 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/button-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/button.png b/gtk/manta/gtk-2.0/assets/button.png new file mode 100644 index 0000000..d88c20f Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/button.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-checked-active.png b/gtk/manta/gtk-2.0/assets/checkbox-checked-active.png new file mode 100644 index 0000000..837adc1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-checked-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-checked-hover.png b/gtk/manta/gtk-2.0/assets/checkbox-checked-hover.png new file mode 100644 index 0000000..ec677b5 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-checked-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-checked-insensitive.png b/gtk/manta/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..3f4d4c4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-checked.png b/gtk/manta/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..3879e97 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-checked.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-mixed-active.png b/gtk/manta/gtk-2.0/assets/checkbox-mixed-active.png new file mode 100644 index 0000000..467c3d6 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-mixed-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-mixed-hover.png b/gtk/manta/gtk-2.0/assets/checkbox-mixed-hover.png new file mode 100644 index 0000000..f089512 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-mixed-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-mixed-insensitive.png b/gtk/manta/gtk-2.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..9759417 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-mixed-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-mixed.png b/gtk/manta/gtk-2.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..d57763d Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-mixed.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-unchecked-active.png b/gtk/manta/gtk-2.0/assets/checkbox-unchecked-active.png new file mode 100644 index 0000000..6594245 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-unchecked-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-unchecked-hover.png b/gtk/manta/gtk-2.0/assets/checkbox-unchecked-hover.png new file mode 100644 index 0000000..a406bd4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-unchecked-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/gtk/manta/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..4e0a477 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/checkbox-unchecked.png b/gtk/manta/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..c4d2643 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-ltr-button-active.png b/gtk/manta/gtk-2.0/assets/combo-ltr-button-active.png new file mode 100644 index 0000000..2a94433 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-ltr-button-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-ltr-button-hover.png b/gtk/manta/gtk-2.0/assets/combo-ltr-button-hover.png new file mode 100644 index 0000000..90a5a78 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-ltr-button-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-ltr-button-insensitive.png b/gtk/manta/gtk-2.0/assets/combo-ltr-button-insensitive.png new file mode 100644 index 0000000..46ad0ec Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-ltr-button-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-ltr-button.png b/gtk/manta/gtk-2.0/assets/combo-ltr-button.png new file mode 100644 index 0000000..107cb47 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-ltr-button.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-ltr-entry-active.png b/gtk/manta/gtk-2.0/assets/combo-ltr-entry-active.png new file mode 100644 index 0000000..2574a9f Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-ltr-entry-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-ltr-entry-insensitive.png b/gtk/manta/gtk-2.0/assets/combo-ltr-entry-insensitive.png new file mode 100644 index 0000000..fcd49e1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-ltr-entry-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-ltr-entry.png b/gtk/manta/gtk-2.0/assets/combo-ltr-entry.png new file mode 100644 index 0000000..fcd49e1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-ltr-entry.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-rtl-button-active.png b/gtk/manta/gtk-2.0/assets/combo-rtl-button-active.png new file mode 100644 index 0000000..325c99f Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-rtl-button-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-rtl-button-hover.png b/gtk/manta/gtk-2.0/assets/combo-rtl-button-hover.png new file mode 100644 index 0000000..3060399 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-rtl-button-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-rtl-button-insensitive.png b/gtk/manta/gtk-2.0/assets/combo-rtl-button-insensitive.png new file mode 100644 index 0000000..6212033 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-rtl-button-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-rtl-button.png b/gtk/manta/gtk-2.0/assets/combo-rtl-button.png new file mode 100644 index 0000000..efdf89b Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-rtl-button.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-rtl-entry-active.png b/gtk/manta/gtk-2.0/assets/combo-rtl-entry-active.png new file mode 100644 index 0000000..9cec079 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-rtl-entry-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-rtl-entry-insensitive.png b/gtk/manta/gtk-2.0/assets/combo-rtl-entry-insensitive.png new file mode 100644 index 0000000..fb54873 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-rtl-entry-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/combo-rtl-entry.png b/gtk/manta/gtk-2.0/assets/combo-rtl-entry.png new file mode 100644 index 0000000..fb54873 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/combo-rtl-entry.png differ diff --git a/gtk/manta/gtk-2.0/assets/entry-active.png b/gtk/manta/gtk-2.0/assets/entry-active.png new file mode 100644 index 0000000..9f29340 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/entry-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/entry-background-insensitive.png b/gtk/manta/gtk-2.0/assets/entry-background-insensitive.png new file mode 100644 index 0000000..fe4dce1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/entry-background-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/entry-background.png b/gtk/manta/gtk-2.0/assets/entry-background.png new file mode 100644 index 0000000..fe4dce1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/entry-background.png differ diff --git a/gtk/manta/gtk-2.0/assets/entry-insensitive.png b/gtk/manta/gtk-2.0/assets/entry-insensitive.png new file mode 100644 index 0000000..dd138a4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/entry-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/entry.png b/gtk/manta/gtk-2.0/assets/entry.png new file mode 100644 index 0000000..dd138a4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/entry.png differ diff --git a/gtk/manta/gtk-2.0/assets/flat-button-active.png b/gtk/manta/gtk-2.0/assets/flat-button-active.png new file mode 100644 index 0000000..edc0be7 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/flat-button-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/flat-button-hover.png b/gtk/manta/gtk-2.0/assets/flat-button-hover.png new file mode 100644 index 0000000..35cb5f1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/flat-button-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/flat-button-insensitive.png b/gtk/manta/gtk-2.0/assets/flat-button-insensitive.png new file mode 100644 index 0000000..ba183ab Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/flat-button-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/flat-button.png b/gtk/manta/gtk-2.0/assets/flat-button.png new file mode 100644 index 0000000..ba183ab Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/flat-button.png differ diff --git a/gtk/manta/gtk-2.0/assets/focus.png b/gtk/manta/gtk-2.0/assets/focus.png new file mode 100644 index 0000000..87bbf65 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/focus.png differ diff --git a/gtk/manta/gtk-2.0/assets/frame-inline.png b/gtk/manta/gtk-2.0/assets/frame-inline.png new file mode 100644 index 0000000..7d8d577 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/frame-inline.png differ diff --git a/gtk/manta/gtk-2.0/assets/frame-notebook.png b/gtk/manta/gtk-2.0/assets/frame-notebook.png new file mode 100644 index 0000000..53c4725 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/frame-notebook.png differ diff --git a/gtk/manta/gtk-2.0/assets/frame.png b/gtk/manta/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..95dceac Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/frame.png differ diff --git a/gtk/manta/gtk-2.0/assets/handle-horz-active.png b/gtk/manta/gtk-2.0/assets/handle-horz-active.png new file mode 100644 index 0000000..068e4cf Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/handle-horz-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/handle-horz-hover.png b/gtk/manta/gtk-2.0/assets/handle-horz-hover.png new file mode 100644 index 0000000..aa98bae Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/handle-horz-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/handle-horz.png b/gtk/manta/gtk-2.0/assets/handle-horz.png new file mode 100644 index 0000000..60d75dd Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/handle-horz.png differ diff --git a/gtk/manta/gtk-2.0/assets/handle-vert-active.png b/gtk/manta/gtk-2.0/assets/handle-vert-active.png new file mode 100644 index 0000000..fc51b4c Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/handle-vert-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/handle-vert-hover.png b/gtk/manta/gtk-2.0/assets/handle-vert-hover.png new file mode 100644 index 0000000..38d1264 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/handle-vert-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/handle-vert.png b/gtk/manta/gtk-2.0/assets/handle-vert.png new file mode 100644 index 0000000..1c32c54 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/handle-vert.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/gtk/manta/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..f530fad Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-checkbox-checked.png b/gtk/manta/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..484d331 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png b/gtk/manta/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png new file mode 100644 index 0000000..4dfa785 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-checkbox-mixed.png b/gtk/manta/gtk-2.0/assets/menu-checkbox-mixed.png new file mode 100644 index 0000000..1b28dfe Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-checkbox-mixed.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/gtk/manta/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..5f586e5 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-checkbox-unchecked.png b/gtk/manta/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..e00c54e Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-radio-checked-insensitive.png b/gtk/manta/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..9a58ebd Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-radio-checked.png b/gtk/manta/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..dc504bd Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-radio-mixed-insensitive.png b/gtk/manta/gtk-2.0/assets/menu-radio-mixed-insensitive.png new file mode 100644 index 0000000..bc93eaa Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-radio-mixed-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-radio-mixed.png b/gtk/manta/gtk-2.0/assets/menu-radio-mixed.png new file mode 100644 index 0000000..a39a9d3 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-radio-mixed.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/gtk/manta/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..5de7931 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/menu-radio-unchecked.png b/gtk/manta/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..0908929 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry-active.png b/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry-active.png new file mode 100644 index 0000000..2574a9f Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry-insensitive.png b/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry-insensitive.png new file mode 100644 index 0000000..fcd49e1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry.png b/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry.png new file mode 100644 index 0000000..fcd49e1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-combo-ltr-entry.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry-active.png b/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry-active.png new file mode 100644 index 0000000..9cec079 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry-insensitive.png b/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry-insensitive.png new file mode 100644 index 0000000..fb54873 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry.png b/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry.png new file mode 100644 index 0000000..fb54873 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-combo-rtl-entry.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-entry-active.png b/gtk/manta/gtk-2.0/assets/notebook-entry-active.png new file mode 100644 index 0000000..9f29340 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-entry-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-entry-insensitive.png b/gtk/manta/gtk-2.0/assets/notebook-entry-insensitive.png new file mode 100644 index 0000000..dd138a4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-entry-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/notebook-entry.png b/gtk/manta/gtk-2.0/assets/notebook-entry.png new file mode 100644 index 0000000..dd138a4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/notebook-entry.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-down-alt-insensitive.png b/gtk/manta/gtk-2.0/assets/pan-down-alt-insensitive.png new file mode 100644 index 0000000..d4df7a7 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-down-alt-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-down-alt.png b/gtk/manta/gtk-2.0/assets/pan-down-alt.png new file mode 100644 index 0000000..e63c7b4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-down-alt.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-down-insensitive.png b/gtk/manta/gtk-2.0/assets/pan-down-insensitive.png new file mode 100644 index 0000000..f217682 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-down-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-down.png b/gtk/manta/gtk-2.0/assets/pan-down.png new file mode 100644 index 0000000..aa2e859 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-down.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-left-alt-insensitive.png b/gtk/manta/gtk-2.0/assets/pan-left-alt-insensitive.png new file mode 100644 index 0000000..7c346a2 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-left-alt-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-left-alt.png b/gtk/manta/gtk-2.0/assets/pan-left-alt.png new file mode 100644 index 0000000..8c70192 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-left-alt.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-left-insensitive.png b/gtk/manta/gtk-2.0/assets/pan-left-insensitive.png new file mode 100644 index 0000000..84733e4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-left-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-left-semi.png b/gtk/manta/gtk-2.0/assets/pan-left-semi.png new file mode 100644 index 0000000..ca66004 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-left-semi.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-left.png b/gtk/manta/gtk-2.0/assets/pan-left.png new file mode 100644 index 0000000..69cf393 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-left.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-right-alt-insensitive.png b/gtk/manta/gtk-2.0/assets/pan-right-alt-insensitive.png new file mode 100644 index 0000000..2f36e32 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-right-alt-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-right-alt.png b/gtk/manta/gtk-2.0/assets/pan-right-alt.png new file mode 100644 index 0000000..b4024ac Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-right-alt.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-right-insensitive.png b/gtk/manta/gtk-2.0/assets/pan-right-insensitive.png new file mode 100644 index 0000000..554ba11 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-right-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-right-semi.png b/gtk/manta/gtk-2.0/assets/pan-right-semi.png new file mode 100644 index 0000000..a06067f Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-right-semi.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-right.png b/gtk/manta/gtk-2.0/assets/pan-right.png new file mode 100644 index 0000000..7256406 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-right.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-up-alt-insensitive.png b/gtk/manta/gtk-2.0/assets/pan-up-alt-insensitive.png new file mode 100644 index 0000000..8a56c4a Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-up-alt-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-up-alt.png b/gtk/manta/gtk-2.0/assets/pan-up-alt.png new file mode 100644 index 0000000..3dbcd41 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-up-alt.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-up-insensitive.png b/gtk/manta/gtk-2.0/assets/pan-up-insensitive.png new file mode 100644 index 0000000..8df8c8e Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-up-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/pan-up.png b/gtk/manta/gtk-2.0/assets/pan-up.png new file mode 100644 index 0000000..b43da34 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/pan-up.png differ diff --git a/gtk/manta/gtk-2.0/assets/progressbar-progress.png b/gtk/manta/gtk-2.0/assets/progressbar-progress.png new file mode 100644 index 0000000..0d7cca8 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/progressbar-progress.png differ diff --git a/gtk/manta/gtk-2.0/assets/progressbar-trough.png b/gtk/manta/gtk-2.0/assets/progressbar-trough.png new file mode 100644 index 0000000..5414fcf Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/progressbar-trough.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-checked-active.png b/gtk/manta/gtk-2.0/assets/radio-checked-active.png new file mode 100644 index 0000000..55251a1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-checked-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-checked-hover.png b/gtk/manta/gtk-2.0/assets/radio-checked-hover.png new file mode 100644 index 0000000..43fec6e Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-checked-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-checked-insensitive.png b/gtk/manta/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..6b16838 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-checked.png b/gtk/manta/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..5eeb5e3 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-checked.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-mixed-active.png b/gtk/manta/gtk-2.0/assets/radio-mixed-active.png new file mode 100644 index 0000000..2e314c6 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-mixed-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-mixed-hover.png b/gtk/manta/gtk-2.0/assets/radio-mixed-hover.png new file mode 100644 index 0000000..be70193 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-mixed-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-mixed-insensitive.png b/gtk/manta/gtk-2.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..977dd9b Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-mixed-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-mixed.png b/gtk/manta/gtk-2.0/assets/radio-mixed.png new file mode 100644 index 0000000..f2e1eeb Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-mixed.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-unchecked-active.png b/gtk/manta/gtk-2.0/assets/radio-unchecked-active.png new file mode 100644 index 0000000..668b0a9 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-unchecked-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-unchecked-hover.png b/gtk/manta/gtk-2.0/assets/radio-unchecked-hover.png new file mode 100644 index 0000000..ff50c1f Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-unchecked-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-unchecked-insensitive.png b/gtk/manta/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..736809b Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/radio-unchecked.png b/gtk/manta/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c18d958 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/radio-unchecked.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-horz-trough-active.png b/gtk/manta/gtk-2.0/assets/scale-horz-trough-active.png new file mode 100644 index 0000000..e50b720 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-horz-trough-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-horz-trough-insensitive.png b/gtk/manta/gtk-2.0/assets/scale-horz-trough-insensitive.png new file mode 100644 index 0000000..63e9b6e Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-horz-trough-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-horz-trough.png b/gtk/manta/gtk-2.0/assets/scale-horz-trough.png new file mode 100644 index 0000000..7d221b4 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-horz-trough.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-slider-active.png b/gtk/manta/gtk-2.0/assets/scale-slider-active.png new file mode 100644 index 0000000..37dd6db Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-slider-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-slider-hover.png b/gtk/manta/gtk-2.0/assets/scale-slider-hover.png new file mode 100644 index 0000000..58a8c2b Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-slider-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-slider-insensitive.png b/gtk/manta/gtk-2.0/assets/scale-slider-insensitive.png new file mode 100644 index 0000000..951d701 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-slider-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-slider.png b/gtk/manta/gtk-2.0/assets/scale-slider.png new file mode 100644 index 0000000..c182bac Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-slider.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-vert-trough-active.png b/gtk/manta/gtk-2.0/assets/scale-vert-trough-active.png new file mode 100644 index 0000000..e820755 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-vert-trough-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-vert-trough-insensitive.png b/gtk/manta/gtk-2.0/assets/scale-vert-trough-insensitive.png new file mode 100644 index 0000000..e289f60 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-vert-trough-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/scale-vert-trough.png b/gtk/manta/gtk-2.0/assets/scale-vert-trough.png new file mode 100644 index 0000000..50767b1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scale-vert-trough.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-active.png b/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-active.png new file mode 100644 index 0000000..09cdaee Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-hover.png new file mode 100644 index 0000000..9240cfe Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-insensitive.png b/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-insensitive.png new file mode 100644 index 0000000..7439422 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider.png b/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider.png new file mode 100644 index 0000000..cd38c14 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-horz-slider.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-horz-trough.png b/gtk/manta/gtk-2.0/assets/scrollbar-horz-trough.png new file mode 100644 index 0000000..2ef34bc Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-horz-trough.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png new file mode 100644 index 0000000..f30380c Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png new file mode 100644 index 0000000..3f26ff1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-insensitive.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-insensitive.png new file mode 100644 index 0000000..ace9244 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider.png new file mode 100644 index 0000000..edfb34e Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-slider.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-trough.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-trough.png new file mode 100644 index 0000000..1e03340 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-ltr-trough.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png new file mode 100644 index 0000000..a11e102 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png new file mode 100644 index 0000000..6c05778 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-insensitive.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-insensitive.png new file mode 100644 index 0000000..8dff21d Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider.png new file mode 100644 index 0000000..137b784 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-slider.png differ diff --git a/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-trough.png b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-trough.png new file mode 100644 index 0000000..54e86b3 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/scrollbar-vert-rtl-trough.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-ltr-down-active.png b/gtk/manta/gtk-2.0/assets/spin-ltr-down-active.png new file mode 100644 index 0000000..cf48594 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-ltr-down-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-ltr-down-hover.png b/gtk/manta/gtk-2.0/assets/spin-ltr-down-hover.png new file mode 100644 index 0000000..b88f47d Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-ltr-down-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-ltr-down-insensitive.png b/gtk/manta/gtk-2.0/assets/spin-ltr-down-insensitive.png new file mode 100644 index 0000000..a98793f Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-ltr-down-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-ltr-down.png b/gtk/manta/gtk-2.0/assets/spin-ltr-down.png new file mode 100644 index 0000000..c778d96 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-ltr-down.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-ltr-up-active.png b/gtk/manta/gtk-2.0/assets/spin-ltr-up-active.png new file mode 100644 index 0000000..793bab1 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-ltr-up-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-ltr-up-hover.png b/gtk/manta/gtk-2.0/assets/spin-ltr-up-hover.png new file mode 100644 index 0000000..97fb3cb Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-ltr-up-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-ltr-up-insensitive.png b/gtk/manta/gtk-2.0/assets/spin-ltr-up-insensitive.png new file mode 100644 index 0000000..c0abb60 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-ltr-up-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-ltr-up.png b/gtk/manta/gtk-2.0/assets/spin-ltr-up.png new file mode 100644 index 0000000..0645831 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-ltr-up.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-rtl-down-active.png b/gtk/manta/gtk-2.0/assets/spin-rtl-down-active.png new file mode 100644 index 0000000..5c0bc1d Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-rtl-down-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-rtl-down-hover.png b/gtk/manta/gtk-2.0/assets/spin-rtl-down-hover.png new file mode 100644 index 0000000..89b7942 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-rtl-down-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-rtl-down-insensitive.png b/gtk/manta/gtk-2.0/assets/spin-rtl-down-insensitive.png new file mode 100644 index 0000000..4c3a7db Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-rtl-down-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-rtl-down.png b/gtk/manta/gtk-2.0/assets/spin-rtl-down.png new file mode 100644 index 0000000..c399bf7 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-rtl-down.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-rtl-up-active.png b/gtk/manta/gtk-2.0/assets/spin-rtl-up-active.png new file mode 100644 index 0000000..bdef3a9 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-rtl-up-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-rtl-up-hover.png b/gtk/manta/gtk-2.0/assets/spin-rtl-up-hover.png new file mode 100644 index 0000000..5d4cc25 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-rtl-up-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-rtl-up-insensitive.png b/gtk/manta/gtk-2.0/assets/spin-rtl-up-insensitive.png new file mode 100644 index 0000000..de31a92 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-rtl-up-insensitive.png differ diff --git a/gtk/manta/gtk-2.0/assets/spin-rtl-up.png b/gtk/manta/gtk-2.0/assets/spin-rtl-up.png new file mode 100644 index 0000000..4bad194 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/spin-rtl-up.png differ diff --git a/gtk/manta/gtk-2.0/assets/tab.png b/gtk/manta/gtk-2.0/assets/tab.png new file mode 100644 index 0000000..37ac7a6 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/tab.png differ diff --git a/gtk/manta/gtk-2.0/assets/treeview-ltr-button-active.png b/gtk/manta/gtk-2.0/assets/treeview-ltr-button-active.png new file mode 100644 index 0000000..1425ac3 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/treeview-ltr-button-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/treeview-ltr-button-hover.png b/gtk/manta/gtk-2.0/assets/treeview-ltr-button-hover.png new file mode 100644 index 0000000..05f0e26 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/treeview-ltr-button-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/treeview-ltr-button.png b/gtk/manta/gtk-2.0/assets/treeview-ltr-button.png new file mode 100644 index 0000000..4bd7f14 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/treeview-ltr-button.png differ diff --git a/gtk/manta/gtk-2.0/assets/treeview-rtl-button-active.png b/gtk/manta/gtk-2.0/assets/treeview-rtl-button-active.png new file mode 100644 index 0000000..a5c9ed0 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/treeview-rtl-button-active.png differ diff --git a/gtk/manta/gtk-2.0/assets/treeview-rtl-button-hover.png b/gtk/manta/gtk-2.0/assets/treeview-rtl-button-hover.png new file mode 100644 index 0000000..86c4d04 Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/treeview-rtl-button-hover.png differ diff --git a/gtk/manta/gtk-2.0/assets/treeview-rtl-button.png b/gtk/manta/gtk-2.0/assets/treeview-rtl-button.png new file mode 100644 index 0000000..696a2bf Binary files /dev/null and b/gtk/manta/gtk-2.0/assets/treeview-rtl-button.png differ diff --git a/gtk/manta/gtk-2.0/gtkrc b/gtk/manta/gtk-2.0/gtkrc new file mode 100644 index 0000000..c35e67e --- /dev/null +++ b/gtk/manta/gtk-2.0/gtkrc @@ -0,0 +1,32 @@ +# Based on Bridge by ScionicSpectre and Adwaita by GNOME +# vim:set ts=2 sw=2 sts=2 ai et: +# +# This is the GTK+ 2 version of oomox-manta. It's whole purpose is to look as the +# GTK+ 3 version as much as possible until GTK+ 2 dies completely. +# +# Note: comments for explaining styles are on the bottom of each file beside the +# widget matches. + +# Declare the colours used throughout the theme. +# There shouldn't be any fiddling with them in the theme files themselves in +# order to not mess up the dark theme. + +# Text/base +gtk-color-scheme = "text_color:#1E2541\nbase_color:#EEFFFF" +# Foreground/background +gtk-color-scheme = "fg_color:#1E2541\nbg_color:#EEFFFF" +# Selected foreground/background +gtk-color-scheme = "selected_fg_color:#EEFFFF\nselected_bg_color:#F0719B" +# Titlebar foreground/background +gtk-color-scheme = "titlebar_fg_color:#1E2541\ntitlebar_bg_color:#F0719B" +# Links +gtk-color-scheme = "link_color:#F0719B\nvisited_link_color:#E040FB" + +# Set GTK settings +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +# And hand over the control to the theme files +include "main.rc" +include "apps.rc" +include "hacks.rc" diff --git a/gtk/manta/gtk-2.0/hacks.rc b/gtk/manta/gtk-2.0/hacks.rc new file mode 100644 index 0000000..96eb088 --- /dev/null +++ b/gtk/manta/gtk-2.0/hacks.rc @@ -0,0 +1,36 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This file contains horrible hacks to make this theme work with some programs +# This is mostly due to the limitations of gtk2 but sometimes its the fault of +# the programs themselves. Not going to point fingers. +# +# Either way, it's a WONTFIX for both, hence this horrible file. + +style "toplevel_hack" { + engine "adwaita" {} +} + +style "chrome_entry" { + base[NORMAL] = @base_color + base[INSENSITIVE] = @base_color +} + +style "vim_notebook" { + bg[NORMAL] = @base_color + bg[ACTIVE] = @bg_color +} + +# Vim puts an eventbox between the tab and the label and colours it, +# we need to handle that +widget "vim-main-window*GtkNotebook.GtkEventBox" style "vim_notebook" + +# (he)xchat input box +class "SexySpellEntry" style:highest "normal_entry" + +# Chromium uses base as the fill colour of its own entries +# This would be fine but Gtk+ uses it to fill the surrounding space, so its set to bg +# That results in Chromium using it for the fill, so we need to handle that +widget_class "*Chrom*" style "chrome_entry" + +# Hack to be able to match widgets in LibreOffice +class "GtkWindow" style "toplevel_hack" diff --git a/gtk/manta/gtk-2.0/main.rc b/gtk/manta/gtk-2.0/main.rc new file mode 100644 index 0000000..3658fe5 --- /dev/null +++ b/gtk/manta/gtk-2.0/main.rc @@ -0,0 +1,2781 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This is the main theme file, handling all the default widgets and theme +# properties. Since GTK+ 2 is old, we need to overcome some of its limitations, +# which is also mostly done in this file. Sadly not all of them can be overcome +# so there will always be a visible difference between the GTK+ 2 and 3 theme. + +style "default" { + xthickness = 1 + ythickness = 1 + + #################### + # Style Properties # + #################### + + GtkWidget::focus-padding = 0 + GtkWidget::focus-line-width = 2 + GtkWidget::focus-line-pattern = "\2\1" + + GtkToolbar::space-size = 5 # 1 + 2*2 (separator + margins) + GtkToolbar::internal-padding = 2 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 230 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @visited_link_color + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkHTML::vlink-color = @visited_link_color + GtkIMHtml::hyperlink-color = @link_color + GtkIMHtml::hyperlink-visited-color = @visited_link_color + + GtkSeparatorMenuItem::horizontal-padding = 0 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 3 + + GtkButton::child-displacement-y = 0 + + GtkButton::default-border = {0, 0, 0, 0} + GtkButton::default-outside-border = {0, 0, 0, 0} + GtkButton::inner-border = {4, 4, 4, 4} + + GtkEntry::state-hint = 1 + GtkEntry::inner-border = {4, 4, 4, 4} + + GtkPaned::handle-size = 8 + GtkHPaned::handle-size = 8 + GtkVPaned::handle-size = 8 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 17 + GtkRange::stepper-size = 0 + GtkRange::activate-slider = 1 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 # 24 + 2*4 (margins) + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 24 + GtkScale::slider_width = 24 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 4 + GtkProgressBar::min-vertical-bar-width = 4 + GtkProgressBar::xspacing = 4 + GtkProgressBar::yspacing = 4 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + # TODO: find out what this comment means: + # ( every window is misaligned for the sake of menus ): + GtkMenuBar::internal-padding = 0 + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 4 + GtkMenu::double-arrows = 0 + GtkMenuItem::arrow-scaling = 1 + GtkMenuItem::toggle-spacing = 12 + + GtkCheckButton::indicator-size = 24 + GtkCheckButton::indicator_spacing = 2 + GtkOptionMenu::indicator_spacing = {10, 10, 6, 6} + + GtkTreeView::expander-size = 16 + GtkTreeView::vertical-separator = 0 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 0 + # Set this because some apps read it + GtkTreeView::odd-row-color = @base_color + GtkTreeView::even-row-color = @base_color + + GtkExpander::expander-size = 16 + + GtkNotebook::tab-overlap = 0 + + ########## + # Colors # + ########## + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = @bg_color + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = @bg_color + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = mix (0.4, @fg_color, @bg_color) + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = mix (0.4, @text_color, @base_color) + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = mix (0.05, @text_color, @base_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = mix (0.5, @base_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/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = PRELIGHT + detail = "menuitem" + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menuitem" + overlay_file = "assets/pan-left-insensitive.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + detail = "menuitem" + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + detail = "menuitem" + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menuitem" + overlay_file = "assets/pan-right-insensitive.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menu_scroll_arrow_up" + overlay_file = "assets/pan-up-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + detail = "menu_scroll_arrow_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menu_scroll_arrow_down" + overlay_file = "assets/pan-down-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + detail = "menu_scroll_arrow_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + # Regular arrows + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-up-alt-insensitive.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-down-alt-insensitive.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-left-alt.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-left-alt-insensitive.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-right-alt.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-right-alt-insensitive.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + ###################### + # Option Menu Arrows # + ###################### + + image { + function = TAB + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/pan-down-alt-insensitive.png" + overlay_stretch = FALSE + } + + ######### + # Lines # + ######### + + image { + function = VLINE + file = "assets/border.png" + border = {1, 0, 0, 0} + } + + image { + function = HLINE + file = "assets/border.png" + border = {0, 0, 1, 0} + } + + ######### + # Focus # + ######### + + image { + function = FOCUS + file = "assets/focus.png" + border = {2, 2, 2, 2} + stretch = TRUE + } + + ########### + # Handles # + ########### + + image { + function = HANDLE + detail = "handlebox" + overlay_file = "assets/handle-vert.png" + overlay_stretch = FALSE + } + + image { + function = HANDLE + state = NORMAL + overlay_file = "assets/handle-horz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = PRELIGHT + overlay_file = "assets/handle-horz-hover.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = ACTIVE + overlay_file = "assets/handle-horz-active.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = NORMAL + overlay_file = "assets/handle-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = HANDLE + state = PRELIGHT + overlay_file = "assets/handle-vert-hover.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = HANDLE + state = ACTIVE + overlay_file = "assets/handle-vert-active.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = RESIZE_GRIP + } + + ############# + # Expanders # + ############# + + image { + function = EXPANDER + expander_style = EXPANDED + state = NORMAL + file = "assets/pan-down-alt.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = PRELIGHT + file = "assets/pan-down.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = ACTIVE + file = "assets/pan-down.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = INSENSITIVE + file = "assets/pan-down-alt-insensitive.png" + } + + # LTR + + image { + function = EXPANDER + expander_style = COLLAPSED + state = NORMAL + file = "assets/pan-right-alt.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = PRELIGHT + file = "assets/pan-right.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = ACTIVE + file = "assets/pan-right.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = INSENSITIVE + file = "assets/pan-right-alt-insensitive.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/pan-right-semi.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/pan-right-semi.png" + direction = LTR + } + + # RTL + + image { + function = EXPANDER + expander_style = COLLAPSED + state = NORMAL + file = "assets/pan-left-alt.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = PRELIGHT + file = "assets/pan-left.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = ACTIVE + file = "assets/pan-left.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = INSENSITIVE + file = "assets/pan-left-alt-insensitive.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/pan-left-semi.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/pan-left-semi.png" + direction = RTL + } + + ############# + # Notebooks # + ############# + + # Left + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 1, 0, 0} + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + gap_side = RIGHT + } + + # Right + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {1, 0, 0, 0} + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + gap_side = LEFT + } + + # Up + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 0, 0, 1} + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + gap_side = BOTTOM + } + + # Down + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 0, 1, 0} + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + gap_side = TOP + } + + # Inner frame + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {1, 0, 0, 0} + gap_side = LEFT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 1, 0, 0} + gap_side = RIGHT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 0, 1, 0} + gap_side = TOP + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 0, 0, 1} + gap_side = BOTTOM + } + + # Standalone frame + image { + function = BOX + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-horz-trough.png" + border = {0, 0, 1, 0} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-ltr-trough.png" + border = {1, 0, 0, 0} + orientation = VERTICAL + direction = LTR + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-rtl-trough.png" + border = {0, 1, 0, 0} + orientation = VERTICAL + direction = RTL + } + + # Horizontal sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-horz-slider.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-horz-slider-hover.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-active.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-insensitive.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + # Vertical sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-hover.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-active.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-insensitive.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + # RTL + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-hover.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-active.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-insensitive.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + ########## + # Scales # + ########## + + # Troughs, overrided later on. We set them here too because some widgets + # don't specify their orientation. + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-horz-trough.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-upper" + file = "assets/scale-horz-trough-insensitive.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-lower" + file = "assets/scale-horz-trough-insensitive.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-upper" + file = "assets/scale-vert-trough-insensitive.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-lower" + file = "assets/scale-vert-trough-insensitive.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + detail = "hscale" + file = "assets/scale-slider.png" + } + + image { + function = SLIDER + state = PRELIGHT + detail = "hscale" + file = "assets/scale-slider-hover.png" + } + + image { + function = SLIDER + state = ACTIVE + detail = "hscale" + file = "assets/scale-slider-active.png" + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "hscale" + file = "assets/scale-slider-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/border.png" + # border = {0, 0, 0, 1} + # } + + ######### + # Menus # + ######### + + image { + function = BOX + state = PRELIGHT + detail = "menu_scroll_arrow_up" + file = "assets/border.png" + } + + image { + function = BOX + detail = "menu_scroll_arrow_up" + file = "assets/border.png" + border = {0, 0, 0, 1} + } + + image { + function = BOX + state = PRELIGHT + detail = "menu_scroll_arrow_down" + file = "assets/border.png" + } + + image { + function = BOX + detail = "menu_scroll_arrow_down" + file = "assets/border.png" + border = {0, 0, 1, 0} + } + + ########### + # Entries # + ########### + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-insensitive.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/entry.png" + border = {8, 8, 8, 8} + 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 = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-ltr-up-hover.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/spin-ltr-up-active.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/spin-ltr-up-insensitive.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt-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 = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/spin-rtl-up-insensitive.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt-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 = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-ltr-down-hover.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/spin-ltr-down-active.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/spin-ltr-down-insensitive.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt-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 = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-rtl-down-hover.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/spin-rtl-down-active.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/spin-rtl-down-insensitive.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt-insensitive.png" + overlay_stretch = FALSE + direction = RTL + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "bar" + file = "assets/progressbar-progress.png" + stretch = TRUE + border = {0, 0, 0, 0} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar-progress.png" + stretch = TRUE + border = {0, 0, 0, 0} + orientation = VERTICAL + } + + ############# + # Treeviews # + ############# + + # Disable active the column highlight + # We need to match specific cells or we break stuff + # Looking at you deadbeef + + image { + function = FLAT_BOX + detail = "cell_even_sorted" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "cell_odd_sorted" + state = NORMAL + } + + # Disable all the other shadows + # This prevents the Raleigh effect + image { + function = SHADOW + } + } +} + +style "menubar" { + bg[NORMAL] = @titlebar_bg_color + fg[NORMAL] = mix(0.7, @titlebar_fg_color, @titlebar_bg_color) + fg[PRELIGHT] = @titlebar_fg_color + fg[INSENSITIVE] = mix(0.3, @titlebar_fg_color, @titlebar_bg_color) + # Needed to fix Firefox's menubar text + bg[SELECTED] = mix(0.15, @titlebar_fg_color, @titlebar_bg_color) + fg[SELECTED] = @titlebar_fg_color +} + +style "menubar_item" { + xthickness = 3 + ythickness = 4 + + fg[NORMAL] = mix(0.7, @titlebar_fg_color, @titlebar_bg_color) + bg[PRELIGHT] = mix(0.15, @titlebar_fg_color, @titlebar_bg_color) + fg[PRELIGHT] = @titlebar_fg_color + fg[INSENSITIVE] = mix(0.3, @titlebar_fg_color, @titlebar_bg_color) +} + +style "menu" { + xthickness = 0 + ythickness = 0 + + bg[NORMAL] = @base_color + bg[INSENSITIVE] = @base_color + bg[PRELIGHT] = @base_color + bg[SELECTED] = mix(0.15, @fg_color, @base_color) +} + +style "menu_item" { + xthickness = 4 + ythickness = 4 + + bg[PRELIGHT] = mix(0.15, @fg_color, @base_color) + fg[PRELIGHT] = @fg_color + # Chromium uses this setting + bg[SELECTED] = mix(0.15, @fg_color, @base_color) + text[SELECTED] = @fg_color + # Some widgets use text, we need to handle that + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + + # Unfortunately we can't tell regular and menu checks/radios apart + # Without the heirarchy + engine "pixmap" { + + ################# + # Check Buttons # + ################# + + image { + function = CHECK + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-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.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.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-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-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.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.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 = 2 + + engine "pixmap" { + image { + function = BOX + file = "assets/border.png" + border = {0, 0, 0, 1} + } + } +} + +style "button_label" { + fg[NORMAL] = mix(0.75, @fg_color, @bg_color) + # fg[INSENSITIVE] = mix(0.3, @fg_color, @bg_color) + + font_name = "Medium" +} + +style "checkbutton_label" { + fg[NORMAL] = @fg_color + # fg[INSENSITIVE] = mix(0.4, @fg_color, @bg_color) + + font_name = "Regular" +} + +style "button" { + xthickness = 4 + ythickness = 4 + + # For the sake of sanity style buttons this way + engine "pixmap" { + + ########### + # Buttons # + ########### + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/button-hover.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/button-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = {8, 8, 8, 8} + 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 there's no overlap + xthickness = 6 + ythickness = 6 +} + +style "combobox" { + xthickness = 6 + ythickness = 6 + + # This affects only the button beside an entry + GtkButton::inner-border = {0, 0, 0, 0} +} + +style "combobox_cellview" { + text[NORMAL] = mix(0.75, @fg_color, @bg_color) + # text[INSENSITIVE] = mix(0.3, @fg_color, @bg_color) + + font_name = "Medium" +} + +style "combobox_entry" { + # Since one side of the button is missing, we need to shift the arrow a little to the right + GtkButton::inner-border = {0, 2, 0, 0} + + engine "pixmap" { + + ############# + # LTR entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-ltr-entry.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-ltr-entry-active.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-ltr-entry-insensitive.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = LTR + } + + ############# + # RTL entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-rtl-entry.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-rtl-entry-active.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-rtl-entry-insensitive.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + ############## + # LTR button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-ltr-button.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-ltr-button-hover.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-ltr-button-active.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-ltr-button-insensitive.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + ############## + # RTL button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-rtl-button.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-rtl-button-hover.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-rtl-button-active.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-rtl-button-insensitive.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = RTL + } + } +} + +style "combo_button_padding" { + # Since one side of the button is missing, we need to shift the arrow a + # little to the right. + # This is the same thing we've done above but the combo, unlike the combobox, + # uses padding the same way as a button. + GtkButton::inner-border = {3, 6, 3, 3} +} + +style "notebook" { + xthickness = 3 + ythickness = 3 +} + +style "notebook_tab_label" { + fg[ACTIVE] = mix(0.75, @fg_color, @bg_color) + + font_name = "Medium" +} + +style "notebook_viewport" { + bg[NORMAL] = @base_color +} + +style "notebook_bg" { + bg[NORMAL] = @base_color + bg[PRELIGHT] = @base_color + bg[INSENSITIVE] = @base_color +} + +style "notebook_entry" { + engine "pixmap" { + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-entry-insensitive.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/notebook-entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + } +} + +style "normal_bg" { + bg[NORMAL] = @bg_color + bg[PRELIGHT] = @bg_color + bg[INSENSITIVE] = @bg_color +} + +style "normal_entry" { + engine "pixmap" { + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-insensitive.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + } +} + +style "notebook_combo" { + engine "pixmap" { + + ############# + # LTR entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/notebook-combo-ltr-entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-combo-ltr-entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-combo-ltr-entry-insensitive.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + ############# + # RTL entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/notebook-combo-rtl-entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-combo-rtl-entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-combo-rtl-entry-insensitive.png" + border = {8, 8, 8, 8} + 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 = {6, 6, 0, 0} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {6, 6, 0, 0} + stretch = TRUE + } + } +} + +style "scale_vert" { + engine "pixmap" { + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 6, 6} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 6, 6} + stretch = TRUE + } + } +} + +style "progressbar" { + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + image { + function = BOX + detail = "trough" + file = "assets/progressbar-trough.png" + border = {0, 0, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/progressbar-trough.png" + border = {0, 0, 0, 0} + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "treeview_header" { + xthickness = 2 + ythickness = 2 + + fg[NORMAL] = mix(0.75, @fg_color, @base_color) + fg[PRELIGHT] = @fg_color + + font_name = "Medium" + + GtkButton::inner-border = {4, 4, 0, 2} + + engine "pixmap" { + image { + function = BOX + state = NORMAL + file = "assets/treeview-ltr-button.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/treeview-ltr-button-hover.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/treeview-ltr-button-active.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = NORMAL + file = "assets/treeview-rtl-button.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/treeview-rtl-button-hover.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/treeview-rtl-button-active.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + } +} + +style "scrolled_window" { + engine "pixmap" { + image { + function = SHADOW + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + } +} + +style "frame" { + engine "pixmap" { + image { + function = SHADOW + shadow = NONE + } + + image { + function = SHADOW + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_start_file = "assets/border.png" + gap_end_file = "assets/border.png" + } + } +} + +style "tool_button" { + GtkButton::inner-border = {2, 2, 2, 2} + + # For the sake of sanity style buttons this way + engine "pixmap" { + image { + function = BOX + state = NORMAL + file = "assets/flat-button.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/flat-button-hover.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/flat-button-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/flat-button-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + shadow = OUT + file = "assets/flat-button-insensitive.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + shadow = IN + file = "assets/button-insensitive.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + } +} + +style "toolbar_separator" { + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 1 + + engine "pixmap" { + image { + function = BOX + file = "assets/border.png" + } + } +} + +style "inline_toolbar" { + # GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + image { + function = BOX + file = "assets/frame-inline.png" + border = {1, 1, 0, 1} + stretch = TRUE + } + } +} + +style "tooltip" { + xthickness = 8 + ythickness = 8 + + bg[NORMAL] = @base_color + fg[NORMAL] = @fg_color + bg[SELECTED] = @base_color +} + +style "disable_text_shadow" { + engine "murrine" { + textstyle = 0 + } +} + +style "disable_separator" { + xthickness = 0 + ythickness = 0 + + GtkWidget::wide-separators = 1 +} + +# Default style, containing theme properties and trying to match every widget as +# much as possible, which is not only faster than trying to match every widget +# by its own but also less bug-prune and more consistent. However there is some +# widget specific stuff that needs to be taken care of, which is the point of +# every other style below. +class "GtkWidget" style "default" + +###################################### +# Override padding, style and colour # +###################################### + +class "GtkButton" style "button" +class "GtkLinkButton" style "link_button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkNotebook" style "notebook" +class "GtkHScale" style "scale_horz" +class "GtkVScale" style "scale_vert" +class "GtkProgressBar" style "progressbar" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkSeparatorToolItem" style "toolbar_separator" +class "GtkMenuBar" style "menubar" +class "GtkMenu" style "menu" +class "GtkTextView" style "textview" + +# Menu and menubar items +widget_class "**" style "menu_item" +widget_class "*.*" style "menubar_item" +widget_class "**" style "separator_menu_item" + +# Treeview buttons +widget_class "***" style "treeview_header" + +# Give the file chooser toolbar a border +widget_class "**" style "inline_toolbar" + +# Fix padding on regular comboboxes +widget_class "*." style "combobox" + +# And disable separators on them +widget_class "*.*" style "disable_separator" +widget_class "**" style "disable_separator" +widget_class "**" style "disable_separator" + +# Join together the ComboBoxEntry entry and button +widget_class "**" style "combobox_entry" + +# Join the Combo entry and button +widget_class "**" style "combobox_entry" + +# Tweak the padding on the button a little bit because it +# uses it a bit differently +widget_class "*." style "combo_button_padding" + +# Alas we cannot do the same for ComboBoxText because there +# isn't a way to apply the style to only the comboboxes that +# have an entry inside + +# Tool buttons have different styles +widget_class "**" style "tool_button" +widget_class "**.*" style "tool_button" + +# Notebooks +widget_class "*." style "notebook_tab_label" +widget_class "*.." style "notebook_tab_label" + +# Notebooks are white, act accordingly +widget_class "**" style "notebook_entry" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "***" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "*.*" style "notebook_bg" +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" + +# Button labels +widget_class "**" style "button_label" + +# Checkbutton labels +widget_class "*." style "checkbutton_label" + +# ComboBoxes tend to draw the button label with text[] +# instead of fg[], we need to fix that +widget_class "**" style "combobox_cellview" + +# Disable white text shadows +widget_class "*" style "disable_text_shadow" +widget_class "*" style "disable_text_shadow" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltip" diff --git a/gtk/manta/gtk-3.0/assets b/gtk/manta/gtk-3.0/assets new file mode 120000 index 0000000..ac77667 --- /dev/null +++ b/gtk/manta/gtk-3.0/assets @@ -0,0 +1 @@ +../gtk-assets \ No newline at end of file diff --git a/gtk/manta/gtk-3.0/gtk.css b/gtk/manta/gtk-3.0/gtk.css new file mode 100644 index 0000000..43e0034 --- /dev/null +++ b/gtk/manta/gtk-3.0/gtk.css @@ -0,0 +1,3275 @@ +@keyframes ripple_effect { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); + } +} + +@keyframes flat_ripple_effect { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); + } +} + +@keyframes list_ripple_effect { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + } +} + +* { + padding: 0; + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #DD2C00; + -GtkCheckButton-indicator-size: 24; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #F0719B; + -GtkWidget-visited-link-color: #E040FB; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-style: solid; + outline-width: 2px; + outline-color: alpha(currentColor, 0.3); + outline-offset: -4px; + outline-radius: 2px; +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #EEFFFF; + color: #1E2541; +} + +/* + 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. +*/ +*:insensitive { + -gtk-image-effect: dim; +} + +.gtkstyle-fallback { + background-color: #EEFFFF; + color: #1E2541; +} + +.gtkstyle-fallback:prelight { + background-color: #d5ffff; + color: #1E2541; +} + +.gtkstyle-fallback:active { + background-color: #bbffff; + color: #1E2541; +} + +.gtkstyle-fallback:insensitive { + background-color: #EEFFFF; + color: rgba(30, 37, 65, 0.38); +} + +.gtkstyle-fallback:selected { + background-color: #F0719B; + color: #1E2541; +} + +.view { + background-color: #EEFFFF; + color: #1E2541; +} + +.view:hover, .view:active, .view:selected, GtkCalendar:selected { + border-radius: 2px; +} + +.view:insensitive { + color: rgba(30, 37, 65, 0.38); +} + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #ff91bb; + background-color: rgba(255, 145, 187, 0.3); +} + +.label.separator { + color: #1E2541; +} + +.label:insensitive { + color: rgba(30, 37, 65, 0.38); +} + +.dim-label, .label.separator, .titlebar .subtitle, +.header-bar .subtitle { + opacity: 0.6; +} + +GtkAssistant .sidebar { + padding: 6px 0; +} + +GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid rgba(30, 37, 65, 0.12); +} + +GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid rgba(30, 37, 65, 0.12); +} + +GtkAssistant .sidebar .label { + opacity: 0.6; + padding: 5px 12px 6px; + font-weight: 500; +} + +GtkAssistant .sidebar .label.highlight { + opacity: 1; +} + +GtkTextView { + background-color: #eeffff; +} + +.grid-child { + padding: 4px; + border-radius: 2px; +} + +.popover.osd, .app-notification, +.app-notification.frame, .osd .scale-popup, .floating-bar, .osd { + opacity: 0.9; +} + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); + } +} + +.spinner { + background-color: blue; + background-image: none; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); +} + +.spinner:active { + opacity: 1; + animation: spin 1s linear infinite; +} + +.spinner:active:insensitive { + opacity: 0.5; +} + +/**************** + * Text Entries * + ****************/ +.entry { + padding: 7px 8px 8px; + border-radius: 2px; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; + color: #1E2541; +} + +.entry:focus { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.entry:insensitive { + color: rgba(30, 37, 65, 0.38); + background-color: #eeffff; +} + +.entry.flat, .notebook GtkGrid > .entry { + border-radius: 0; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#F0719B), to(transparent)) 0 0 0/0 0 0px; + border-radius: 0; + box-shadow: inset 0 -1px alpha(currentColor, 0.3); + background-color: transparent; + color: #1E2541; +} + +.entry.flat:focus, .notebook GtkGrid > .entry:focus { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#F0719B), to(transparent)) 0 0 2/0 0 2px; + box-shadow: inset 0 -2px #F0719B; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0 270ms; +} + +.entry.flat:insensitive, .notebook GtkGrid > .entry:insensitive { + box-shadow: inset 0 -1px alpha(currentColor, 0.3); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +.entry.image.left { + padding-left: 2px; +} + +.entry.image.right { + padding-right: 2px; +} + +.entry.progressbar, GtkTreeView.view.progressbar, GtkTreeView.view.trough { + margin: 2px; + border-style: none none solid; + border-width: 2px; + border-color: #F0719B; + border-radius: 0; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +.linked > .entry.flat, .notebook GtkGrid.linked > .entry, +.linked.vertical > .entry.flat, +.notebook GtkGrid.linked.vertical > .entry { + border-radius: 0; +} + +.entry.error { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #DD2C00; + color: #1E2541; +} + +.entry.error:focus { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.entry.error:insensitive { + color: rgba(30, 37, 65, 0.38); + background-color: #eeffff; +} + +.entry.error.flat, .notebook GtkGrid > .error.entry { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#DD2C00), to(transparent)) 0 0 0/0 0 0px; + border-radius: 0; + box-shadow: inset 0 -1px #DD2C00; + background-color: transparent; + color: #1E2541; +} + +.entry.error.flat:focus, .notebook GtkGrid > .error.entry:focus { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#DD2C00), to(transparent)) 0 0 2/0 0 2px; + box-shadow: inset 0 -2px #DD2C00; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0 270ms; +} + +.entry.error.flat:insensitive, .notebook GtkGrid > .error.entry:insensitive { + box-shadow: inset 0 -1px alpha(currentColor, 0.3); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +.entry.warning { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #FF6D00; + color: #1E2541; +} + +.entry.warning:focus { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.entry.warning:insensitive { + color: rgba(30, 37, 65, 0.38); + background-color: #eeffff; +} + +.entry.warning.flat, .notebook GtkGrid > .warning.entry { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#FF6D00), to(transparent)) 0 0 0/0 0 0px; + border-radius: 0; + box-shadow: inset 0 -1px #FF6D00; + background-color: transparent; + color: #1E2541; +} + +.entry.warning.flat:focus, .notebook GtkGrid > .warning.entry:focus { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#FF6D00), to(transparent)) 0 0 2/0 0 2px; + box-shadow: inset 0 -2px #FF6D00; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0 270ms; +} + +.entry.warning.flat:insensitive, .notebook GtkGrid > .warning.entry:insensitive { + box-shadow: inset 0 -1px alpha(currentColor, 0.3); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +.entry.image:not(:hover):not(:active) { + color: alpha(currentColor, 0.75); +} + +.entry.image:insensitive { + color: alpha(currentColor, 0.6); +} + +GtkTreeView .entry:not(:selected), GtkTreeView .entry:not(:selected):focus { + padding: 2px; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: #EEFFFF; +} + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#57C7FF), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#57C7FF), to(transparent)); + } +} + + +.button { + padding: 7px 10px 8px; + border-radius: 2px; + background-repeat: no-repeat; + background-position: center, center; + background-size: 90px 90px, auto; + font-weight: 500; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + color: #1DA0E2; +} + + +.button:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + color: #1E2541; +} + + +.button:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1), background-image 0; + animation: ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + color: #1E2541; +} + + +.button:insensitive { + box-shadow: none; + background-color: alpha(currentColor, 0.3); + color: rgba(29, 160, 226, 0.26); +} + + +.button:insensitive > .label { + color: inherit; +} + + +.button:checked { + background-color: #F0719B; + color: #1E2541; +} + + +.button:checked:insensitive { + background-color: alpha(currentColor, 0.3); + color: rgba(240, 113, 155, 0.5); +} + + +.button:checked:insensitive > .label { + color: inherit; +} + +.spinbutton .button, .popover .linked > .button, .notebook tab .button, GtkCalendar.button, .message-dialog.csd .dialog-action-area .button, .sidebar-button.button, .toolbar:not(.search-bar) .button, .titlebar .button:not(.suggested-action):not(.destructive-action), +.header-bar .button:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:not(.suggested-action):not(.destructive-action), .app-notification .button, +.app-notification.frame .button, +.button.flat { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: none; + background-color: transparent; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + color: alpha(currentColor, 0.75); +} + +.spinbutton .button:hover, .popover .linked > .button:hover, .notebook tab .button:hover, GtkCalendar.button:hover, .message-dialog.csd .dialog-action-area .button:hover, .sidebar-button.button:hover, .toolbar:not(.search-bar) .button:hover, .titlebar .button:hover:not(.suggested-action):not(.destructive-action), +.header-bar .button:hover:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:hover:not(.suggested-action):not(.destructive-action), .app-notification .button:hover, +.button.flat:hover { + box-shadow: none; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); + color: currentColor; +} + +.spinbutton .button:active, .popover .linked > .button:active, .notebook tab .button:active, GtkCalendar.button:active, .message-dialog.csd .dialog-action-area .button:active, .sidebar-button.button:active, .toolbar:not(.search-bar) .button:active, .titlebar .button:active:not(.suggested-action):not(.destructive-action), +.header-bar .button:active:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:active:not(.suggested-action):not(.destructive-action), .app-notification .button:active, +.button.flat:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-image 0; + animation: flat_ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: none; + color: currentColor; +} + +.spinbutton .button:insensitive, .popover .linked > .button:insensitive, .notebook tab .button:insensitive, GtkCalendar.button:insensitive, .message-dialog.csd .dialog-action-area .button:insensitive, .sidebar-button.button:insensitive, .toolbar:not(.search-bar) .button:insensitive, .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action), +.header-bar .button:insensitive:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:insensitive:not(.suggested-action):not(.destructive-action), .app-notification .button:insensitive, +.button.flat:insensitive { + box-shadow: none; + background-color: transparent; + color: alpha(currentColor, 0.375); +} + +.spinbutton .button:insensitive > .label, .popover .linked > .button:insensitive > .label, .notebook tab .button:insensitive > .label, GtkCalendar.button:insensitive > .label, .message-dialog.csd .dialog-action-area .button:insensitive > .label, .sidebar-button.button:insensitive > .label, .toolbar:not(.search-bar) .button:insensitive > .label, .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .header-bar .button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .frame.action-bar .button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .app-notification .button:insensitive > .label, +.button.flat:insensitive > .label { + color: inherit; +} + +.toolbar:not(.search-bar) .button:checked, .titlebar .button:checked:not(.suggested-action):not(.destructive-action), +.header-bar .button:checked:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:checked:not(.suggested-action):not(.destructive-action), .app-notification .button:checked, +.button.flat:checked { + background-color: alpha(currentColor, 0.3); + color: currentColor; +} + +.toolbar:not(.search-bar) .button:checked:insensitive, .titlebar .button:checked:insensitive:not(.suggested-action):not(.destructive-action), +.header-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action), .app-notification .button:checked:insensitive, +.button.flat:checked:insensitive { + background-color: alpha(currentColor, 0.3); + color: alpha(currentColor, 0.5); +} + +.toolbar:not(.search-bar) .button:checked:insensitive > .label, .titlebar .button:checked:insensitive:not(.suggested-action):not(.destructive-action) > .label, .header-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action) > .label, .frame.action-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action) > .label, .app-notification .button:checked:insensitive > .label, +.button.flat:checked:insensitive > .label { + color: inherit; +} + + +.button.osd.image-button { + padding: 16px; + background-size: 60px 60px, auto; +} + + +.button.osd:insensitive { + opacity: 0; +} + + +.button.suggested-action { + background-color: #57C7FF; + color: #1E2541; +} + + +.button.suggested-action:insensitive { + box-shadow: none; + background-color: alpha(currentColor, 0.3); + color: rgba(30, 37, 65, 0.38); +} + + +.button.suggested-action:insensitive > .label { + color: inherit; +} + + +.button.suggested-action:checked { + background-color: #4696c6; +} + +.toolbar:not(.search-bar) .suggested-action.button, .titlebar .suggested-action.button:not(.suggested-action):not(.destructive-action), +.header-bar .suggested-action.button:not(.suggested-action):not(.destructive-action), .frame.action-bar .suggested-action.button:not(.suggested-action):not(.destructive-action), .app-notification .suggested-action.button, +.button.suggested-action.flat { + background-color: transparent; + color: #57C7FF; +} + +.toolbar:not(.search-bar) .suggested-action.button:insensitive, .titlebar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action), +.header-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action), .frame.action-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action), .app-notification .suggested-action.button:insensitive, +.button.suggested-action.flat:insensitive { + box-shadow: none; + background-color: transparent; + color: alpha(currentColor, 0.5); +} + +.toolbar:not(.search-bar) .suggested-action.button:insensitive > .label, .titlebar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .header-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .frame.action-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .app-notification .suggested-action.button:insensitive > .label, +.button.suggested-action.flat:insensitive > .label { + color: inherit; +} + +.toolbar:not(.search-bar) .suggested-action.button:checked, .titlebar .suggested-action.button:checked:not(.suggested-action):not(.destructive-action), +.header-bar .suggested-action.button:checked:not(.suggested-action):not(.destructive-action), .frame.action-bar .suggested-action.button:checked:not(.suggested-action):not(.destructive-action), .app-notification .suggested-action.button:checked, +.button.suggested-action.flat:checked { + background-color: alpha(currentColor, 0.3); +} + + +.button.destructive-action { + background-color: #FF5252; + color: #1E2541; +} + + +.button.destructive-action:insensitive { + box-shadow: none; + background-color: alpha(currentColor, 0.3); + color: rgba(30, 37, 65, 0.38); +} + + +.button.destructive-action:insensitive > .label { + color: inherit; +} + + +.button.destructive-action:checked { + background-color: #bc454d; +} + +.toolbar:not(.search-bar) .destructive-action.button, .titlebar .destructive-action.button:not(.suggested-action):not(.destructive-action), +.header-bar .destructive-action.button:not(.suggested-action):not(.destructive-action), .frame.action-bar .destructive-action.button:not(.suggested-action):not(.destructive-action), .app-notification .destructive-action.button, +.button.destructive-action.flat { + background-color: transparent; + color: #FF5252; +} + +.toolbar:not(.search-bar) .destructive-action.button:insensitive, .titlebar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action), +.header-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action), .frame.action-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action), .app-notification .destructive-action.button:insensitive, +.button.destructive-action.flat:insensitive { + box-shadow: none; + background-color: transparent; + color: alpha(currentColor, 0.5); +} + +.toolbar:not(.search-bar) .destructive-action.button:insensitive > .label, .titlebar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .header-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .frame.action-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .app-notification .destructive-action.button:insensitive > .label, +.button.destructive-action.flat:insensitive > .label { + color: inherit; +} + +.toolbar:not(.search-bar) .destructive-action.button:checked, .titlebar .destructive-action.button:checked:not(.suggested-action):not(.destructive-action), +.header-bar .destructive-action.button:checked:not(.suggested-action):not(.destructive-action), .frame.action-bar .destructive-action.button:checked:not(.suggested-action):not(.destructive-action), .app-notification .destructive-action.button:checked, +.button.destructive-action.flat:checked { + background-color: alpha(currentColor, 0.3); +} + + +.button.text-button, +GtkScaleButton.button.text-button, +GtkVolumeButton.button.text-button { + padding-left: 16px; + padding-right: 16px; +} + + +.button.text-button.image-button { + padding: 7px 10px 8px; + outline-radius: 2px; + border-radius: 2px; + background-size: 90px 90px, auto; +} + + +.button.text-button.image-button .label:first-child { + padding-left: 6px; +} + + +.button.text-button.image-button .label:last-child { + padding-right: 6px; +} + +.stack-switcher > +.button { + outline-offset: -4px; +} + +.stack-switcher > +.button > .label { + padding-left: 6px; + padding-right: 6px; +} + +.stack-switcher > +.button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; +} + +.stack-switcher > .button.text-button { + padding: 7px 10px 8px; +} + +.stack-switcher > +.button.image-button { + padding: 7px 4px; +} + +.stack-switcher > +.button.needs-attention:checked > .label, +.stack-switcher > +.button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; +} + +.primary-toolbar +.button { + icon-shadow: none; +} + +.toolbar:not(.search-bar) .linked > .button, .titlebar .linked > .button:not(.suggested-action):not(.destructive-action), +.header-bar .linked > .button:not(.suggested-action):not(.destructive-action), .frame.action-bar .linked > .button:not(.suggested-action):not(.destructive-action), .app-notification .linked > .button, +.toolbar:not(.search-bar) .linked.vertical > .button, +.titlebar .linked.vertical > .button:not(.suggested-action):not(.destructive-action), +.header-bar .linked.vertical > .button:not(.suggested-action):not(.destructive-action), +.frame.action-bar .linked.vertical > .button:not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > .button, .linked > +.button.flat, +.linked.vertical > +.button.flat { + border-radius: 2px; +} + +.toolbar:not(.search-bar) .linked > .image-button.button, .titlebar .linked > .image-button.button:not(.suggested-action):not(.destructive-action), +.header-bar .linked > .image-button.button:not(.suggested-action):not(.destructive-action), .frame.action-bar .linked > .image-button.button:not(.suggested-action):not(.destructive-action), .app-notification .linked > .image-button.button, +.toolbar:not(.search-bar) .linked.vertical > .image-button.button, +.titlebar .linked.vertical > .image-button.button:not(.suggested-action):not(.destructive-action), +.header-bar .linked.vertical > .image-button.button:not(.suggested-action):not(.destructive-action), +.frame.action-bar .linked.vertical > .image-button.button:not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > .image-button.button, .linked > +.button.flat.image-button, +.linked.vertical > +.button.flat.image-button { + outline-radius: 9999px; + border-radius: 9999px; +} + +.toolbar:not(.search-bar) .linked > .text-button.image-button.button, .titlebar .linked > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), +.header-bar .linked > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), .frame.action-bar .linked > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), .app-notification .linked > .text-button.image-button.button, +.toolbar:not(.search-bar) .linked.vertical > .text-button.image-button.button, +.titlebar .linked.vertical > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), +.header-bar .linked.vertical > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), +.frame.action-bar .linked.vertical > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > .text-button.image-button.button, .linked > .button.flat.text-button.image-button, +.linked.vertical > .button.flat.text-button.image-button { + outline-radius: 2px; + border-radius: 2px; +} + + +.button.image-button, .inline-toolbar .button, .spinbutton .button, .notebook tab .button, GtkScaleButton.button, +GtkVolumeButton.button, .header-bar .button.titlebutton, +.titlebar .button.titlebutton, .nautilus-circular-button { + padding: 10px; + outline-radius: 100px; + border-radius: 100px; + background-size: 45px 45px, auto; +} + +.stack-switcher > .button.needs-attention > .label, +.stack-switcher > .button.needs-attention > GtkImage, .sidebar-item.needs-attention > .label { + animation: needs_attention 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +.stack-switcher > .button.needs-attention > .label:dir(rtl), +.stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .sidebar-item.needs-attention > .label:dir(rtl) { + background-position: left 3px; +} + +.linked > .entry, .linked > .button, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + outline-radius: 2px; + border-radius: 0; +} + +.linked > .entry:first-child, .linked > .button:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} + +.linked > .entry:last-child, .linked > .button:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} + +.linked > .entry:only-child, .linked > .button:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox { + border-radius: 2px; +} + +.linked.vertical > .entry, .linked.vertical > .button, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + outline-radius: 2px; + border-radius: 0; +} + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 2px; +} + +/* menu buttons */ +GtkColorButton.button { + padding: 7px 8px 8px; +} + +GtkColorButton.button GtkColorSwatch:first-child:last-child { + border-radius: 2px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #F0719B; +} + +*:link:hover, .button:hover:link, .button:hover:visited, *:link:active, .button:active:link, .button:active:visited { + color: #F0719B; +} + +*:link:visited, .button:visited { + color: #E040FB; +} + +*:link:visited:hover, .button:visited:hover, *:link:visited:active, .button:visited:active { + color: #E040FB; +} + +*:selected *:link:visited, *:selected .button:visited { + color: #724365; +} + +*:link:selected, .button:selected:link, .button:selected:visited, .titlebar.selection-mode .subtitle:link, +.header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #483453; +} + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton .button { + padding: 4px; + border: solid 6px transparent; + color: rgba(29, 160, 226, 0.54); +} + +.spinbutton .button:hover, .spinbutton .button:active { + color: #1E2541; +} + +.spinbutton .button:insensitive { + color: rgba(29, 160, 226, 0.26); +} + +.spinbutton .button:active { + background-color: alpha(currentColor, 0.3); +} + +.spinbutton.vertical .button { + padding-top: 10px; + padding-bottom: 10px; + border: none; +} + +.spinbutton.vertical .button:first-child { + border-radius: 2px 2px 0 0; +} + +.spinbutton.vertical .button:last-child { + border-radius: 0 0 2px 2px; +} + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; +} + +GtkComboBox > .the-button-in-the-combobox { + padding: 5px 6px 6px; +} + +GtkComboBox .menu { + padding: 2px 0; +} + +GtkComboBox .menu .menuitem { + padding: 5px 6px 6px; +} + +GtkComboBox .separator.vertical { + -GtkWidget-wide-separators: true; +} + +GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +GtkComboBox.combobox-entry .button { + padding: 10px; +} + +GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/************ + * Toolbars * + ************/ +.toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #EEFFFF; +} + +.osd .toolbar, .toolbar.osd, .app-notification, +.app-notification.frame { + transition: border-image 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-style: solid; + border-width: 8px; + border-image: -gtk-scaled(url("assets/box-shadow.png"), url("assets/box-shadow@2.png")) 10/10px stretch; + border-radius: 2px; + background-color: #EEFFFF; +} + +.osd .toolbar:backdrop, .toolbar.osd:backdrop, .app-notification:backdrop { + border-image: -gtk-scaled(url("assets/box-shadow-backdrop.png"), url("assets/box-shadow-backdrop@2.png")) 10/10px stretch; +} + +.inline-toolbar { + padding: 6px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #eeffff; +} + +.search-bar, .location-bar { + padding: 6px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + background-clip: border-box; +} + +/*************** + * Header bars * + ***************/ +.titlebar, +.header-bar { + transition: background-color 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-radius: 2px 2px 0 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px #EEFFFF; + background-color: #EEFFFF; + color: #1E2541; +} + +.titlebar:backdrop, +.header-bar:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +.titlebar .title, +.header-bar .title { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + padding-left: 12px; + padding-right: 12px; + font-weight: bold; +} + +.titlebar .subtitle, +.header-bar .subtitle { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + padding-left: 12px; + padding-right: 12px; + font-size: smaller; +} + +.titlebar .header-bar-separator, +.titlebar > GtkBox > .separator.vertical, +.header-bar .header-bar-separator, +.header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-style: solid; + border-width: 0 1px; + border-color: rgba(30, 37, 65, 0.12); +} + +.titlebar .button:not(.suggested-action):not(.destructive-action), +.header-bar .button:not(.suggested-action):not(.destructive-action) { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#F0719B), to(transparent)) 0 0 0/0 0 0px; +} + +.titlebar .button:not(.suggested-action):not(.destructive-action):checked, +.header-bar .button:not(.suggested-action):not(.destructive-action):checked { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#F0719B), to(transparent)) 0 0 2/0 0 2px; +} + +.titlebar .button:not(.suggested-action):not(.destructive-action):checked, .titlebar .button:not(.suggested-action):not(.destructive-action):checked:insensitive, +.header-bar .button:not(.suggested-action):not(.destructive-action):checked, +.header-bar .button:not(.suggested-action):not(.destructive-action):checked:insensitive { + background-color: transparent; +} + +.titlebar .button.suggested-action:insensitive, .titlebar .button.destructive-action:insensitive, +.header-bar .button.suggested-action:insensitive, +.header-bar .button.destructive-action:insensitive { + color: alpha(currentColor, 0.5); +} + +.titlebar .button.suggested-action:insensitive > .label, .titlebar .button.destructive-action:insensitive > .label, +.header-bar .button.suggested-action:insensitive > .label, +.header-bar .button.destructive-action:insensitive > .label { + color: inherit; +} + +.titlebar.selection-mode, +.header-bar.selection-mode { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(238, 255, 255, 0.2); + background-color: #F0719B; + color: #1E2541; +} + +.titlebar.selection-mode:backdrop, +.header-bar.selection-mode:backdrop { + color: rgba(30, 37, 65, 0.7); +} + +.titlebar.selection-mode .button, +.header-bar.selection-mode .button { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#1E2541), to(transparent)) 0 0 0/0 0 0px; + color: rgba(30, 37, 65, 0.7); +} + +.titlebar.selection-mode .button:hover, .titlebar.selection-mode .button:active, .titlebar.selection-mode .button:checked, +.header-bar.selection-mode .button:hover, +.header-bar.selection-mode .button:active, +.header-bar.selection-mode .button:checked { + color: #1E2541; +} + +.titlebar.selection-mode .button:checked, +.header-bar.selection-mode .button:checked { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#1E2541), to(transparent)) 0 0 2/0 0 2px; + color: #1E2541; +} + +.titlebar.selection-mode .button:checked:insensitive, +.header-bar.selection-mode .button:checked:insensitive { + color: rgba(30, 37, 65, 0.5); +} + +.titlebar.selection-mode .button:checked:insensitive > .label, +.header-bar.selection-mode .button:checked:insensitive > .label { + color: inherit; +} + +.titlebar.selection-mode .button.suggested-action, +.header-bar.selection-mode .button.suggested-action { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + color: #1DA0E2; +} + +.titlebar.selection-mode .button.suggested-action:hover, +.header-bar.selection-mode .button.suggested-action:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + color: #1E2541; +} + +.titlebar.selection-mode .button.suggested-action:active, +.header-bar.selection-mode .button.suggested-action:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1), background-image 0; + animation: ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + color: #1E2541; +} + +.titlebar.selection-mode .button.suggested-action:insensitive, +.header-bar.selection-mode .button.suggested-action:insensitive { + box-shadow: none; + background-color: alpha(currentColor, 0.3); + color: rgba(29, 160, 226, 0.26); +} + +.titlebar.selection-mode .button.suggested-action:insensitive > .label, +.header-bar.selection-mode .button.suggested-action:insensitive > .label { + color: inherit; +} + +.titlebar.selection-mode .selection-menu, +.header-bar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.titlebar.selection-mode .selection-menu GtkArrow, +.header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; +} + +.titlebar.selection-mode .selection-menu .arrow, +.header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.tiled .titlebar, .maximized .titlebar, .tiled +.header-bar, .maximized +.header-bar { + border-radius: 0; + box-shadow: none; +} + +.titlebar.default-decoration, +.header-bar.default-decoration { + padding: 6px; + border-width: 0; +} + +.titlebar.default-decoration .button, +.header-bar.default-decoration .button { + padding: 4px; +} + +/************ + * Pathbars * + ************/ +.path-bar .button { + padding: 7px 6px 8px; +} + +.path-bar .button .label:last-child { + padding-left: 2px; +} + +.path-bar .button .label:first-child { + padding-right: 2px; +} + +.path-bar .button GtkImage { + padding-top: 1px; +} + +.path-bar .button GtkImage:only-child { + padding-right: 4px; + padding-left: 4px; +} + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: alpha(currentColor, 0.3); + border-top-color: rgba(30, 37, 65, 0.12); + border-radius: 0; +} + +GtkTreeView.view:hover, GtkTreeView.view:active, GtkTreeView.view:selected { + border-radius: 0; +} + +GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #874b6e; +} + +GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +GtkTreeView.view.expander:selected { + color: rgba(30, 37, 65, 0.7); +} + +GtkTreeView.view.expander:selected:hover, GtkTreeView.view.expander:selected:active { + color: #1E2541; +} + +GtkTreeView.view.progressbar { + border-width: 4px; +} + +GtkTreeView.view.progressbar:selected { + border-color: currentColor; +} + +GtkTreeView.view.trough { + border-width: 4px; + border-color: rgba(240, 113, 155, 0.3); +} + +GtkTreeView.view.trough:selected { + border-color: alpha(currentColor, 0.3); +} + +column-header .button { + padding: 3px 6px 4px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #EEFFFF; +} + +column-header .button:hover, column-header .button:active { + box-shadow: none; +} + +column-header .button:insensitive { + background-color: #EEFFFF; +} + +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; +} + +column-header.button.dnd, column-header .button.dnd { + border-left-style: solid; + background-clip: padding-box; + color: #F0719B; +} + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #EEFFFF; +} + +.menubar > .menuitem { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px 8px; + color: rgba(30, 37, 65, 0.54); +} + +.menubar > .menuitem:hover { + transition: none; + background-color: alpha(currentColor, 0.15); + color: #1E2541; +} + +.menubar > .menuitem:insensitive { + color: rgba(30, 37, 65, 0.26); + box-shadow: none; +} + +.menu { + margin: 4px 0; + padding: 4px 0; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; + border: 1px solid rgba(30, 37, 65, 0.12); +} + +.csd .menu { + border: none; + border-radius: 2px; +} + +.menu .menuitem { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 3px 4px 4px; + font: initial; + text-shadow: none; +} + +.menu .menuitem:hover { + transition: none; + background-color: alpha(currentColor, 0.15); +} + +.menu .menuitem:insensitive { + color: rgba(30, 37, 65, 0.38); +} + +.menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +.menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +.menu.button { + border-style: none; + border-radius: 0; + box-shadow: none; +} + +.menu.button.top { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +.menu.button.bottom { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.menu.button:hover { + background-color: alpha(currentColor, 0.15); +} + +.menu.button:insensitive { + background-color: transparent; + border-color: transparent; +} + +.menuitem .accelerator { + color: alpha(currentColor, 0.6); +} + +.csd.popup { + border-radius: 2px; +} + +/*************** + * Popovers * + ***************/ +.popover { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + border: 1px solid; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 3px; + background-color: #EEFFFF; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.popover:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.popover > .list, +.popover > .view, +.popover > .toolbar, +.popover.osd > .toolbar { + border-style: none; + border-image: none; + background-color: transparent; +} + +.popover .button.flat { + padding: 5px 8px 6px; + background-color: transparent; + background-size: 160px 160px, auto; + color: #1E2541; + font: initial; +} + +.popover .linked > .button { + border-radius: 2px; +} + +.popover .linked > .button:checked { + background-color: #F0719B; + color: #1E2541; +} + +.popover .linked > .button.image-button { + padding: 8px; + background-size: 90px 90px, auto; +} + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #EEFFFF; + -GtkNotebook-initial-gap: 8; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; +} + +.notebook.frame { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +.notebook.frame.top { + border-top-width: 0; +} + +.notebook.frame.bottom { + border-bottom-width: 0; +} + +.notebook.frame.right { + border-right-width: 0; +} + +.notebook.frame.left { + border-left-width: 0; +} + +.notebook.header { + background-color: #EEFFFF; +} + +.notebook.header.frame { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +.notebook.header.frame.top { + border-bottom-width: 0; +} + +.notebook.header.frame.bottom { + border-top-width: 0; +} + +.notebook.header.frame.right { + border-left-width: 0; +} + +.notebook.header.frame.left { + border-right-width: 0; +} + +.notebook.header.top { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); +} + +.notebook.header.bottom { + box-shadow: inset 0 1px rgba(30, 37, 65, 0.12); +} + +.notebook.header.right { + box-shadow: inset 1px 0 rgba(30, 37, 65, 0.12); +} + +.notebook.header.left { + box-shadow: inset -1px 0 rgba(30, 37, 65, 0.12); +} + +.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-offset: 0; + /* works for testnotebookdnd, but there's a superfluous border + in gedit or web, commented out for now, needs gtk fixes + &.reorderable-page { + &.top { + padding-top: ($vt_vpadding - 1px); + border-top-width: 1px; + border-left-width: 1px; + border-right-width: 1px; + } + &.bottom { + padding-bottom: ($vt_vpadding - 1px); + border-bottom-width: 1px; + border-left-width: 1px; + border-right-width: 1px; + } + &.left { + padding-left: ($ht_hpadding - 1px); + border-left-width: 1px; + border-top-width: 1px; + border-bottom-width: 1px; + } + &.right { + padding-right: ($ht_hpadding - 1px); + border-right-width: 1px; + border-top-width: 1px; + border-bottom-width: 1px; + } + } + */ +} + +.notebook tab.top, .notebook tab.bottom { + padding: 8px 12px; +} + +.notebook tab.left, .notebook tab.right { + padding: 8px 12px; +} + +.notebook tab.reorderable-page { + -GtkNotebook-tab-overlap: 1; +} + +.notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; + border-left-width: 1px; + border-right-width: 1px; +} + +.notebook tab.reorderable-page.left, .notebook tab.reorderable-page.right { + border-bottom-width: 1px; + border-top-width: 1px; +} + +.notebook tab.top:hover, .notebook tab.top.prelight-page { + box-shadow: inset 0 -2px alpha(currentColor, 0.3); +} + +.notebook tab.top:active, .notebook tab.top.active-page { + box-shadow: inset 0 -2px #F0719B; +} + +.notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + box-shadow: inset 0 2px alpha(currentColor, 0.3); +} + +.notebook tab.bottom:active, .notebook tab.bottom.active-page { + box-shadow: inset 0 2px #F0719B; +} + +.notebook tab.left:hover, .notebook tab.left.prelight-page { + box-shadow: inset -2px 0 alpha(currentColor, 0.3); +} + +.notebook tab.left:active, .notebook tab.left.active-page { + box-shadow: inset -2px 0 #F0719B; +} + +.notebook tab.right:hover, .notebook tab.right.prelight-page { + box-shadow: inset 2px 0 alpha(currentColor, 0.3); +} + +.notebook tab.right:active, .notebook tab.right.active-page { + box-shadow: inset 2px 0 #F0719B; +} + +.notebook tab.reorderable-page.top { + border-color: transparent; +} + +.notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page { + border-color: rgba(30, 37, 65, 0.12); + border-bottom-width: 0; + border-bottom-color: transparent; + background-color: #eeffff; +} + +.notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page { + border-color: rgba(30, 37, 65, 0.12); + border-bottom-width: 0; + border-bottom-color: transparent; + background-color: #EEFFFF; +} + +.notebook tab.reorderable-page.bottom { + border-color: transparent; +} + +.notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page { + border-color: rgba(30, 37, 65, 0.12); + border-top-width: 0; + border-top-color: transparent; + background-color: #eeffff; +} + +.notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page { + border-color: rgba(30, 37, 65, 0.12); + border-top-width: 0; + border-top-color: transparent; + background-color: #EEFFFF; +} + +.notebook tab.reorderable-page.left { + border-color: transparent; +} + +.notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page { + border-color: rgba(30, 37, 65, 0.12); + border-right-width: 0; + border-right-color: transparent; + background-color: #eeffff; +} + +.notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page { + border-color: rgba(30, 37, 65, 0.12); + border-right-width: 0; + border-right-color: transparent; + background-color: #EEFFFF; +} + +.notebook tab.reorderable-page.right { + border-color: transparent; +} + +.notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page { + border-color: rgba(30, 37, 65, 0.12); + border-left-width: 0; + border-left-color: transparent; + background-color: #eeffff; +} + +.notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page { + border-color: rgba(30, 37, 65, 0.12); + border-left-width: 0; + border-left-color: transparent; + background-color: #EEFFFF; +} + +.notebook tab .label { + padding: 0 2px; + font-weight: 500; + color: rgba(29, 160, 226, 0.54); +} + +.notebook tab .prelight-page .label, .notebook tab .label.prelight-page { + color: #1E2541; +} + +.notebook tab .active-page .label, .notebook tab .label.active-page { + color: #1E2541; +} + +.notebook tab .button { + padding: 0; + background-size: 30px 30px, auto; +} + +.notebook tab .button > GtkImage { + padding: 4px; +} + +.notebook.arrow:not(:hover):not(:active) { + color: alpha(currentColor, 0.75); +} + +.notebook.arrow:insensitive { + color: rgba(30, 37, 65, 0.38); +} + +/************** + * Scrollbars * + **************/ +.scrollbar { + -GtkRange-slider-width: 17px; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 32px; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; +} + +.scrollbar .button { + border: none; +} + +.scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + -GtkRange-slider-width: 12px; +} + +.scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 3px; + border: 1px solid rgba(238, 255, 255, 0.3); +} + +.scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; +} + +.scrollbar.overlay-indicator.dragging .trough, .scrollbar.overlay-indicator.hovering .trough { + background-color: rgba(238, 255, 255, 0.9); +} + +.scrollbar .trough { + border: 1px none rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + background-clip: padding-box; +} + +.scrollbar .slider { + background-color: rgba(30, 37, 65, 0.38); +} + +.scrollbar .slider:hover { + background-color: rgba(29, 160, 226, 0.54); +} + +.scrollbar .slider:active { + background-color: #1E2541; +} + +.scrollbar .slider:insensitive { + opacity: 0.5; +} + +.scrollbar .slider { + border-radius: 100px; + margin: 4px; +} + +.scrollbar.fine-tune .slider { + margin: 6px; +} + +.scrollbar.vertical .slider { + margin-left: 5px; +} + +.scrollbar.vertical .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; +} + +.scrollbar.vertical.fine-tune .slider { + margin-left: 7px; +} + +.scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 6px; + margin-right: 7px; +} + +.scrollbar.vertical .trough { + border-left-style: solid; +} + +.scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; +} + +.scrollbar.horizontal .slider { + margin-top: 5px; +} + +.scrollbar.horizontal.fine-tune .slider { + margin-top: 7px; +} + +.scrollbar.horizontal .trough { + border-top-style: solid; +} + +.scrollbars-junction, +.scrollbars-junction.frame { + border-style: solid none none solid; + background-color: #EEFFFF; +} + +.scrollbars-junction:dir(rtl), +.scrollbars-junction.frame:dir(rtl) { + border-style: solid solid none none; +} + +/********** + * Switch * + **********/ +GtkSwitch { + -GtkSwitch-slider-width: 20px; + -GtkSwitch-slider-height: 20px; + outline-offset: -4px; + outline-radius: 100px; + font-size: 0; +} + +GtkSwitch.trough { + border: 8px solid transparent; + border-radius: 100px; + background-color: alpha(currentColor, 0.3); +} + +GtkSwitch.trough:insensitive { + color: alpha(currentColor, 0.5); +} + +GtkSwitch.trough:active { + background-color: rgba(87, 199, 255, 0.5); +} + +GtkSwitch.trough:active:insensitive { + background-color: rgba(87, 199, 255, 0.3); +} + +GtkSwitch.slider { + padding: 5px 4px; + border-radius: 100px; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; + color: #1E2541; +} + +GtkSwitch.slider:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +GtkSwitch.slider:active { + background-color: #57C7FF; +} + +GtkSwitch.slider:insensitive { + color: rgba(30, 37, 65, 0.38); + background-color: #eeffff; +} + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); +} + +.check:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover.png"), url("assets/checkbox-unchecked-hover@2.png")); +} + +.check:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active.png"), url("assets/checkbox-unchecked-active@2.png")); +} + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-disabled.png"), url("assets/checkbox-unchecked-disabled@2.png")); +} + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); +} + +.check:inconsistent:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover.png"), url("assets/checkbox-mixed-hover@2.png")); +} + +.check:inconsistent:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active.png"), url("assets/checkbox-mixed-active@2.png")); +} + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-disabled.png"), url("assets/checkbox-mixed-disabled@2.png")); +} + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); +} + +.check:checked:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover.png"), url("assets/checkbox-checked-hover@2.png")); +} + +.check:checked:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active.png"), url("assets/checkbox-checked-active@2.png")); +} + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-disabled.png"), url("assets/checkbox-checked-disabled@2.png")); +} + +.menu .menuitem.check { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-unchecked.png"), url("assets/menu-checkbox-unchecked@2.png")); +} + +.menu .menuitem.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-unchecked-disabled.png"), url("assets/menu-checkbox-unchecked-disabled@2.png")); +} + +.menu .menuitem.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-mixed.png"), url("assets/menu-checkbox-mixed@2.png")); +} + +.menu .menuitem.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-mixed-disabled.png"), url("assets/menu-checkbox-mixed-disabled@2.png")); +} + +.menu .menuitem.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-checked.png"), url("assets/menu-checkbox-checked@2.png")); +} + +.menu .menuitem.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-checked-disabled.png"), url("assets/menu-checkbox-checked-disabled@2.png")); +} + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); +} + +.radio:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover.png"), url("assets/radio-unchecked-hover@2.png")); +} + +.radio:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active.png"), url("assets/radio-unchecked-active@2.png")); +} + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-disabled.png"), url("assets/radio-unchecked-disabled@2.png")); +} + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); +} + +.radio:inconsistent:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover.png"), url("assets/radio-mixed-hover@2.png")); +} + +.radio:inconsistent:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active.png"), url("assets/radio-mixed-active@2.png")); +} + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-disabled.png"), url("assets/radio-mixed-disabled@2.png")); +} + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); +} + +.radio:checked:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover.png"), url("assets/radio-checked-hover@2.png")); +} + +.radio:checked:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active.png"), url("assets/radio-checked-active@2.png")); +} + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-disabled.png"), url("assets/radio-checked-disabled@2.png")); +} + +.menu .menuitem.radio { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-unchecked.png"), url("assets/menu-radio-unchecked@2.png")); +} + +.menu .menuitem.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-unchecked-disabled.png"), url("assets/menu-radio-unchecked-disabled@2.png")); +} + +.menu .menuitem.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-mixed.png"), url("assets/menu-radio-mixed@2.png")); +} + +.menu .menuitem.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-mixed-disabled.png"), url("assets/menu-radio-mixed-disabled@2.png")); +} + +.menu .menuitem.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-checked.png"), url("assets/menu-radio-checked@2.png")); +} + +.menu .menuitem.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-checked-disabled.png"), url("assets/menu-radio-checked-disabled@2.png")); +} + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked.png"), url("assets/selectionmode-checkbox-unchecked@2.png")); + background-color: transparent; + icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.view.content-view.check:not(.list):hover, .view.content-view.check:not(.list):active { + icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked.png"), url("assets/selectionmode-checkbox-checked@2.png")); + background-color: transparent; + icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.view.content-view.check:checked:not(.list):hover, .view.content-view.check:checked:not(.list):active { + icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 2px 4px; + outline-offset: 0; +} + +/************ + * GtkScale * + ************/ +.scale, +.scale.scale-has-marks-above.scale-has-marks-below, +.scale.vertical.scale-has-marks-above.scale-has-marks-below { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 20; + -GtkRange-trough-border: 2; + outline-offset: -8px; + outline-radius: 100px; +} + +.scale.fine-tune.slider, +.scale.scale-has-marks-above.scale-has-marks-below.fine-tune.slider, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.fine-tune.slider { + background-size: 60%; +} + +.scale.slider.slider, +.scale.scale-has-marks-above.scale-has-marks-below.slider.slider, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png")); + background-repeat: no-repeat; + background-position: center; + background-size: 70%; + box-shadow: none; +} + +.scale.slider.slider:insensitive, +.scale.scale-has-marks-above.scale-has-marks-below.slider.slider:insensitive, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-slider-disabled.png"), url("assets/scale-slider-disabled@2.png")); + background-repeat: no-repeat; + background-position: center; + background-size: 70%; + box-shadow: none; +} + +.scale.slider:hover, +.scale.scale-has-marks-above.scale-has-marks-below.slider:hover, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:hover { + background-size: 80%; +} + +.scale.slider:active, +.scale.scale-has-marks-above.scale-has-marks-below.slider:active, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:active { + background-size: 90%; +} + +.scale.trough, +.scale.scale-has-marks-above.scale-has-marks-below.trough, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough { + margin: 11px 12px; + background-color: alpha(currentColor, 0.3); +} + +.scale.trough.highlight, +.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight { + background-color: #57C7FF; +} + +.scale.trough.highlight:insensitive, +.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive { + background-color: alpha(currentColor, 0.3); +} + +.scale.trough:insensitive, +.scale.scale-has-marks-above.scale-has-marks-below.trough:insensitive, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough:insensitive { + color: rgba(30, 37, 65, 0.38); +} + +.scale.trough.vertical, +.scale.scale-has-marks-above.scale-has-marks-below.trough.vertical, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.vertical { + margin: 12px 11px; +} + +.scale.separator, +.scale.scale-has-marks-above.scale-has-marks-below.separator, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.separator { + color: alpha(currentColor, 0.3); +} + +.scale.scale-has-marks-below { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 25; + -GtkRange-trough-border: 2; +} + +.scale.scale-has-marks-below.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.scale-has-marks-below.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled.png"), url("assets/scale-horz-marks-after-slider-disabled@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.scale-has-marks-above { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 25; + -GtkRange-trough-border: 2; +} + +.scale.scale-has-marks-above.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.scale-has-marks-above.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled.png"), url("assets/scale-horz-marks-before-slider-disabled@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.vertical.scale-has-marks-below { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 25; + -GtkRange-trough-border: 2; +} + +.scale.vertical.scale-has-marks-below.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.vertical.scale-has-marks-below.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled.png"), url("assets/scale-vert-marks-after-slider-disabled@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.vertical.scale-has-marks-above { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 25; + -GtkRange-trough-border: 2; +} + +.scale.vertical.scale-has-marks-above.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.vertical.scale-has-marks-above.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled.png"), url("assets/scale-vert-marks-before-slider-disabled@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.scale-has-marks-above .trough { + margin: 16px 12px 11px; +} + +.scale.scale-has-marks-below .trough { + margin: 11px 12px 16px; +} + +.scale.vertical.scale-has-marks-above .trough { + margin: 12px 11px 12px 16px; +} + +.scale.vertical.scale-has-marks-below .trough { + margin: 12px 16px 12px 11px; +} + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + -GtkProgressBar-min-horizontal-bar-height: 4; + -GtkProgressBar-min-vertical-bar-width: 4; + padding: 0; + font-size: smaller; + color: rgba(30, 37, 65, 0.38); +} + +GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 4; +} + +GtkProgressBar.trough { + border-radius: 0; + background-color: rgba(240, 113, 155, 0.3); +} + +GtkProgressBar.trough.osd { + border-style: none; + box-shadow: none; +} + +.progressbar { + border-radius: 0; + background-color: #F0719B; +} + +.progressbar.left { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.progressbar.right { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.progressbar.left.right { + box-shadow: none; +} + +.progressbar.vertical.bottom { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + box-shadow: none; +} + +.progressbar.vertical.top { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.progressbar.osd { + background-image: none; + background-color: #F0719B; + border-style: none; + border-radius: 0; +} + +/************* + * Level Bar * + *************/ +.level-bar { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + color: rgba(30, 37, 65, 0.38); + -GtkLevelBar-min-block-width: 36; + -GtkLevelBar-min-block-height: 4; +} + +.level-bar.vertical { + -GtkLevelBar-min-block-width: 4; + -GtkLevelBar-min-block-height: 36; +} + +.level-bar.trough { + padding: 2px; + border-radius: 2px; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; + color: #1E2541; +} + +.level-bar.trough:insensitive { + color: rgba(30, 37, 65, 0.38); + background-color: #eeffff; +} + +.level-bar.trough.indicator-discrete.horizontal { + padding: 2px 1px; +} + +.level-bar.trough.indicator-discrete.vertical { + padding: 1px 2px; +} + +.level-bar.fill-block { + background-color: #F0719B; + border-radius: 0; + box-shadow: none; +} + +.level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; +} + +.level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; +} + +.level-bar.fill-block.level-high { + background-color: #00C853; +} + +.level-bar.fill-block.level-low { + background-color: #FF6D00; +} + +.level-bar.fill-block.empty-fill-block { + background-color: alpha(currentColor, 0.3); +} + +/********** + * Frames * + **********/ +.frame { + border: 1px solid rgba(30, 37, 65, 0.12); + padding: 0; +} + +.frame.flat { + border-style: none; +} + +.frame.action-bar { + padding: 6px; + border-width: 1px 0 0; +} + +GtkScrolledWindow GtkViewport.frame { + border-style: none; +} + +.separator { + color: rgba(30, 37, 65, 0.12); +} + +GtkFileChooserButton .separator.vertical, +GtkFontButton .separator.vertical { + -GtkWidget-wide-separators: true; +} + +/********* + * Lists * + *********/ +.list { + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +.list-row, +.grid-child { + padding: 2px; +} + +.list-row.activatable, .view, column-header .button { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0; + box-shadow: inset 0 0 0 10000px alpha(currentColor, 0); + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); + background-repeat: no-repeat; + background-position: center, center; + background-size: 240px 240px, auto; +} + +.list-row.activatable:hover, .view:hover, column-header .button:hover { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, box-shadow 0; + box-shadow: inset 0 0 0 10000px alpha(currentColor, 0.05); +} + +.list-row.activatable:active, .view:active, column-header .button:active, GtkPlacesSidebar.sidebar .has-open-popup { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-image 0; + animation: list_ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 10000px alpha(currentColor, 0.15); +} + +.list-row:selected .button:insensitive { + color: rgba(30, 37, 65, 0.3); +} + +.list-row:selected .button.flat { + color: rgba(30, 37, 65, 0.7); +} + +.list-row:selected .button.flat:hover, .list-row:selected .button.flat:active { + color: #1E2541; +} + +.list-row:selected .button.flat:insensitive { + color: rgba(30, 37, 65, 0.3); +} + +/********************* + * App Notifications * + *********************/ +/************* + * Expanders * + *************/ +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.expander:not(:hover):not(:active) { + color: alpha(currentColor, 0.75); +} + +.expander:selected { + color: #1E2541; +} + +/************ + * Calendar * + ***********/ +GtkCalendar { + padding: 1px; + border: 1px solid rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +GtkCalendar:insensitive { + color: rgba(30, 37, 65, 0.38); +} + +GtkCalendar:selected { + border-radius: 3px; +} + +GtkCalendar.header { + border-style: none none solid; + border-radius: 0; +} + +GtkCalendar:inconsistent { + color: alpha(currentColor, 0.5); +} + +GtkCalendar.highlight { + font-size: smaller; + color: alpha(currentColor, 0.6); +} + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; +} + +.message-dialog.background { + background-color: #EEFFFF; +} + +.message-dialog .titlebar { + border-style: none; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +.message-dialog.csd.background { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +.message-dialog.csd .dialog-action-area .button { + padding: 9px 16px 10px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; + background-size: 240px 240px, auto; +} + +.message-dialog.csd .dialog-action-area .button:first-child { + border-radius: 0 0 0 2px; +} + +.message-dialog.csd .dialog-action-area .button:last-child { + border-radius: 0 0 2px 0; +} + +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #EEFFFF; +} + +GtkSidebarRow.list-row { + padding: 0px; +} + +GtkSidebarRow .sidebar-revealer { + padding: 4px 14px 4px 12px; +} + +GtkSidebarRow .sidebar-icon { + opacity: 0.6; +} + +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; +} + +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; +} + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #F0719B; +} + +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + color: #57C7FF; +} + +.sidebar-button.button.image-button { + padding: 4px; +} + +.sidebar-item { + padding: 10px 4px; +} + +.sidebar-item > .label { + padding-left: 6px; + padding-right: 6px; +} + +/**************** + * File chooser * + ****************/ +GtkPlacesView .server-list-button > GtkImage { + -gtk-icon-transform: rotate(0turn); +} + +GtkPlacesView .server-list-button:checked > GtkImage { + -gtk-icon-transform: rotate(-0.5turn); +} + +/********* + * Paned * + *********/ +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; +} + +GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; +} + +GtkPaned .pane-separator { + background-color: rgba(30, 37, 65, 0.12); +} + +GtkPaned.wide { + -GtkPaned-handle-size: 6; + margin: 0; +} + +GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none solid; + border-color: rgba(30, 37, 65, 0.12); + border-width: 1px; +} + +GtkPaned.wide.vertical .pane-separator { + border-style: solid none; +} + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; +} + +.info { + background-color: #66BB6A; +} + +.question { + background-color: #F0719B; +} + +.warning { + background-color: #FFA726; +} + +.error { + background-color: #EF5350; +} + +.info, +.question, +.warning, +.error { + color: #1E2541; +} + +.info .button:insensitive, +.question .button:insensitive, +.warning .button:insensitive, +.error .button:insensitive { + color: rgba(30, 37, 65, 0.3); +} + +/************ + * Tooltips * + ************/ +.tooltip { + color: #1E2541; + padding: 4px; + /* not working */ + border-radius: 2px; + box-shadow: none; +} + +.tooltip.background { + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: rgba(238, 255, 255, 0.9); +} + +.tooltip.window-frame.csd { + background-color: transparent; +} + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; +} + +/***************** + * Color Chooser * + *****************/ +GtkColorSwatch { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +GtkColorSwatch:insensitive { + opacity: 0.5; + box-shadow: none; +} + +GtkColorSwatch.top { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +GtkColorSwatch.bottom { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +GtkColorSwatch.left, GtkColorSwatch:first-child:not(.overlay):not(.top) { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} + +GtkColorSwatch.right, GtkColorSwatch:last-child:not(.overlay):not(.bottom) { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} + +GtkColorSwatch:only-child:not(.overlay) { + border-radius: 2px; +} + +GtkColorSwatch.top > .overlay { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +GtkColorSwatch.bottom > .overlay { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +GtkColorSwatch:first-child:not(.top) > .overlay { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} + +GtkColorSwatch:last-child:not(.bottom) > .overlay { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} + +GtkColorSwatch:only-child > .overlay { + border-radius: 2px; +} + +GtkColorSwatch:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +GtkColorEditor GtkColorSwatch { + border-radius: 2px; +} + +GtkColorEditor GtkColorSwatch:hover { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +GtkColorSwatch.color-dark { + color: #EEFFFF; +} + +GtkColorSwatch.color-light { + color: #1E2541; +} + +GtkColorSwatch#add-color-button { + background-image: linear-gradient(to right, #EF5350 25%, #FFA726 25%, #FFA726 50%, #66BB6A 50%, #66BB6A 75%, #F0719B 75%); + color: #EEFFFF; +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #EEFFFF; +} + +.scale-popup .button { + padding: 10px; +} + +/********************** + * Window Decorations * + *********************/ +.window-frame { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 2px 2px 0 0; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); + /* this is used for the resize cursor area */ + margin: 8px; +} + +.window-frame:backdrop { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.window-frame.tiled { + border-radius: 0; +} + +.window-frame.popup { + box-shadow: none; +} + +.window-frame.ssd { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} + +.window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.window-frame.csd.message-dialog { + border-radius: 2px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +.window-frame.csd.message-dialog:backdrop { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.window-frame.solid-csd { + border-radius: 0; + margin: 0; + background-color: #EEFFFF; + box-shadow: none; +} + +.header-bar .button.titlebutton:active, +.titlebar .button.titlebutton:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); +} + +.view:selected, GtkCalendar:selected, .label:selected, .grid-child:selected, .entry:selected, .menuitem.button.flat:selected, .list-row:selected, .sidebar:selected { + background-color: #F0719B; + color: #1E2541; +} + +.view:insensitive:selected, GtkCalendar:insensitive:selected, .label:insensitive:selected, .grid-child:insensitive:selected, .entry:insensitive:selected, .menuitem.button.flat:insensitive:selected, .list-row:insensitive:selected, .sidebar:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label { + color: rgba(30, 37, 65, 0.5); +} + +.monospace { + font: Monospace; +} + +/********************** + * Touch Copy & Paste * + *********************/ +.entry.cursor-handle, +.cursor-handle { + background-color: #57C7FF; + background-image: none; + box-shadow: none; + border-style: none; +} + +.entry.cursor-handle.top:dir(ltr), .entry.cursor-handle.bottom:dir(rtl), +.cursor-handle.top:dir(ltr), +.cursor-handle.bottom:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start.png"), url("assets/text-select-start@2.png")); + padding-left: 10px; +} + +.entry.cursor-handle.bottom:dir(ltr), .entry.cursor-handle.top:dir(rtl), +.cursor-handle.bottom:dir(ltr), +.cursor-handle.top:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end.png"), url("assets/text-select-end@2.png")); + padding-right: 10px; +} + +.entry.cursor-handle.insertion-cursor:dir(ltr), .entry.cursor-handle.insertion-cursor:dir(rtl), +.cursor-handle.insertion-cursor:dir(ltr), +.cursor-handle.insertion-cursor:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); +} + +.entry.cursor-handle.top:hover:dir(ltr), .entry.cursor-handle.bottom:hover:dir(rtl), +.cursor-handle.top:hover:dir(ltr), +.cursor-handle.bottom:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start-hover.png"), url("assets/text-select-start-hover@2.png")); + padding-left: 10px; +} + +.entry.cursor-handle.bottom:hover:dir(ltr), .entry.cursor-handle.top:hover:dir(rtl), +.cursor-handle.bottom:hover:dir(ltr), +.cursor-handle.top:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end-hover.png"), url("assets/text-select-end-hover@2.png")); + padding-right: 10px; +} + +.entry.cursor-handle.insertion-cursor:hover:dir(ltr), .entry.cursor-handle.insertion-cursor:hover:dir(rtl), +.cursor-handle.insertion-cursor:hover:dir(ltr), +.cursor-handle.insertion-cursor:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider-hover.png"), url("assets/scale-horz-marks-before-slider-hover@2.png")); +} + +.entry.cursor-handle.top:active:dir(ltr), .entry.cursor-handle.bottom:active:dir(rtl), +.cursor-handle.top:active:dir(ltr), +.cursor-handle.bottom:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start-active.png"), url("assets/text-select-start-active@2.png")); + padding-left: 10px; +} + +.entry.cursor-handle.bottom:active:dir(ltr), .entry.cursor-handle.top:active:dir(rtl), +.cursor-handle.bottom:active:dir(ltr), +.cursor-handle.top:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end-active.png"), url("assets/text-select-end-active@2.png")); + padding-right: 10px; +} + +.entry.cursor-handle.insertion-cursor:active:dir(ltr), .entry.cursor-handle.insertion-cursor:active:dir(rtl), +.cursor-handle.insertion-cursor:active:dir(ltr), +.cursor-handle.insertion-cursor:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider-active.png"), url("assets/scale-horz-marks-before-slider-active@2.png")); +} + +/* Decouple the font of context menus from their entry/textview */ +.context-menu { + font: initial; +} + +.touch-selection { + font: initial; + color: #1E2541; + background-color: #EEFFFF; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.touch-selection:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; +} + +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; +} + +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; +} + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-top: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left top; +} + +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-bottom: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left bottom; +} + +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +.floating-bar { + padding: 3px 0 4px; + border-width: 1px; + border-style: solid solid none; + border-color: rgba(30, 37, 65, 0.12); + border-radius: 3px 3px 0 0; + background-color: #EEFFFF; + background-clip: padding-box; +} + +.floating-bar.left { + border-left-style: none; + border-top-left-radius: 0; +} + +.floating-bar.right { + border-right-style: none; + border-top-right-radius: 0; +} + +.floating-bar .button { + padding: 4px; +} + +/************ + * Nautilus * + ************/ +EelEditableLabel.entry { + transition: none; +} + +.nautilus-desktop.nautilus-canvas-item { + color: #1E2541; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.nautilus-desktop.nautilus-canvas-item:selected { + text-shadow: none; +} + +/* Toolbar */ +@keyframes needs_attention_keyframes { + 0% { + background-color: transparent; + } + 50% { + background-color: alpha(currentColor, 0.3); + } + 100% { + background-color: transparent; + } +} + +.nautilus-operations-button-needs-attention { + color: #57C7FF; + animation: needs_attention_keyframes 2s cubic-bezier(0.4, 0, 0.2, 1); +} + +.nautilus-operations-button-needs-attention-multiple { + color: #57C7FF; + animation: needs_attention_keyframes 2s cubic-bezier(0.4, 0, 0.2, 1); + animation-iteration-count: 2; +} + +.disk-space-display.unknown { + background-color: #FF6D00; +} + +.disk-space-display.used { + background-color: #F0719B; +} + +.disk-space-display.free { + background-color: alpha(currentColor, 0.3); + color: rgba(30, 37, 65, 0.38); +} + +/* View */ +/************** + * Tweak Tool * + **************/ +.tweak-categories { + background-color: #EEFFFF; + background-image: linear-gradient(to bottom, #EEFFFF); +} + +.tweak-categories .separator { + -GtkWidget-wide-separators: true; + color: transparent; +} + +/************ + * Software * + ************/ +.button.install-progress:insensitive { + background-color: alpha(currentColor, 0.3); +} + +/*********** + * Builder * + ***********/ +GbTerminalView { + background-color: #EEFFFF; +} + +/*********** + * Firefox * + ***********/ +.menubar { + color: rgba(30, 37, 65, 0.54); +} + +.menubar:hover { + color: #1E2541; +} + +/*********** + * Synapse * + ***********/ +SynapseGuiMatchListView GtkWidget:selected { + background-color: #F0719B; +} + +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #F0719B; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration.top { + padding: 0 2px; + border-style: none; + border-radius: 2px 2px 0 0; + box-shadow: inset 0 1px #EEFFFF; + background-color: #EEFFFF; + color: #1E2541; +} + +UnityDecoration.top:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +UnityDecoration.menuitem, +UnityDecoration .menuitem { + color: alpha(currentColor, 0.75); +} + +UnityDecoration.menubar.menuitem:hover, +UnityDecoration.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: currentColor; +} + +.background:not(.csd) :not(.titlebar) .header-bar { + border-radius: 0; + box-shadow: none; +} + +.background:not(.csd) :not(.titlebar) .header-bar.inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #eeffff; + background-image: linear-gradient(to bottom, #eeffff); + color: #1E2541; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: alpha(currentColor, 0.75); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: currentColor; +} + +@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: #F0719B; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #1E2541; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #1E2541; +/* +widget base background color */ +@define-color theme_bg_color #EEFFFF; +/* +text widgets and the like base background color */ +@define-color theme_base_color #EEFFFF; +/* +base background color of selections */ +@define-color theme_selected_bg_color #F0719B; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #1E2541; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #EEFFFF; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(30, 37, 65, 0.38); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #eeffff; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #1E2541; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #1E2541; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #EEFFFF; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #EEFFFF; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #F0719B; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #1E2541; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(30, 37, 65, 0.38); +/* +widgets main borders color */ +@define-color borders rgba(30, 37, 65, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(30, 37, 65, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #FF6D00; +@define-color error_color #DD2C00; +@define-color success_color #00C853; +/* +FIXME this is really an API */ +@define-color content_view_bg #EEFFFF; +@define-color placeholder_text_color #7e8998; diff --git a/gtk/manta/gtk-3.20/assets b/gtk/manta/gtk-3.20/assets new file mode 120000 index 0000000..ac77667 --- /dev/null +++ b/gtk/manta/gtk-3.20/assets @@ -0,0 +1 @@ +../gtk-assets \ No newline at end of file diff --git a/gtk/manta/gtk-3.20/gtk.css b/gtk/manta/gtk-3.20/gtk.css new file mode 100644 index 0000000..b4f2411 --- /dev/null +++ b/gtk/manta/gtk-3.20/gtk.css @@ -0,0 +1,5834 @@ +@keyframes ripple_effect { + to { + background-size: 1000% 1000%; + } +} + +@keyframes header_ripple_effect { + from { + background-image: radial-gradient(circle farthest-corner at center, #F0719B 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle farthest-corner at center, #F0719B 100%, transparent 0%); + } +} + +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #DD2C00; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + outline-style: solid; + outline-width: 2px; + outline-color: transparent; + outline-offset: -4px; + -gtk-outline-radius: 2px; + -gtk-secondary-caret-color: #F0719B; +} + +switch:focus slider, +notebook:focus tab, +*:focus { + outline-color: alpha(currentColor, 0.3); +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #EEFFFF; + color: #1E2541; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #EEFFFF; + color: #1E2541; +} + +.gtkstyle-fallback:hover { + background-color: #d5ffff; + color: #1E2541; +} + +.gtkstyle-fallback:active { + background-color: #bbffff; + color: #1E2541; +} + +.gtkstyle-fallback:disabled { + background-color: #EEFFFF; + color: rgba(30, 37, 65, 0.38); +} + +.gtkstyle-fallback:selected { + background-color: #F0719B; + color: #1E2541; +} + +.view { + background-color: #EEFFFF; + color: #1E2541; +} + +.view:disabled { + color: rgba(30, 37, 65, 0.38); +} + +.view:hover, .view:active, .view:selected { + border-radius: 2px; +} + +textview text { + background-color: #EEFFFF; +} + +textview border { + background-color: #eeffff; + color: rgba(30, 37, 65, 0.38); +} + +.rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband { + border: 1px solid #ff91bb; + background-color: rgba(255, 145, 187, 0.3); +} + +flowbox flowboxchild { + padding: 4px; + border-radius: 2px; +} + +.content-view .tile:selected { + background-color: transparent; + color: inherit; +} + +label { + caret-color: currentColor; +} + +label.separator { + color: #1E2541; +} + +label selection { + background-color: #F0719B; + color: #1E2541; +} + +label:disabled { + color: rgba(30, 37, 65, 0.38); +} + +tab label:disabled, +button label:disabled { + color: inherit; +} + +.dim-label, label.separator, .titlebar:not(headerbar) .subtitle, +headerbar .subtitle, .budgie-notification .notification-body, .budgie-switcher .notification-body { + opacity: 0.6; +} + +assistant .sidebar { + padding: 4px 0; +} + +assistant .sidebar label { + min-height: 32px; + padding: 0 12px; + color: rgba(30, 37, 65, 0.38); + font-weight: 500; +} + +assistant .sidebar label.highlight { + color: #1E2541; +} + +popover.background.touch-selection, popover.background.magnifier, popover.background.osd, .app-notification, .osd .scale-popup, .nautilus-window .floating-bar, .osd { + opacity: 0.9; +} + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); + } +} + +spinner { + background: none; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); +} + +spinner:checked { + opacity: 1; + animation: spin 1s linear infinite; +} + +spinner:checked:disabled { + opacity: 0.5; +} + +/**************** + * Text Entries * + ****************/ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding: 0 8px; + border-radius: 2px; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; + color: #1E2541; +} + +spinbutton:focus:not(.vertical), +entry:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #eeffff; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) entry:not(.search), +notebook > stack:not(:only-child) spinbutton:not(.vertical), messagedialog entry, colorchooser .popover.osd spinbutton:not(.vertical), layoutpane entry.search, editortweak entry.search, .raven .raven-background spinbutton:not(.vertical), #login_window entry, +entry.flat { + border-radius: 0; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.26); + background-color: transparent; + color: #1E2541; +} + +spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry:focus:not(.search), +notebook > stack:not(:only-child) spinbutton:focus:not(.vertical), messagedialog entry:focus, colorchooser .popover.osd spinbutton:focus:not(.vertical), layoutpane entry.search:focus, editortweak entry.search:focus, .raven .raven-background spinbutton:focus:not(.vertical), #login_window entry:focus, +entry.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.26); +} + +spinbutton.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton:disabled:not(.vertical), messagedialog entry:disabled, colorchooser .popover.osd spinbutton:disabled:not(.vertical), layoutpane entry.search:disabled, editortweak entry.search:disabled, .raven .raven-background spinbutton:disabled:not(.vertical), #login_window entry:disabled, +entry.flat:disabled { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton:not(.vertical) image, +entry image { + color: rgba(29, 160, 226, 0.54); +} + +spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active, +entry image:hover, +entry image:active { + color: #1E2541; +} + +spinbutton:not(.vertical) image:disabled, +entry image:disabled { + color: rgba(30, 37, 65, 0.38); +} + +spinbutton:not(.vertical) image.left, +entry image.left { + margin-left: 0px; + margin-right: 6px; +} + +spinbutton:not(.vertical) image.right, +entry image.right { + margin-left: 6px; + margin-right: 0px; +} + +spinbutton:not(.vertical) undershoot.left, +entry undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +spinbutton:not(.vertical) undershoot.right, +entry undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +spinbutton.error:not(.vertical), +entry.error { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #DD2C00; + color: #1E2541; +} + +spinbutton.error:focus:not(.vertical), +entry.error:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #eeffff; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.error.flat:not(.vertical), notebook > stack:not(:only-child) entry.error:not(.search), +notebook > stack:not(:only-child) spinbutton.error:not(.vertical), messagedialog entry.error, colorchooser .popover.osd spinbutton.error:not(.vertical), layoutpane entry.error.search, editortweak entry.error.search, .raven .raven-background spinbutton.error:not(.vertical), #login_window entry.error, +entry.error.flat { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #DD2C00 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px #DD2C00; + background-color: transparent; + color: #1E2541; +} + +spinbutton.error.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.error:focus:not(.search), +notebook > stack:not(:only-child) spinbutton.error:focus:not(.vertical), messagedialog entry.error:focus, colorchooser .popover.osd spinbutton.error:focus:not(.vertical), layoutpane entry.error.search:focus, editortweak entry.error.search:focus, .raven .raven-background spinbutton.error:focus:not(.vertical), #login_window entry.error:focus, +entry.error.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #DD2C00 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px #DD2C00; +} + +spinbutton.error.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.error:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton.error:disabled:not(.vertical), messagedialog entry.error:disabled, colorchooser .popover.osd spinbutton.error:disabled:not(.vertical), layoutpane entry.error.search:disabled, editortweak entry.error.search:disabled, .raven .raven-background spinbutton.error:disabled:not(.vertical), #login_window entry.error:disabled, +entry.error.flat:disabled { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.error:not(.vertical) image, +entry.error image { + color: rgba(30, 37, 65, 0.7); +} + +spinbutton.error:not(.vertical) image:hover, spinbutton.error:not(.vertical) image:active, +entry.error image:hover, +entry.error image:active { + color: #1E2541; +} + +spinbutton.error:not(.vertical) image:disabled, +entry.error image:disabled { + color: rgba(30, 37, 65, 0.5); +} + +spinbutton.warning:not(.vertical), +entry.warning { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #FF6D00; + color: #1E2541; +} + +spinbutton.warning:focus:not(.vertical), +entry.warning:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #eeffff; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.warning.flat:not(.vertical), notebook > stack:not(:only-child) entry.warning:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:not(.vertical), messagedialog entry.warning, colorchooser .popover.osd spinbutton.warning:not(.vertical), layoutpane entry.warning.search, editortweak entry.warning.search, .raven .raven-background spinbutton.warning:not(.vertical), #login_window entry.warning, +entry.warning.flat { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FF6D00 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px #FF6D00; + background-color: transparent; + color: #1E2541; +} + +spinbutton.warning.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.warning:focus:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:focus:not(.vertical), messagedialog entry.warning:focus, colorchooser .popover.osd spinbutton.warning:focus:not(.vertical), layoutpane entry.warning.search:focus, editortweak entry.warning.search:focus, .raven .raven-background spinbutton.warning:focus:not(.vertical), #login_window entry.warning:focus, +entry.warning.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FF6D00 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px #FF6D00; +} + +spinbutton.warning.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.warning:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:disabled:not(.vertical), messagedialog entry.warning:disabled, colorchooser .popover.osd spinbutton.warning:disabled:not(.vertical), layoutpane entry.warning.search:disabled, editortweak entry.warning.search:disabled, .raven .raven-background spinbutton.warning:disabled:not(.vertical), #login_window entry.warning:disabled, +entry.warning.flat:disabled { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.warning:not(.vertical) image, +entry.warning image { + color: rgba(30, 37, 65, 0.7); +} + +spinbutton.warning:not(.vertical) image:hover, spinbutton.warning:not(.vertical) image:active, +entry.warning image:hover, +entry.warning image:active { + color: #1E2541; +} + +spinbutton.warning:not(.vertical) image:disabled, +entry.warning image:disabled { + color: rgba(30, 37, 65, 0.5); +} + +spinbutton:not(.vertical) progress, +entry progress { + margin: 2px -6px; + border-bottom: 2px solid #F0719B; + background-color: transparent; +} + +.linked:not(.vertical) > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) .linked:not(.vertical) > entry:not(.search), +notebook > stack:not(:only-child) .linked:not(.vertical) > spinbutton:not(.vertical), messagedialog .linked:not(.vertical) > entry, colorchooser .popover.osd .linked:not(.vertical) > spinbutton:not(.vertical), layoutpane .linked:not(.vertical) > entry.search, editortweak .linked:not(.vertical) > entry.search, .raven .raven-background .linked:not(.vertical) > spinbutton:not(.vertical), #login_window .linked:not(.vertical) > entry, +.linked.vertical > spinbutton.flat:not(.vertical), +notebook > stack:not(:only-child) .linked.vertical > entry:not(.search), +notebook > stack:not(:only-child) .linked.vertical > spinbutton:not(.vertical), +messagedialog .linked.vertical > entry, +colorchooser .popover.osd .linked.vertical > spinbutton:not(.vertical), +layoutpane .linked.vertical > entry.search, +editortweak .linked.vertical > entry.search, +.raven .raven-background .linked.vertical > spinbutton:not(.vertical), +#login_window .linked.vertical > entry, .linked:not(.vertical) > +entry.flat, +.linked.vertical > +entry.flat { + border-radius: 0; +} + +treeview entry.flat, treeview entry { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: #EEFFFF; +} + +treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .documents-entry-tag, .photos-entry-tag { + margin: 4px; + border-radius: 9999px; + box-shadow: none; + background-color: #F0719B; + color: #1E2541; +} + +.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag { + margin-left: 8px; + margin-right: -4px; + padding-left: 8px; + padding-right: 4px; +} + +:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag { + margin-left: -4px; + margin-right: 8px; + padding-left: 4px; + padding-right: 8px; +} + +.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active) { + color: rgba(30, 37, 65, 0.7); +} + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#57C7FF), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#57C7FF), to(transparent)); + } +} + + +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 2px; + font-weight: 500; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1), background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 9999px transparent; + background-color: #EEFFFF; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #1DA0E2; +} + + +button:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px transparent; + color: #1E2541; +} + + +button:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px alpha(currentColor, 0.15); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%); + background-size: 0% 0%; + color: #1E2541; +} + + +button:disabled { + box-shadow: none; + background-color: rgba(30, 37, 65, 0.12); + color: rgba(29, 160, 226, 0.26); +} + + +button:checked { + background-color: #F0719B; + color: #1E2541; +} + + +button:checked:disabled { + background-color: rgba(240, 113, 155, 0.3); + color: rgba(240, 113, 155, 0.5); +} + +modelbutton.flat, +.menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, popover.background.menu button, +popover.background button.model, notebook > header > tabs > arrow, scrollbar button, check, +radio, calendar.button, messagedialog.csd .dialog-action-area button, button.sidebar-button, .gedit-search-slider button, #mate-menu button, .budgie-settings-window buttonbox.inline-toolbar button, .raven .raven-header:not(.top) button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, .lightdm-gtk-greeter button, :not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) .path-bar button, layouttabbar button, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, toolbar button, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button, +button.flat { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px transparent; + background-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: rgba(29, 160, 226, 0.54); +} + +modelbutton.flat:hover, +.menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, spinbutton.vertical button:hover, popover.background.menu button:hover, +popover.background button.model:hover, notebook > header > tabs > arrow:hover, scrollbar button:hover, check:hover, +radio:hover, calendar.button:hover, messagedialog.csd .dialog-action-area button:hover, button.sidebar-button:hover, .gedit-search-slider button:hover, #mate-menu button:hover, .budgie-settings-window buttonbox.inline-toolbar button:hover, .raven .raven-header:not(.top) button:hover, .drop-shadow button:hover, .budgie-session-dialog .linked.horizontal > button:hover, .lightdm-gtk-greeter button:hover, :not(headerbar) .caja-pathbar button:hover, .caja-pathbar :not(headerbar) button:hover, :not(headerbar) .path-bar button:hover, layouttabbar button:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, toolbar button:hover, .titlebar:not(headerbar) button:hover:not(.suggested-action):not(.destructive-action), +headerbar button:hover:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:hover, +button.flat:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15); + color: #1E2541; +} + +modelbutton.flat:active, +.menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, popover.background.menu button:active, +popover.background button.model:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active, +radio:active, calendar.button:active, messagedialog.csd .dialog-action-area button:active, button.sidebar-button:active, .gedit-search-slider button:active, #mate-menu button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, .raven .raven-header:not(.top) button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, .lightdm-gtk-greeter button:active, :not(headerbar) .caja-pathbar button:active, .caja-pathbar :not(headerbar) button:active, :not(headerbar) .path-bar button:active, layouttabbar button:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, toolbar button:active, .titlebar:not(headerbar) button:active:not(.suggested-action):not(.destructive-action), +headerbar button:active:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:active, +button.flat:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%); + background-size: 0% 0%; + color: #1E2541; +} + +modelbutton.flat:disabled, +.menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, popover.background.menu button:disabled, +popover.background button.model:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled, +radio:disabled, calendar.button:disabled, messagedialog.csd .dialog-action-area button:disabled, button.sidebar-button:disabled, .gedit-search-slider button:disabled, #mate-menu button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, .raven .raven-header:not(.top) button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, .lightdm-gtk-greeter button:disabled, :not(headerbar) .caja-pathbar button:disabled, .caja-pathbar :not(headerbar) button:disabled, :not(headerbar) .path-bar button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, toolbar button:disabled, .titlebar:not(headerbar) button:disabled:not(.suggested-action):not(.destructive-action), +headerbar button:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:disabled, +button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(29, 160, 226, 0.26); +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .path-bar button:checked, layouttabbar button:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, toolbar button:checked, .titlebar:not(headerbar) button:checked:not(.suggested-action):not(.destructive-action), +headerbar button:checked:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked, +button.flat:checked { + background-color: rgba(30, 37, 65, 0.26); + color: #1E2541; +} + +:not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) .path-bar button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, toolbar button:checked:disabled, .titlebar:not(headerbar) button:checked:disabled:not(.suggested-action):not(.destructive-action), +headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked:disabled, +button.flat:checked:disabled { + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + + +button.text-button { + padding-left: 16px; + padding-right: 16px; +} + + +button.image-button { + min-width: 24px; + padding: 4px; +} + + +button.text-button.image-button { + border-radius: 2px; + -gtk-outline-radius: 2px; +} + + +button.text-button.image-button label:first-child { + margin-left: 12px; +} + + +button.text-button.image-button label:last-child { + margin-right: 12px; +} + + +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} + +toolbar .linked > button, .titlebar:not(headerbar) .linked > button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button, +toolbar .linked.vertical > button, +.titlebar:not(headerbar) .linked.vertical > button:not(.suggested-action):not(.destructive-action), +headerbar .linked.vertical > button:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box .linked.vertical > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), +.app-notification .linked.vertical > button, .linked > +button.flat, +.linked.vertical > +button.flat { + border-radius: 2px; +} + +toolbar .linked > button.text-button.image-button, .titlebar:not(headerbar) .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.text-button.image-button, +toolbar .linked.vertical > button.text-button.image-button, +.titlebar:not(headerbar) .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), +.app-notification .linked.vertical > button.text-button.image-button, .linked > +button.flat.text-button.image-button, +.linked.vertical > +button.flat.text-button.image-button { + border-radius: 2px; + -gtk-outline-radius: 2px; +} + +infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, row:selected +button:disabled { + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.3); +} + +row:selected button.sidebar-button, infobar.info button.flat, infobar.question button.flat, infobar.warning button.flat, infobar.error button.flat, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, .raven-mpris button.image-button, row:selected +button.flat { + color: rgba(30, 37, 65, 0.7); +} + +row:selected button.sidebar-button:hover, infobar.info button.flat:hover, infobar.question button.flat:hover, infobar.warning button.flat:hover, infobar.error button.flat:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, .raven-mpris button.image-button:hover, row:selected button.sidebar-button:active, infobar.info button.flat:active, infobar.question button.flat:active, infobar.warning button.flat:active, infobar.error button.flat:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, .raven-mpris button.image-button:active, row:selected +button.flat:hover, row:selected +button.flat:active { + color: #1E2541; +} + +row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.question button.flat:disabled, infobar.warning button.flat:disabled, infobar.error button.flat:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, .raven-mpris button.image-button:disabled, row:selected +button.flat:disabled { + color: rgba(30, 37, 65, 0.3); +} + +row:selected button.sidebar-button:checked, infobar.info button.flat:checked, infobar.question button.flat:checked, infobar.warning button.flat:checked, infobar.error button.flat:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, .raven-mpris button.image-button:checked, row:selected +button.flat:checked { + background-color: rgba(30, 37, 65, 0.3); + color: #1E2541; +} + +row:selected button.sidebar-button:checked:disabled, infobar.info button.flat:checked:disabled, infobar.question button.flat:checked:disabled, infobar.warning button.flat:checked:disabled, infobar.error button.flat:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .raven-mpris button.image-button:checked:disabled, row:selected +button.flat:checked:disabled { + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.5); +} + + +button.osd { + padding: 10px 14px; +} + + +button.osd.image-button { + padding: 10px; +} + + +button.osd:disabled { + opacity: 0; +} + + +button.suggested-action { + background-color: #57C7FF; + color: #1E2541; +} + + +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + + +button.suggested-action:checked { + background-color: #4696c6; +} + + +button.suggested-action.flat { + background-color: transparent; + color: #57C7FF; +} + + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + + +button.suggested-action.flat:checked { + background-color: rgba(87, 199, 255, 0.3); +} + + +button.destructive-action { + background-color: #FF5252; + color: #1E2541; +} + + +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + + +button.destructive-action:checked { + background-color: #bc454d; +} + + +button.destructive-action.flat { + background-color: transparent; + color: #FF5252; +} + + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + + +button.destructive-action.flat:checked { + background-color: rgba(255, 82, 82, 0.3); +} + +.stack-switcher > +button { + outline-offset: -4px; +} + +.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:checked > label, +.stack-switcher > +button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +.primary-toolbar +button { + -gtk-icon-shadow: none; +} + + +button.image-button, toolbar .linked > button.image-button, .titlebar:not(headerbar) .linked > button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.image-button, toolbar .linked.vertical > button.image-button, +headerbar .linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action), .app-notification .linked.vertical > button.image-button, .linked > button.flat.image-button, +.linked.vertical > button.flat.image-button, .inline-toolbar button:not(.text-button), check, +radio, button.titlebutton, .nautilus-window headerbar > revealer > button, .raven .raven-header:not(.top) button.image-button, .raven .expander-button, +button.close, +button.circular { + border-radius: 9999px; + -gtk-outline-radius: 9999px; +} + +spinbutton:not(.vertical) button, notebook > header tab button.flat, button.sidebar-button, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider button:dir(ltr), .gedit-search-slider button:dir(rtl), .pluma-window paned.horizontal box.vertical box.horizontal button.flat { + min-height: 20px; + min-width: 20px; + padding: 0; + border-radius: 9999px; + -gtk-outline-radius: 9999px; +} + +.stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { + animation: needs_attention 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +.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; +} + +.linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > button, .linked:not(.vertical) > combobox > box > button.combo { + border-radius: 0; + -gtk-outline-radius: 2px; +} + +.linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} + +.linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} + +.linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo { + border-radius: 2px; +} + +.linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button, .linked.vertical > combobox > box > button.combo { + border-radius: 0; + -gtk-outline-radius: 2px; +} + +.linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +.linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +.linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo { + border-radius: 2px; +} + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 2px; + color: inherit; +} + +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 { + min-height: 20px; + min-width: 20px; + padding: 6px; +} + +/********* + * Links * + *********/ +*:link, button:link, +button:visited, *:link:hover, button:hover:link, +button:hover:visited, *:link:active, button:active:link, +button:active:visited { + color: #F0719B; +} + +*:link:visited, +button:visited, *:link:visited:hover, +button:visited:hover, *:link:visited:active, +button:visited:active { + color: #E040FB; +} + +infobar.info *:link, infobar.info button:link, +infobar.info button:visited, infobar.question *:link, infobar.question button:link, +infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, +infobar.warning button:visited, infobar.error *:link, infobar.error button:link, +infobar.error button:visited, *:link:selected, button:selected:link, +button:selected:visited, .selection-mode.titlebar:not(headerbar) .subtitle:link, +headerbar.selection-mode .subtitle:link, +*:selected *:link, +*:selected button:link, +*:selected button:visited { + color: #1E2541; +} + +button:link > label, +button:visited > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton:not(.vertical) { + padding: 0; +} + +notebook > stack:not(:only-child) spinbutton:not(.vertical) entry, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:focus, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:disabled, +spinbutton:not(.vertical) entry { + min-width: 28px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +spinbutton:not(.vertical) button { + border: solid 6px transparent; +} + +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -3px; +} + +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -3px; +} + +spinbutton.vertical:disabled { + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.vertical:drop(active) { + box-shadow: none; +} + +spinbutton.vertical entry { + min-height: 32px; + min-width: 44px; + padding: 0; +} + +spinbutton.vertical button { + min-height: 32px; + min-width: 44px; + padding: 0; +} + +spinbutton.vertical button.up { + border-radius: 2px 2px 0 0; +} + +spinbutton.vertical button.down { + border-radius: 0 0 2px 2px; +} + +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} + +treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; +} + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +combobox decoration, +combobox button.combo:checked { + transition: none; +} + +combobox button.combo cellview:dir(ltr) { + margin-left: 0px; +} + +combobox button.combo cellview:dir(rtl) { + margin-right: 0px; +} + +combobox #gtk-combobox-popup-menu { + padding: 2px 0; +} + +combobox #gtk-combobox-popup-menu menuitem { + min-height: 28px; + padding: 0 8px; +} + +combobox #gtk-combobox-popup-menu > arrow.top { + margin-top: -2px; +} + +combobox #gtk-combobox-popup-menu > arrow.bottom { + margin-bottom: -6px; +} + +combobox:drop(active) { + box-shadow: none; +} + +notebook > stack:not(:only-child) button.combo, .raven .raven-background button.combo, #login_window #user_combobox button { + border-radius: 0; + background-image: none; + font-weight: inherit; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.26); + background-color: transparent; + color: #1E2541; +} + +notebook > stack:not(:only-child) button.combo:hover, .raven .raven-background button.combo:hover, #login_window #user_combobox button:hover { + box-shadow: inset 0 -2px rgba(30, 37, 65, 0.38); +} + +notebook > stack:not(:only-child) button.combo:checked, .raven .raven-background button.combo:checked, #login_window #user_combobox button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 100%, transparent 0%) 0 0 2/0 0 2px; +} + +notebook > stack:not(:only-child) button.combo:disabled, .raven .raven-background button.combo:disabled, #login_window #user_combobox button:disabled { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + +/************ + * Toolbars * + ************/ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; + background-color: #EEFFFF; +} + +.osd toolbar { + background-color: transparent; +} + +toolbar.osd, .app-notification, frame.documents-dropdown { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(238, 255, 255, 0.4); +} + +toolbar.osd.left, .left.app-notification, frame.left.documents-dropdown, toolbar.osd.right, .right.app-notification, frame.right.documents-dropdown, toolbar.osd.top, .top.app-notification, frame.top.documents-dropdown, toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown { + border-radius: 0; +} + +toolbar.horizontal > separator { + margin: 2px; +} + +toolbar.vertical > separator { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) scale, +toolbar:not(.inline-toolbar):not(.osd) entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton, +toolbar:not(.inline-toolbar):not(.osd) button { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { + margin-left: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { + margin-right: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton button { + margin: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) switch { + margin: 8px 2px; +} + +.inline-toolbar { + padding: 6px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #eeffff; +} + +searchbar, +.location-bar { + padding: 6px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + background-clip: border-box; +} + +/*************** + * Header bars * + ***************/ +.titlebar:not(headerbar), +headerbar { + transition: background-color 180ms cubic-bezier(0, 0, 0.2, 1), color 270ms cubic-bezier(0, 0, 0.2, 1); + min-height: 44px; + padding: 0 6px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px #EEFFFF; + background-color: #EEFFFF; + color: #1E2541; +} + +.titlebar:disabled:not(headerbar) :not(button) > label, +headerbar:disabled :not(button) > label { + color: rgba(30, 37, 65, 0.38); +} + +.titlebar:backdrop:not(headerbar), +headerbar:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +.titlebar:backdrop:disabled:not(headerbar) :not(button) > label, +headerbar:backdrop:disabled :not(button) > label { + color: rgba(30, 37, 65, 0.26); +} + +.titlebar:not(headerbar) .title, +headerbar .title { + padding: 0 12px; + font-weight: bold; +} + +.titlebar:not(headerbar) .subtitle, +headerbar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +.titlebar:not(headerbar) .linked:not(.vertical) > entry:not(.flat), +headerbar .linked:not(.vertical) > entry:not(.flat) { + border-radius: 2px; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 0%, transparent 0%) 0 0 0/0 0 0px; + color: rgba(30, 37, 65, 0.54); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active, +headerbar button:not(.suggested-action):not(.destructive-action):hover, +headerbar button:not(.suggested-action):not(.destructive-action):active { + color: #1E2541; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled, +headerbar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(30, 37, 65, 0.26); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, +headerbar button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 100%, transparent 0%) 0 0 2/0 0 2px; + color: #1E2541; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(30, 37, 65, 0.38); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):checked, +headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(30, 37, 65, 0.38); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:active, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:hover, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:active { + color: rgba(30, 37, 65, 0.54); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(30, 37, 65, 0.26); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(30, 37, 65, 0.54); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(30, 37, 65, 0.26); +} + +.titlebar:not(headerbar) button.suggested-action:disabled, .titlebar:not(headerbar) button.destructive-action:disabled, +headerbar button.suggested-action:disabled, +headerbar button.destructive-action:disabled { + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + +.selection-mode.titlebar:not(headerbar), +headerbar.selection-mode { + transition: background-color 0.00001s 270ms, color 270ms cubic-bezier(0, 0, 0.2, 1); + animation: header_ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(238, 255, 255, 0.2); + background-color: #F0719B; + color: #1E2541; +} + +.selection-mode.titlebar:backdrop:not(headerbar), +headerbar.selection-mode:backdrop { + color: rgba(30, 37, 65, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: #1E2541; +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(30, 37, 65, 0.5); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; + color: #1E2541; +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(30, 37, 65, 0.5); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(30, 37, 65, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(30, 37, 65, 0.3); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(30, 37, 65, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(30, 37, 65, 0.3); +} + +.selection-mode.titlebar:not(headerbar) .selection-menu, +headerbar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.selection-mode.titlebar:not(headerbar) .selection-menu arrow, +headerbar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; +} + +.selection-mode.titlebar:not(headerbar) .selection-menu .arrow, +headerbar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.tiled .titlebar:not(headerbar), +.tiled-top .titlebar:not(headerbar), +.tiled-right .titlebar:not(headerbar), +.tiled-bottom .titlebar:not(headerbar), +.tiled-left .titlebar:not(headerbar), +.maximized .titlebar:not(headerbar), +.fullscreen .titlebar:not(headerbar), .tiled +headerbar, +.tiled-top +headerbar, +.tiled-right +headerbar, +.tiled-bottom +headerbar, +.tiled-left +headerbar, +.maximized +headerbar, +.fullscreen +headerbar { + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.default-decoration.titlebar:not(headerbar), +headerbar.default-decoration { + min-height: 20px; + padding: 6px; + box-shadow: inset 0 1px #EEFFFF; +} + +.tiled .default-decoration.titlebar:not(headerbar), +.maximized .default-decoration.titlebar:not(headerbar), +.fullscreen .default-decoration.titlebar:not(headerbar), .tiled +headerbar.default-decoration, +.maximized +headerbar.default-decoration, +.fullscreen +headerbar.default-decoration { + box-shadow: none; +} + +.default-decoration.titlebar:not(headerbar) button.titlebutton, +headerbar.default-decoration button.titlebutton { + min-height: 20px; + min-width: 20px; + margin: 0; + padding: 0; +} + +.background:not(.csd) .default-decoration.titlebar:not(headerbar) button.titlebutton:active, .background:not(.csd) +headerbar.default-decoration button.titlebutton:active { + background-size: 1000% 1000%; +} + +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 6px; + margin-bottom: 6px; +} + +headerbar switch { + margin-top: 12px; + margin-bottom: 12px; +} + +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} + +.background .titlebar { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +.background.tiled .titlebar, +.background.tiled-top .titlebar, +.background.tiled-right .titlebar, +.background.tiled-bottom .titlebar, +.background.tiled-left .titlebar, +.background.maximized .titlebar, +.background.solid-csd .titlebar { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +window separator:first-child + headerbar, +window headerbar:first-child { + border-top-left-radius: 2px; +} + +window headerbar:last-child { + border-top-right-radius: 2px; +} + +window stack headerbar:first-child, window stack headerbar:last-child { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +window.tiled headerbar, window.tiled headerbar:first-child, window.tiled headerbar:last-child, window.tiled headerbar:only-child, +window.tiled-top headerbar, +window.tiled-top headerbar:first-child, +window.tiled-top headerbar:last-child, +window.tiled-top headerbar:only-child, +window.tiled-right headerbar, +window.tiled-right headerbar:first-child, +window.tiled-right headerbar:last-child, +window.tiled-right headerbar:only-child, +window.tiled-bottom headerbar, +window.tiled-bottom headerbar:first-child, +window.tiled-bottom headerbar:last-child, +window.tiled-bottom headerbar:only-child, +window.tiled-left headerbar, +window.tiled-left headerbar:first-child, +window.tiled-left headerbar:last-child, +window.tiled-left headerbar:only-child, +window.maximized headerbar, +window.maximized headerbar:first-child, +window.maximized headerbar:last-child, +window.maximized headerbar:only-child, +window.fullscreen headerbar, +window.fullscreen headerbar:first-child, +window.fullscreen headerbar:last-child, +window.fullscreen headerbar:only-child, +window.solid-csd headerbar, +window.solid-csd headerbar:first-child, +window.solid-csd headerbar:last-child, +window.solid-csd headerbar:only-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +window.csd > .titlebar:not(headerbar) { + padding: 0; + background-color: transparent; + background-image: none; + border-style: none; + box-shadow: none; +} + +.titlebar:not(headerbar) > separator { + background-color: #EEFFFF; + background-image: image(rgba(30, 37, 65, 0.12)); +} + +/************ + * Pathbars * + ************/ +.caja-pathbar button, +.path-bar button { + padding-left: 4px; + padding-right: 4px; +} + +.caja-pathbar button label:not(:only-child):first-child, +.path-bar button label:not(:only-child):first-child { + margin-left: 4px; +} + +.caja-pathbar button label:not(:only-child):last-child, +.path-bar button label:not(:only-child):last-child { + margin-right: 4px; +} + +.caja-pathbar button.slider-button, +.path-bar button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +:not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) +.path-bar button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 2px; +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) +.path-bar button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 100%, transparent 0%) 0 0 2/0 0 2px; +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) +.path-bar button:checked, :not(headerbar) +.path-bar button:checked:disabled { + background-color: transparent; +} + +/************** + * Tree Views * + **************/ +treeview.view { + border-left-color: rgba(30, 37, 65, 0.26); + border-top-color: rgba(30, 37, 65, 0.12); +} + +* { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; +} + +treeview.view:selected { + border-left-color: rgba(30, 37, 65, 0.3); +} + +treeview.view:hover, treeview.view:active, treeview.view:selected { + border-radius: 0; +} + +treeview.view.separator { + min-height: 5px; + color: rgba(30, 37, 65, 0.12); +} + +treeview.view:drop(active) { + border-style: solid none; + border-width: 1px; + border-color: #57C7FF; +} + +treeview.view:drop(active).after { + border-top-style: none; +} + +treeview.view:drop(active).before { + border-bottom-style: none; +} + +treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(29, 160, 226, 0.54); +} + +treeview.view.expander:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view.expander:checked { + -gtk-icon-transform: unset; +} + +treeview.view.expander:hover, treeview.view.expander:active { + color: #1E2541; +} + +treeview.view.expander:disabled { + color: rgba(29, 160, 226, 0.26); +} + +treeview.view.expander:selected { + color: rgba(30, 37, 65, 0.7); +} + +treeview.view.expander:selected:hover, treeview.view.expander:selected:active { + color: #1E2541; +} + +treeview.view.expander:selected:disabled { + color: rgba(30, 37, 65, 0.3); +} + +treeview.view.progressbar { + border-bottom: 4px solid #F0719B; + box-shadow: none; + background-color: transparent; +} + +treeview.view.progressbar:selected { + border-bottom-color: #1E2541; +} + +treeview.view.trough { + border-bottom: 4px solid rgba(240, 113, 155, 0.3); + box-shadow: none; + background-color: transparent; +} + +treeview.view.trough:selected { + border-bottom-color: rgba(30, 37, 65, 0.3); +} + +treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + border-radius: 0; + background-clip: border-box; +} + +treeview.view header button, treeview.view header button:hover, treeview.view header button:active { + box-shadow: none; +} + +treeview.view header button, treeview.view header button:disabled { + background-color: #EEFFFF; +} + +treeview.view header button:last-child { + border-right-style: none; +} + +treeview.view button.dnd, +treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #EEFFFF; + background-clip: border-box; + color: #F0719B; +} + +treeview.view acceleditor > label { + background-color: #F0719B; +} + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #EEFFFF; +} + +menubar > menuitem, +.menubar > menuitem { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(30, 37, 65, 0.54); +} + +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(30, 37, 65, 0.26); +} + +menubar > menuitem label:disabled, +.menubar > menuitem label:disabled { + color: inherit; +} + +.csd.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 4px 0; + padding: 4px 0; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; + border: 1px solid rgba(30, 37, 65, 0.12); +} + +.csd menu, .csd +.menu, .csd +.context-menu { + border: none; + border-radius: 2px; +} + +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 180ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + min-width: 40px; + padding: 4px 8px; + font: initial; + text-shadow: none; +} + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + transition: none; + background-color: rgba(30, 37, 65, 0.12); +} + +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(30, 37, 65, 0.38); +} + +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: 8px; +} + +menu menuitem arrow:dir(rtl), +.menu menuitem arrow:dir(rtl), +.context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 8px; +} + +menu 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 { + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #EEFFFF; + color: rgba(29, 160, 226, 0.54); +} + +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 2px 2px 0 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin-bottom: -12px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0 0 2px 2px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(rgba(30, 37, 65, 0.12)); + color: #1E2541; +} + +menu > arrow:disabled, +.menu > arrow:disabled, +.context-menu > arrow:disabled { + border-color: transparent; + background-color: transparent; + color: transparent; +} + +menu separator, +.menu separator, +.context-menu separator { + margin: 4px 0; +} + +menuitem accelerator { + color: rgba(29, 160, 226, 0.54); +} + +.popup:not(.csd) menu menuitem { + color: #1E2541; +} + +.popup:not(.csd) menu menuitem:hover { + background-color: #F0719B; +} + +.popup:not(.csd) menu menuitem:disabled { + color: #525b70; +} + +.popup:not(.csd) menu accelerator { + color: #757575; +} + +/************ + * Popovers * + ************/ +popover.background { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #EEFFFF; +} + +popover.background:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +popover.background, .csd popover.background { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 3px; +} + +popover.background > stack { + margin: -4px; +} + +popover.background > toolbar { + margin: -2px; +} + +popover.background > list, +popover.background > .view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 2px; +} + +popover.background separator { + margin: 4px 0; +} + +popover.background list separator { + margin: 0; +} + +/************* + * Notebooks * + *************/ +notebook > header { + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + background-clip: border-box; +} + +notebook > header.top { + border-bottom-style: solid; +} + +notebook > header.top > tabs { + margin-bottom: -1px; +} + +notebook > header.top > tabs > tab:hover { + box-shadow: inset 0 -2px rgba(30, 37, 65, 0.26); +} + +notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -2px #F0719B; +} + +notebook > header.bottom { + border-top-style: solid; +} + +notebook > header.bottom > tabs { + margin-top: -1px; +} + +notebook > header.bottom > tabs > tab:hover { + box-shadow: inset 0 2px rgba(30, 37, 65, 0.26); +} + +notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 2px #F0719B; +} + +notebook > header.left { + border-right-style: solid; +} + +notebook > header.left > tabs { + margin-right: -1px; +} + +notebook > header.left > tabs > tab:hover { + box-shadow: inset -2px 0 rgba(30, 37, 65, 0.26); +} + +notebook > header.left > tabs > tab:checked { + box-shadow: inset -2px 0 #F0719B; +} + +notebook > header.right { + border-left-style: solid; +} + +notebook > header.right > tabs { + margin-left: -1px; +} + +notebook > header.right > tabs > tab:hover { + box-shadow: inset 2px 0 rgba(30, 37, 65, 0.26); +} + +notebook > header.right > tabs > tab:checked { + box-shadow: inset 2px 0 #F0719B; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: -8px; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: -8px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: -8px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: -8px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 0; +} + +notebook > header tab { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + min-height: 20px; + min-width: 20px; + padding: 6px 12px; + outline-offset: -6px; + border-width: 1px; + border-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, #F0719B 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(29, 160, 226, 0.54); + font-weight: 500; +} + +notebook > header tab:hover { + color: #1E2541; +} + +notebook > header tab:hover.reorderable-page { + border-color: rgba(30, 37, 65, 0.12); + background-color: #eeffff; +} + +notebook > header tab:disabled { + color: rgba(29, 160, 226, 0.26); +} + +notebook > header tab:checked { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 270ms cubic-bezier(0, 0, 0.2, 1), background-image 720ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #1E2541; +} + +notebook > header tab:checked:disabled { + color: rgba(30, 37, 65, 0.38); +} + +notebook > header tab:checked.reorderable-page { + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +notebook > header tab button.flat:last-child { + margin-left: 6px; + margin-right: -6px; +} + +notebook > header tab button.flat:first-child { + margin-left: -6px; + margin-right: 6px; +} + +notebook > header.top tabs, notebook > header.bottom tabs { + padding-left: 8px; + padding-right: 8px; +} + +notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + margin: 0 -1px; + border-style: none solid; +} + +notebook > header.left tabs, notebook > header.right tabs { + padding-top: 8px; + padding-bottom: 8px; +} + +notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + margin: -1px 0; + border-style: solid none; +} + +notebook > stack:not(:only-child) { + background-color: #EEFFFF; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: #EEFFFF; + background-clip: padding-box; +} + +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar.top { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +scrollbar.bottom { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +scrollbar.left { + border-right: 1px solid rgba(30, 37, 65, 0.12); +} + +scrollbar.right { + border-left: 1px solid rgba(30, 37, 65, 0.12); +} + +scrollbar slider { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0; + min-width: 8px; + min-height: 8px; + border: 4px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(30, 37, 65, 0.38); +} + +scrollbar slider:hover { + background-color: rgba(29, 160, 226, 0.54); +} + +scrollbar slider:active { + background-color: #1E2541; +} + +scrollbar slider:disabled { + background-color: rgba(29, 160, 226, 0.26); +} + +scrollbar.fine-tune slider { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0; + min-width: 4px; + min-height: 4px; +} + +scrollbar.fine-tune.horizontal slider { + margin: 2px 0; +} + +scrollbar.fine-tune.vertical slider { + margin: 0 2px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(238, 255, 255, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(238, 255, 255, 0.3); + border-radius: 9999px; + background-color: rgba(30, 37, 65, 0.38); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(29, 160, 226, 0.26); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + min-width: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + min-width: 8px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + min-height: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + min-height: 8px; +} + +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: rgba(238, 255, 255, 0.9); +} + +scrollbar.horizontal slider { + min-width: 24px; +} + +scrollbar.vertical slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +scrollbar.vertical button.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +scrollbar.vertical button.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +scrollbar.horizontal button.down { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + margin: 6px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(30, 37, 65, 0.26); + background-clip: padding-box; + font-size: 0; +} + +switch:disabled { + background-color: rgba(30, 37, 65, 0.12); +} + +switch:checked { + background-color: rgba(87, 199, 255, 0.5); +} + +switch:checked:disabled { + background-color: rgba(87, 199, 255, 0.3); +} + +switch slider { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + -gtk-outline-radius: 9999px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; +} + +switch:hover slider { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +switch:checked slider { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1), background-image 0, background-color 0.00001s 270ms; + animation: needs_attention 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: #57C7FF; + color: #1E2541; +} + +switch:disabled slider { + background-color: #eeffff; +} + +switch:checked:disabled slider { + animation: none; +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view .tile check:not(list):hover, +.content-view .tile check:not(list):active { + -gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked.png"), url("assets/selectionmode-checkbox-unchecked@2.png")); +} + +.view.content-view.check:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked.png"), url("assets/selectionmode-checkbox-checked@2.png")); +} + +checkbutton.text-button, +radiobutton.text-button { + padding: 2px; + outline-offset: 0; +} + +checkbutton.text-button label:not(:only-child), +radiobutton.text-button label:not(:only-child) { + margin: 0 4px; +} + +check, +radio { + min-height: 24px; + min-width: 24px; + margin: -10px; + padding: 10px; +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #57C7FF; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(87, 199, 255, 0.5); +} + +row:selected check:not(:checked):not(:indeterminate), row:selected +radio:not(:checked):not(:indeterminate) { + color: rgba(30, 37, 65, 0.7); +} + +row:selected check:not(:checked):not(:indeterminate):hover, row:selected check:not(:checked):not(:indeterminate):active, row:selected +radio:not(:checked):not(:indeterminate):hover, row:selected +radio:not(:checked):not(:indeterminate):active { + color: #1E2541; +} + +row:selected check:not(:checked):not(:indeterminate):disabled, row:selected +radio:not(:checked):not(:indeterminate):disabled { + color: rgba(30, 37, 65, 0.3); +} + +popover check, popover check:hover, popover check:disabled, popover +radio, popover +radio:hover, popover +radio:disabled { + box-shadow: none; + background-image: none; +} + +popover check:not(:checked):not(:indeterminate):not(:disabled), popover +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(29, 160, 226, 0.54); +} + +popover check.left:dir(rtl), popover +radio.left:dir(rtl) { + margin-left: -16px; + margin-right: -8px; +} + +popover check.right:dir(ltr), popover +radio.right:dir(ltr) { + margin-left: -8px; + margin-right: -16px; +} + +menu menuitem check, menu menuitem +radio { + transition: none; + margin: 0; + padding: 0; +} + +menu menuitem check:dir(ltr), menu menuitem +radio:dir(ltr) { + margin-right: 8px; +} + +menu menuitem check:dir(rtl), menu menuitem +radio:dir(rtl) { + margin-left: 8px; +} + +menu menuitem check:not(:checked):not(:indeterminate):not(:disabled), menu menuitem +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(29, 160, 226, 0.54); +} + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem +radio, menu menuitem +radio:hover, menu menuitem +radio:disabled { + box-shadow: none; +} + + +check { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.symbolic.png"))); +} + + +check:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.symbolic.png"))); +} + + +check:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.symbolic.png"))); +} + + +radio { + border-image-slice: 22; + border-image-width: 22px; +} + + +radio { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.symbolic.png"))); +} + + +radio:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.symbolic.png"))); +} + + +radio { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#57C7FF), to(transparent)); +} + + +radio:checked:not(:indeterminate) { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(#57C7FF), to(transparent)); +} + + +radio:checked:not(:indeterminate):disabled { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(rgba(87, 199, 255, 0.5)), to(transparent)); +} + +window.background:not(.csd) > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; + border-radius: 2px; + -gtk-outline-radius: 2px; + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.symbolic.png"))); +} + +check:not(:checked):active { + -gtk-icon-transform: rotate(90deg); +} + +check:not(:checked):indeterminate:active, +radio:not(:checked):indeterminate:active { + -gtk-icon-transform: scaleX(-1); +} + +check:not(:checked), +radio:not(:checked) { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1), -gtk-icon-transform 0; +} + +check:not(:checked):active, +radio:not(:checked):active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0, -gtk-icon-transform 0; +} + +menu menuitem check:not(:checked), menu menuitem +radio:not(:checked) { + transition: none; +} + +treeview.view check, +treeview.view radio { + padding: 0; +} + +treeview.view check:hover, +treeview.view radio:hover { + box-shadow: inset 0 0 0 9999px alpha(#1E2541, 0.05); +} + +treeview.view check:hover:disabled, +treeview.view radio:hover:disabled { + box-shadow: none; +} + +treeview.view check:hover:selected, +treeview.view radio:hover:selected { + box-shadow: inset 0 0 0 9999px alpha(#1E2541, 0.05); +} + +treeview.view check, +treeview.view radio { + color: rgba(29, 160, 226, 0.54); +} + +treeview.view check:hover, treeview.view check:active, +treeview.view radio:hover, +treeview.view radio:active { + color: #1E2541; +} + +treeview.view check:disabled, +treeview.view radio:disabled { + color: rgba(29, 160, 226, 0.26); +} + +treeview.view check:checked, treeview.view check:indeterminate, +treeview.view radio:checked, +treeview.view radio:indeterminate { + color: #57C7FF; +} + +treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, +treeview.view radio:checked:disabled, +treeview.view radio:indeterminate:disabled { + color: rgba(87, 199, 255, 0.5); +} + +treeview.view check:selected, +treeview.view radio:selected { + color: rgba(30, 37, 65, 0.7); +} + +treeview.view check:selected:hover, treeview.view check:selected:active, +treeview.view radio:selected:hover, +treeview.view radio:selected:active { + color: #1E2541; +} + +treeview.view check:selected:disabled, +treeview.view radio:selected:disabled { + color: rgba(30, 37, 65, 0.3); +} + +treeview.view check:selected:checked, treeview.view check:selected:indeterminate, +treeview.view radio:selected:checked, +treeview.view radio:selected:indeterminate { + color: #57C7FF; +} + +treeview.view check:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled, +treeview.view radio:selected:checked:disabled, +treeview.view radio:selected:indeterminate:disabled { + color: rgba(87, 199, 255, 0.5); +} + +treeview.view radio:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic.symbolic.png"))); + border-image: none; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 8px; + min-width: 8px; + padding: 12px; +} + +scale slider { + min-height: 24px; + min-width: 24px; + margin: -11px; +} + +scale trough { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + outline-offset: 2px; + background-color: rgba(30, 37, 65, 0.26); +} + +scale trough:disabled { + background-color: rgba(30, 37, 65, 0.12); +} + +scale highlight { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: #57C7FF; +} + +scale highlight:disabled { + background-color: transparent; +} + +scale fill { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(30, 37, 65, 0.26); +} + +scale fill:disabled { + background-color: transparent; +} + +scale slider { + transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1); + background-repeat: no-repeat; + background-position: center; + background-size: calc(100% - 10px); +} + +scale slider { + background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png")); +} + +scale slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled.png"), url("assets/scale-slider-disabled@2.png")); +} + +scale slider:hover { + background-size: calc(100% - 8px); +} + +scale slider:active { + background-size: calc(100% - 6px); +} + +scale.fine-tune slider { + background-size: calc(100% - 12px); +} + +scale marks label, +scale value { + color: rgba(30, 37, 65, 0.38); +} + +scale marks { + color: rgba(30, 37, 65, 0.26); +} + +scale marks.top { + margin-bottom: 8px; + margin-top: -16px; +} + +scale marks.bottom { + margin-top: 8px; + margin-bottom: -16px; +} + +scale marks.top { + margin-right: 8px; + margin-left: -16px; +} + +scale marks.bottom { + margin-left: 8px; + margin-right: -16px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) slider { + min-height: 30px; + min-width: 24px; + margin-top: -17px; + background-position: center calc(100% - 5px); +} + +scale.horizontal.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); +} + +scale.horizontal.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled.png"), url("assets/scale-horz-marks-before-slider-disabled@2.png")); +} + +scale.horizontal.marks-before:not(.marks-after) slider:hover { + background-position: center calc(100% - 4px); +} + +scale.horizontal.marks-before:not(.marks-after) slider:active { + background-position: center calc(100% - 3px); +} + +scale.horizontal.marks-before:not(.marks-after).fine-tune slider { + background-position: center calc(100% - 6px); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + min-height: 30px; + min-width: 24px; + margin-bottom: -17px; + background-position: center calc(5px); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled.png"), url("assets/scale-horz-marks-after-slider-disabled@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) slider:hover { + background-position: center calc(4px); +} + +scale.horizontal.marks-after:not(.marks-before) slider:active { + background-position: center calc(3px); +} + +scale.horizontal.marks-after:not(.marks-before).fine-tune slider { + background-position: center calc(6px); +} + +scale.vertical.marks-before:not(.marks-after) slider { + min-height: 24px; + min-width: 30px; + margin-left: -17px; + background-position: calc(5px) center; +} + +scale.vertical.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled.png"), url("assets/scale-vert-marks-before-slider-disabled@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) slider:hover { + background-position: calc(4px) center; +} + +scale.vertical.marks-before:not(.marks-after) slider:active { + background-position: calc(3px) center; +} + +scale.vertical.marks-before:not(.marks-after).fine-tune slider { + background-position: calc(6px) center; +} + +scale.vertical.marks-after:not(.marks-before) slider { + min-height: 24px; + min-width: 30px; + margin-right: -17px; + background-position: calc(100% - 5px) center; +} + +scale.vertical.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled.png"), url("assets/scale-vert-marks-after-slider-disabled@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) slider:hover { + background-position: calc(100% - 4px) center; +} + +scale.vertical.marks-after:not(.marks-before) slider:active { + background-position: calc(100% - 3px) center; +} + +scale.vertical.marks-after:not(.marks-before).fine-tune slider { + background-position: calc(100% - 6px) center; +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) { + margin-bottom: -12px; + margin-top: -2px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -12px; + margin-right: -2px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) slider { + margin-right: -12px; + margin-left: -2px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(30, 37, 65, 0.38); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 4px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 4px; +} + +progressbar trough { + background-color: rgba(240, 113, 155, 0.3); +} + +progressbar progress { + background-color: #F0719B; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 4px; +} + +levelbar.horizontal.discrete block { + min-width: 32px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 4px; +} + +levelbar.vertical.discrete block { + min-height: 32px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar trough { + padding: 2px; + border-radius: 2px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; +} + +levelbar trough:disabled { + background-color: #eeffff; +} + +levelbar block.low { + background-color: #FF6D00; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #F0719B; +} + +levelbar block.full { + background-color: #00C853; +} + +levelbar block.empty { + background-color: rgba(30, 37, 65, 0.12); +} + +/**************** + * Print dialog * +*****************/ +printdialog paper { + padding: 0; + border: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + color: #1E2541; +} + +printdialog .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame > border, +.frame { + margin: 0; + padding: 0; + border: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; + box-shadow: none; +} + +frame > border.flat, +.frame.flat, +frame.flat > border { + border-style: none; +} + +actionbar > revealer > box { + padding: 6px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +scrolledwindow viewport.frame { + border-style: none; +} + +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; +} + +undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-top: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left top; +} + +undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-bottom: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left bottom; +} + +undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(30, 37, 65, 0.12); +} + + +button.font separator, +button.file separator, .tweak-categories separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/********* + * Lists * + *********/ +list { + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +list row { + padding: 2px; +} + +row.activatable, .view, treeview.view header button, .budgie-menu button { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px transparent; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} + +row.activatable:hover, .view:hover, treeview.view header button:hover, .budgie-menu button:hover { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, box-shadow 0, background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); +} + +row.activatable.has-open-popup, .has-open-popup.view, treeview.view header button.has-open-popup, .budgie-menu button.has-open-popup, row.activatable:active, .view:active, treeview.view header button:active, .budgie-menu button:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0, background-image 0; + animation: ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%); + background-size: 0% 0%; +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 8px; +} + +.app-notification.frame, +.app-notification border { + border-style: none; +} + +/************* + * Expanders * + *************/ +expander arrow { + transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(29, 160, 226, 0.54); +} + +expander arrow:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +expander arrow:checked { + -gtk-icon-transform: unset; +} + +expander arrow:hover, expander arrow:active { + color: #1E2541; +} + +expander arrow:disabled { + color: rgba(29, 160, 226, 0.26); +} + +expander arrow:selected { + color: rgba(30, 37, 65, 0.7); +} + +expander arrow:selected:hover, expander arrow:selected:active { + color: #1E2541; +} + +expander arrow:selected:disabled { + color: rgba(30, 37, 65, 0.3); +} + +/************ + * Calendar * + ************/ +calendar { + padding: 1px; + border: 1px solid rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +calendar:disabled { + color: rgba(30, 37, 65, 0.38); +} + +calendar:selected { + border-radius: 3px; +} + +calendar.header { + border-style: none none solid; + border-radius: 0; +} + +calendar.highlight { + color: rgba(29, 160, 226, 0.54); + font-weight: 500; +} + +calendar:indeterminate { + color: rgba(29, 160, 226, 0.26); +} + +/*********** + * Dialogs * + ***********/ +messagedialog.background { + background-color: #EEFFFF; +} + +messagedialog .titlebar { + min-height: 20px; + border-style: none; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; + color: #1E2541; +} + +messagedialog .titlebar:backdrop { + color: rgba(29, 160, 226, 0.54); +} + +messagedialog.csd.background { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +messagedialog.csd .dialog-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; +} + +messagedialog.csd .dialog-action-area button:first-child { + border-bottom-left-radius: 2px; +} + +messagedialog.csd .dialog-action-area button:last-child { + border-bottom-right-radius: 2px; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +filechooserbutton:drop(active) { + box-shadow: none; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; + background-color: #EEFFFF; +} + +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { + border-right: 1px solid rgba(30, 37, 65, 0.12); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { + border-left: 1px solid rgba(30, 37, 65, 0.12); + border-right-style: none; +} + +.sidebar list { + background-color: transparent; +} + +paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { + border-style: none; +} + +stacksidebar row { + padding: 10px 4px; +} + +stacksidebar row > label { + padding-left: 6px; + padding-right: 6px; +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + color: rgba(29, 160, 226, 0.54); +} + +row:selected image.sidebar-icon { + color: rgba(30, 37, 65, 0.7); +} + +placessidebar > viewport.frame { + border-style: none; +} + +placessidebar list { + padding: 1px 0 4px; +} + +placessidebar row { + min-height: 32px; + margin: -1px 0; + padding: 0; +} + +placessidebar row > revealer { + padding: 0 12px; +} + +placessidebar row:selected { + color: #1E2541; +} + +placessidebar row:disabled { + color: rgba(30, 37, 65, 0.38); +} + +placessidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +placessidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +placessidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar row.sidebar-placeholder-row { + min-height: 2px; + padding: 0 8px; + background-image: image(#57C7FF); + background-clip: content-box; +} + +placessidebar row.sidebar-new-bookmark-row { + color: #57C7FF; +} + +placessidebar row:drop(active):not(:disabled) { + box-shadow: inset 0 0 0 2px #57C7FF; +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(rgba(30, 37, 65, 0.12)); + background-size: 1px 1px; + background-clip: content-box; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #EEFFFF; + background-image: image(rgba(30, 37, 65, 0.12)), image(rgba(30, 37, 65, 0.12)); + background-size: 1px 1px, 1px 1px; +} + +paned.horizontal > separator { + background-repeat: repeat-y; +} + +paned.horizontal > separator:dir(ltr) { + margin: 0 -8px 0 0; + padding: 0 8px 0 0; + background-position: left; +} + +paned.horizontal > separator:dir(rtl) { + margin: 0 0 0 -8px; + padding: 0 0 0 8px; + background-position: right; +} + +paned.horizontal > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-y, repeat-y; + background-position: left, right; +} + +paned.vertical > separator { + margin: 0 0 -8px 0; + padding: 0 0 8px 0; + background-repeat: repeat-x; + background-position: top; +} + +paned.vertical > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-x, repeat-x; + background-position: bottom, top; +} + +/************** + * GtkInfoBar * + **************/ +infobar { + border-style: none; +} + +infobar.info { + background-color: #66BB6A; +} + +infobar.question { + background-color: #F0719B; +} + +infobar.warning { + background-color: #FFA726; +} + +infobar.error { + background-color: #EF5350; +} + +infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error { + color: #1E2541; +} + +/************ + * Tooltips * + ************/ +tooltip { + border-radius: 2px; + box-shadow: none; +} + +tooltip.background { + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: rgba(238, 255, 255, 0.9); +} + +tooltip:not(.csd):not(.unity-csd) { + border: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 3px; + background-clip: padding-box; +} + +tooltip decoration { + background-color: transparent; +} + +tooltip label { + min-height: 20px; + padding: 0 2px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 2.5px; + border-top-right-radius: 2.5px; +} + +colorswatch.top overlay { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +colorswatch.bottom { + border-bottom-left-radius: 2.5px; + border-bottom-right-radius: 2.5px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 2.5px; + border-bottom-left-radius: 2.5px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 2.5px; + border-bottom-right-radius: 2.5px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} + +colorswatch.dark { + color: #EEFFFF; +} + +colorswatch.light { + color: #1E2541; +} + +colorswatch:drop(active) { + box-shadow: none; +} + +colorswatch:drop(active).light overlay { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #57C7FF; +} + +colorswatch:drop(active).dark overlay { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #57C7FF; +} + +colorswatch overlay { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +colorswatch overlay:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +colorswatch#add-color-button { + border-radius: 2px 2px 0 0; + color: #EEFFFF; +} + +colorswatch#add-color-button:only-child { + border-radius: 2px; +} + +colorswatch#add-color-button overlay { + background-image: linear-gradient(to right, #EF5350 25%, #FFA726 25%, #FFA726 50%, #66BB6A 50%, #66BB6A 75%, #F0719B 75%); +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 2.5px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 2px; +} + +colorchooser .popover.osd { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(238, 255, 255, 0.4); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #EEFFFF; +} + +/********************** + * Window Decorations * + **********************/ +decoration { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 2px 2px 0 0; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), 0 16px 16px transparent; + margin: 8px; +} + +decoration:backdrop { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), 0 16px 16px transparent; +} + +.maximized decoration, +.fullscreen decoration, +.tiled decoration, +.tiled-top decoration, +.tiled-right decoration, +.tiled-bottom decoration, +.tiled-left decoration { + border-radius: 0; +} + +.popup decoration { + box-shadow: none; +} + +.ssd decoration { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} + +.csd.popup decoration { + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +tooltip.csd decoration { + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +messagedialog.csd decoration { + border-radius: 2px; +} + +.solid-csd decoration { + margin: 0; + border-radius: 0; + box-shadow: none; + background-color: #EEFFFF; +} + +.view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, popover.background.menu button:checked, +popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked { + background-color: #F0719B; +} + +row:selected label, label:selected, .view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, popover.background.menu button:checked, +popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked { + color: #1E2541; +} + +row:selected label:disabled, label:disabled:selected, .view selection:disabled, .view:disabled:selected, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled, +entry selection:disabled, modelbutton.flat:disabled:selected, +.menuitem.button.flat:disabled:selected, popover.background.menu button:disabled:checked, +popover.background button.model:disabled:checked, row:disabled:selected, calendar:disabled:selected, text:disabled:selected, .budgie-menu button:disabled:checked { + color: rgba(30, 37, 65, 0.5); +} + +.monospace { + font-family: monospace; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + border-radius: 9999px; + background-color: #57C7FF; + background-image: none; +} + +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + padding-left: 6px; + border-top-right-radius: 0; +} + +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + padding-right: 6px; + border-top-left-radius: 0; +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 30; + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); +} + +.context-menu { + font: initial; +} + +.keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(30, 37, 65, 0.12); + border-radius: 3px; + box-shadow: inset 0 -2px rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + color: #1E2541; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 2px #57C7FF; + caret-color: #57C7FF; +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker entry { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + box-shadow: none; +} + +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +button.emoji-section { + margin-top: -1px; + padding: 0 8px; + min-width: 24px; + min-height: 32px; + border-radius: 0; + outline-offset: -6px; + box-shadow: none; +} + +button.emoji-section:hover { + box-shadow: inset 0 2px rgba(30, 37, 65, 0.26); +} + +button.emoji-section:active { + box-shadow: inset 0 2px #F0719B; + background-image: radial-gradient(circle farthest-corner at center, rgba(240, 113, 155, 0.7) 10%, transparent 0%); +} + +button.emoji-section:checked { + box-shadow: inset 0 2px #F0719B; + background-color: transparent; +} + +button.emoji-section:first-child { + margin-left: 4px; +} + +button.emoji-section:last-child { + margin-right: 4px; +} + +.emoji { + min-width: 3em; + min-height: 3em; + padding: 0; +} + +.emoji widget { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); +} + +.emoji widget:hover { + font-size: larger; +} + +/************ + * Nautilus * + ************/ +.nautilus-window, +.nautilus-window notebook, +.nautilus-window notebook > stack { + background-color: #EEFFFF; +} + +.nautilus-desktop.nautilus-canvas-item:not(:selected), .caja-desktop.caja-canvas-item:not(:selected) { + color: #1E2541; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +@keyframes needs_attention_keyframes { + to { + background-color: alpha(currentColor, 0.3); + } +} + +.nautilus-operations-button-needs-attention { + animation: needs_attention_keyframes 270ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; +} + +.nautilus-operations-button-needs-attention-multiple { + animation: needs_attention_keyframes 270ms cubic-bezier(0.4, 0, 0.2, 1) 4 alternate; +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + border-style: solid solid none; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + border-radius: 3px 3px 0 0; + background-color: #EEFFFF; + background-clip: padding-box; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), border-width 0; +} + +.nautilus-window .floating-bar.bottom.left { + margin-right: 7px; + border-left-style: none; + border-top-left-radius: 0; +} + +.nautilus-window .floating-bar.bottom.right { + margin-left: 7px; + border-right-style: none; + border-top-right-radius: 0; +} + +.nautilus-window .floating-bar button { + margin: 6px; +} + +.disk-space-display.unknown { + background-color: #FF6D00; +} + +.disk-space-display.used { + background-color: #F0719B; +} + +.disk-space-display.free { + background-color: rgba(30, 37, 65, 0.12); +} + +.nautilus-window searchbar { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.nautilus-window .searchbar-container { + margin-top: -1px; +} + +.nautilus-window paned > separator { + background-color: #EEFFFF; +} + +/********* + * gedit * + *********/ +.open-document-selector-path-label { + color: rgba(29, 160, 226, 0.54); + font-size: smaller; +} + +.open-document-selector-path-label:selected { + color: rgba(30, 37, 65, 0.7); +} + +.gedit-document-panel { + background-color: #EEFFFF; +} + +.gedit-document-panel row button.flat { + margin-top: 8px; + margin-bottom: 8px; +} + +.gedit-document-panel-group-row:not(:first-child) { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.gedit-search-slider { + margin: 4px 4px 8px; +} + +.gedit-search-slider entry:dir(ltr), .gedit-search-slider entry:dir(rtl) { + border-radius: 2px; +} + +.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag, .gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(30, 37, 65, 0.38); +} + +.gedit-search-slider entry:dir(ltr) { + margin-right: -58px; + padding-right: 58px; +} + +.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 6px; +} + +.gedit-search-slider entry:dir(ltr) image.right { + margin-right: 0; +} + +.gedit-search-slider entry:dir(rtl) { + margin-left: -58px; + padding-left: 58px; +} + +.gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 6px; +} + +.gedit-search-slider entry:dir(rtl) image.left { + margin-left: 0; +} + +.gedit-search-slider entry.error ~ button { + color: rgba(30, 37, 65, 0.7); +} + +.gedit-search-slider entry.error ~ button:hover, .gedit-search-slider entry.error ~ button:active { + color: #1E2541; +} + +.gedit-search-slider entry.error ~ button:disabled { + color: rgba(30, 37, 65, 0.3); +} + +.gedit-search-slider button { + border: solid 6px transparent; +} + +.gedit-search-slider button:last-child:dir(ltr), .gedit-search-slider button:not(:first-child):dir(rtl) { + margin-left: -3px; +} + +.gedit-search-slider button:first-child:dir(rtl), .gedit-search-slider button:not(:last-child):dir(ltr) { + margin-right: -3px; +} + +frame.gedit-map-frame > border:dir(ltr) { + border-style: none none none solid; +} + +frame.gedit-map-frame > border:dir(rtl) { + border-style: none solid none none; +} + +/************** + * Tweak Tool * + **************/ +.tweak-categories { + background-image: image(#EEFFFF); +} + +.tweak { + padding: 3px; +} + +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#EEFFFF); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#EEFFFF); +} + +.tweak-group-startup { + background-image: image(#EEFFFF); + border: 1px solid rgba(30, 37, 65, 0.12); +} + +/*********** + * Builder * + ***********/ +workbench stack.titlebar { + padding: 0; +} + +workbench:not(.tiled):not(.maximized):not(.fullscreen) stack.titlebar headerbar { + border-radius: 2px 2px 0 0; +} + +perspectiveswitcher { + background-color: #EEFFFF; +} + +perspectiveswitcher button:checked { + color: #F0719B; +} + +layouttabbar { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +layouttabbar > box > button { + margin: 4px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + box-shadow: inset 0 -2px #F0719B; + background-color: #EEFFFF; +} + +layouttab separator.vertical { + margin: 8px 4px; +} + +layouttab button.text-button, layouttab button.image-button, layouttab button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} + +layout { + border: 1px solid rgba(30, 37, 65, 0.12); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #DD2C00; + color: #1E2541; +} + +workbench treeview.image { + color: rgba(29, 160, 226, 0.54); +} + +workbench treeview.image:selected { + color: rgba(30, 37, 65, 0.7); +} + +dockbin { + border: 1px solid rgba(30, 37, 65, 0.12); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +docktab { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + min-height: 20px; + min-width: 20px; + margin-bottom: -1px; + padding: 6px 6px; + outline-offset: -6px; + border-width: 1px; + border-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, #F0719B 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(29, 160, 226, 0.54); + font-weight: 500; +} + +docktab:hover { + box-shadow: inset 0 -2px rgba(30, 37, 65, 0.26); + color: #1E2541; +} + +docktab:checked { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 270ms cubic-bezier(0, 0, 0.2, 1), background-image 720ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -2px #F0719B; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #1E2541; +} + +dockoverlayedge { + background-color: #EEFFFF; +} + +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} + +dockoverlayedge.left-edge docktab:hover { + box-shadow: inset -2px 0 rgba(30, 37, 65, 0.26); +} + +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #F0719B; +} + +dockoverlayedge.right-edge docktab:hover { + box-shadow: inset 2px 0 rgba(30, 37, 65, 0.26); +} + +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #F0719B; +} + +pillbox { + background-color: #EEFFFF; + border-radius: 2px; +} + +buildperspective row { + padding: 10px; +} + +layoutpane entry.search { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +editortweak entry.search { + margin-bottom: -1px; + box-shadow: none; +} + +frame.gb-search-frame { + border-bottom-right-radius: 5px; +} + +.gb-search-entry-occurrences-tag { + box-shadow: none; + background-color: transparent; +} + +docktabstrip { + min-height: 39px; +} + +workbench preferences preferencesgroup list entry { + padding-top: 8px; + padding-bottom: 8px; +} + +/********** + * Photos * + **********/ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} + +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #57C7FF; + color: #1E2541; + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; +} + +.photos-fade-in { + opacity: 1; + transition: opacity 180ms cubic-bezier(0, 0, 0.2, 1); +} + +.photos-fade-out { + opacity: 0; + transition: opacity 180ms cubic-bezier(0, 0, 0.2, 1); +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-style: none none none solid; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-style: none solid none none; +} + +/********* + * Music * + *********/ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(30, 37, 65, 0.12); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(30, 37, 65, 0.12); +} + +.side-panel .view { + background-image: image(#EEFFFF); +} + +.side-panel .view:hover { + background-image: image(#e4f4f6); +} + +.side-panel .view:selected { + background-image: image(#F0719B); +} + +.side-panel .view:selected:hover { + background-image: image(#e66d97); +} + +.songs-list:hover { + background-image: image(alpha(currentColor, 0.05)); +} + +frame.documents-dropdown { + margin: 8px; +} + +frame.documents-dropdown > border { + border: none; +} + +box.vertical:not(.titlebar) > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +box.vertical:not(.titlebar) > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/********* + * To Do * + *********/ +task-row { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); + margin: 0 -4px; +} + +task-row:hover { + transition: none; +} + +task-row label { + margin: 0 8px; +} + +task-row image { + margin: 0 4px; +} + +task-list-view > box > revealer > box > button { + min-height: 32px; + margin: -4px; + padding: 0 12px; +} + +task-list-view > box > revealer > box > button label { + margin: 0 8px; +} + +task-list-view > box > revealer > box > button image { + margin: 0 4px; +} + +/******* + * eog * + *******/ +#eog-thumb-nav scrolledwindow { + border-top: none; +} + +#eog-thumb-nav button { + -gtk-outline-radius: 2px; +} + +/************* + * Evolution * + *************/ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/******** + * gitg * + ********/ +frame.commit-frame > border { + border-style: solid none none; +} + +/************** + * Characters * + **************/ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +list.categories { + background-image: image(#EEFFFF); +} + +/********* + * Boxes * + *********/ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 2px; + background-color: rgba(0, 0, 0, 0.3); + color: #1E2541; +} + +/************** + * Calculator * + **************/ +button.title label { + min-height: 32px; +} + +/********* + * Geary * + *********/ +.geary-titlebar-left:dir(ltr) { + margin-right: 5px; + padding-right: 0; +} + +.geary-titlebar-left:dir(rtl) { + margin-left: 5px; + padding-left: 0; +} + +.geary-titlebar-left > separator { + background-color: rgba(0, 0, 0, 0.05); +} + +.geary-titlebar-right:dir(ltr) { + margin-left: -5px; +} + +.geary-titlebar-right:dir(rtl) { + margin-right: -5px; +} + +/********* + * Tilix * + *********/ +overlay > revealer.left > scrolledwindow.frame, +overlay > revealer.right > scrolledwindow.frame { + border-style: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +overlay > revealer.left > scrolledwindow.frame { + margin-right: 32px; +} + +overlay > revealer.right > scrolledwindow.frame { + margin-left: 32px; +} + +.terminix-session-sidebar, +.tilix-session-sidebar { + background-image: image(#EEFFFF); +} + +button.image-button.session-new-button { + min-width: 28px; +} + +/*********** + * Eclipse * + ***********/ +window.background > box.vertical > scrolledwindow > widget toolbar { + padding: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar separator, +window.background > box.vertical > scrolledwindow > widget toolbar button { + margin: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar button { + border-radius: 2px; +} + +/************ + * Chromium * + ************/ +tooltip.chromium { + background-color: #EEFFFF; +} + +/*********** + * Firefox * + ***********/ +window.background:not(.csd) > widget > separator { + color: rgba(30, 37, 65, 0.26); +} + +window.background:not(.csd) > widget > scrollbar { + background-clip: border-box; +} + +window.background:not(.csd) > widget > scrollbar, +window.background:not(.csd) > widget > frame > border { + border-color: rgba(30, 37, 65, 0.26); +} + +window.background:not(.csd) > widget > entry, +window.background:not(.csd) > widget > button > button { + border: 1px solid rgba(30, 37, 65, 0.26); + border-radius: 3px; + box-shadow: none; +} + +window.background:not(.csd) > widget > entry { + min-height: 30px; +} + +window.background:not(.csd) > widget > entry:focus { + border-color: #F0719B; +} + +window.background:not(.csd) > widget > button > button { + padding: 4px 8px; + background-size: auto; +} + +window.background:not(.csd) > widget > button > button:hover { + background-image: image(alpha(currentColor, 0.05)); +} + +window.background:not(.csd) > widget > button > button:active { + background-image: image(alpha(currentColor, 0.1)); +} + +window.background:not(.csd) > window > menu, +window.background:not(.csd) > menu > menu { + border: none; +} + +window.background:not(.csd) > widget > menubar { + color: rgba(30, 37, 65, 0.54); +} + +window.background:not(.csd) > widget > menubar:hover { + color: #1E2541; +} + +window.background:not(.csd) > widget > menubar:disabled { + color: rgba(30, 37, 65, 0.26); +} + +window.background:not(.csd) > widget > frame { + color: rgba(30, 37, 65, 0.26); +} + +window.background:not(.csd) > widget > checkbutton > check, +window.background:not(.csd) > widget > radiobutton > radio { + margin: 0; + padding: 0; +} + +window.background:not(.csd) > window.background > menu > separator { + color: rgba(30, 37, 65, 0.12); +} + +/************ + * Inkscape * + ************/ +#ToolboxCommon > #AuxToolbox #StyleSwatch { + font-size: smaller; +} + +#ToolboxCommon > #AuxToolbox #Kludge { + padding: 0; +} + +#ToolboxCommon > #AuxToolbox spinbutton, +#ToolboxCommon > #AuxToolbox entry { + min-height: 32px; +} + +#ToolboxCommon > #AuxToolbox button:not(.up):not(.down) { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 2px; + -gtk-outline-radius: 2px; +} + +#ToolboxCommon > #AuxToolbox spinbutton button { + border-width: 4px; +} + +#ToolboxCommon > toolbar.vertical { + margin-top: -4px; +} + +#ToolboxCommon > toolbar.vertical button { + min-height: 24px; + min-width: 24px; + padding: 4px; + border-radius: 2px; + -gtk-outline-radius: 2px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; +} + +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(30, 37, 65, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(30, 37, 65, 0.12); +} + +#Canvas_and_Dock frame > border { + border: none; +} + +#Canvas_and_Dock widget > widget > button.flat { + min-height: 16px; + min-width: 16px; + padding: 4px; +} + +#Canvas_and_Dock widget > widget > box.horizontal image { + padding: 4px; +} + +#Canvas_and_Dock box.horizontal > box.vertical > button.flat { + min-height: 16px; + min-width: 24px; + padding: 8px 4px; +} + +/*********** + * Synapse * + ***********/ +box.vertical > widget > widget:selected { + background-color: #F0719B; +} + +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #F0719B; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 2px 2px 0 0; + box-shadow: inset 0 1px #EEFFFF; + background-color: #EEFFFF; + color: #1E2541; +} + +UnityDecoration .top:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +UnityDecoration .menuitem { + color: rgba(30, 37, 65, 0.54); +} + +UnityDecoration .menuitem:hover { + box-shadow: inset 0 -2px #F0719B; + background-color: transparent; + color: #1E2541; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #eeffff; + color: #1E2541; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(30, 37, 65, 0.54); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px #F0719B; + background-color: transparent; + color: #1E2541; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #F0719B; +} + +/************** + * Mate-Panel * + **************/ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: #EEFFFF; + font-weight: 500; +} + +.mate-panel-menu-bar:not(.popup) { + color: rgba(30, 37, 65, 0.7); +} + +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.mate-panel-menu-bar button:checked { + background-color: rgba(30, 37, 65, 0.12); +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(30, 37, 65, 0.12); +} + +MatePanelAppletFrameDBus { + border-style: solid; + border-color: rgba(30, 37, 65, 0.12); +} + +.mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus { + border-width: 0 1px; +} + +.mate-panel-menu-bar.vertical MatePanelAppletFrameDBus { + border-width: 1px 0; +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(30, 37, 65, 0.7); +} + +.mate-panel-menu-bar menubar > menuitem:hover { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(30, 37, 65, 0.3); +} + +.mate-panel-menu-bar.horizontal menubar > menuitem { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical menubar > menuitem { + padding: 8px 0; +} + +.mate-panel-menu-bar menubar menu > menuitem { + min-height: 28px; + padding: 0 6px; +} + +.mate-panel-menu-bar #PanelApplet button { + -GtkWidget-window-dragging: true; +} + +.mate-panel-menu-bar #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; +} + +.mate-panel-menu-bar #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) { + padding-left: 4px; +} + +.mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) { + padding-right: 4px; +} + +.mate-panel-menu-bar.vertical #tasklist-button { + min-height: 32px; +} + +.mate-panel-menu-bar.horizontal #showdesktop-button image { + min-width: 24px; + padding: 0 4px; +} + +.mate-panel-menu-bar.vertical #showdesktop-button image { + min-height: 24px; + padding: 4px 0; +} + +PanelApplet.wnck-applet .wnck-pager { + background-color: transparent; + color: #ff91bb; +} + +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: rgba(30, 37, 65, 0.12); +} + +PanelApplet.wnck-applet .wnck-pager:active { + background-color: rgba(30, 37, 65, 0.3); +} + +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #F0719B; +} + +.mate-panel-menu-bar.horizontal #clock-applet-button label { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical #clock-applet-button label { + padding: 8px 0; +} + +#MatePanelPopupWindow { + border: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 3px; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); +} + +#MatePanelPopupWindow frame > border { + border-style: none; +} + +#MatePanelPopupWindow button { + padding: 4px 16px; +} + +#MatePanelPopupWindow ClockMap { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +#MatePanelPopupWindow widget { + color: rgba(30, 37, 65, 0.12); +} + +na-tray-applet { + -NaTrayApplet-icon-padding: 3px; + -NaTrayApplet-icon-size: 16; +} + +.mate-panel-menu-bar { + -PanelMenuBar-icon-visible: true; +} + +.mate-panel-applet-slider { + border: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 3px; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +.mate-panel-applet-slider frame > border { + border-style: none; +} + +#PanelApplet:not(:selected) > box { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); +} + +#PanelApplet:selected > box { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +#mate-menu { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: #1E2541; + font-weight: normal; +} + +#mate-menu button label:not(:first-child) { + color: rgba(29, 160, 226, 0.54); +} + +#mate-menu entry { + margin: 0 0 8px; +} + +#mate-menu entry image { + margin: 0; +} + +#mate-menu entry + button { + margin: 0 4px 8px; + padding: 4px; +} + +/********************* + * CAJA File manager * + *********************/ +.caja-navigation-window button.toggle.image-button { + border-radius: 2px; +} + +.caja-pathbar button { + margin: 0 -1px 0 -2px; +} + +.caja-pathbar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.caja-side-pane notebook viewport.frame, +.caja-side-pane notebook widget .vertical { + background-color: #EEFFFF; +} + +.caja-side-pane notebook, +.caja-notebook { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.caja-notebook frame > border { + border-style: none; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} + +/********* + * Pluma * + *********/ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.pluma-window statusbar frame > border { + border-style: none; +} + +.pluma-window statusbar frame button.flat { + padding: 0 4px; + border-radius: 0; +} + +.pluma-window statusbar frame button.flat widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.pluma-print-preview toolbar { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} + +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +/********* + * Atril * + *********/ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border-radius: 2px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), inset 0 1px rgba(238, 255, 255, 0.4); +} + +.lock-dialog frame > border { + border-style: none; +} + +/****************** + * Budgie Desktop * + ******************/ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} + +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 2px; + -gtk-outline-radius: 2px; +} + +.budgie-popover { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 3px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #EEFFFF; +} + +.budgie-popover .container { + padding: 2px; +} + +.budgie-popover border { + border: none; +} + +.budgie-popover list { + background-color: transparent; +} + +.budgie-popover row { + padding: 0; +} + +.budgie-popover row:hover { + box-shadow: none; +} + +.budgie-popover:not(.budgie-menu) button.flat:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: #1E2541; + font-weight: normal; +} + +.budgie-popover:not(.budgie-menu) button.flat:not(.image-button):disabled { + color: rgba(30, 37, 65, 0.38); +} + +.budgie-popover.budgie-menu .container { + padding: 0; +} + +.budgie-popover.user-menu .container { + padding: 8px; +} + +.budgie-popover.user-menu separator { + margin: 4px 0; +} + +.budgie-popover.sound-popover separator { + margin: 3px 0; +} + +.budgie-popover.night-light-indicator .container { + padding: 8px; +} + +.budgie-popover.places-menu .container { + padding: 8px; +} + +.budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} + +.budgie-popover.workspace-popover .container { + padding: 2px 8px 8px; +} + +.budgie-popover.workspace-popover separator { + margin: 4px 0; +} + +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(30, 37, 65, 0.12); +} + +.top .workspace-switcher .workspace-layout:dir(ltr), +.bottom .workspace-switcher .workspace-layout:dir(ltr) { + border-left-width: 1px; +} + +.top .workspace-switcher .workspace-layout:dir(rtl), +.bottom .workspace-switcher .workspace-layout:dir(rtl) { + border-right-width: 1px; +} + +.left .workspace-switcher .workspace-layout, +.right .workspace-switcher .workspace-layout { + border-top-width: 1px; +} + +.workspace-switcher .workspace-item, +.workspace-switcher .workspace-add-button { + border: 0 solid rgba(30, 37, 65, 0.12); +} + +.top .workspace-switcher .workspace-item:dir(ltr), +.bottom .workspace-switcher .workspace-item:dir(ltr), .top +.workspace-switcher .workspace-add-button:dir(ltr), +.bottom +.workspace-switcher .workspace-add-button:dir(ltr) { + border-right-width: 1px; +} + +.top .workspace-switcher .workspace-item:dir(rtl), +.bottom .workspace-switcher .workspace-item:dir(rtl), .top +.workspace-switcher .workspace-add-button:dir(rtl), +.bottom +.workspace-switcher .workspace-add-button:dir(rtl) { + border-left-width: 1px; +} + +.left .workspace-switcher .workspace-item, +.right .workspace-switcher .workspace-item, .left +.workspace-switcher .workspace-add-button, +.right +.workspace-switcher .workspace-add-button { + border-bottom-width: 1px; +} + +.workspace-switcher .workspace-item { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); +} + +.workspace-switcher .workspace-item.current-workspace { + background-color: rgba(30, 37, 65, 0.12); +} + +.workspace-switcher .workspace-add-button:hover { + box-shadow: none; +} + +.workspace-switcher .workspace-add-button:active { + background-image: none; +} + +.workspace-switcher .workspace-add-button:active image { + margin: 1px 0 -1px; +} + +.budgie-panel .workspace-switcher .workspace-icon-button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 2px; +} + +.budgie-menu.background { + padding: 0; + background-color: #EEFFFF; +} + +.budgie-menu scrollbar, +.budgie-menu entry.search { + background-color: transparent; +} + +.budgie-menu entry.search { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; + box-shadow: none; + font-size: 120%; +} + +.budgie-menu .categories:dir(ltr) { + border-bottom-left-radius: 2px; +} + +.budgie-menu .categories:dir(rtl) { + border-bottom-right-radius: 2px; +} + +.budgie-menu button { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + color: #1E2541; + font-weight: normal; +} + +.budgie-menu button:disabled { + color: rgba(30, 37, 65, 0.38); +} + +.budgie-menu button:checked:disabled { + background-color: #F0719B; +} + +.budgie-menu row { + padding: 0; +} + +.budgie-menu row:hover { + box-shadow: none; +} + +popover.background.user-menu { + padding: 8px; +} + +popover.background.user-menu .content-box { + background-color: transparent; +} + +popover.background.user-menu separator { + margin: 4px 0; +} + +popover.background.user-menu row { + padding: 0; + box-shadow: none; + background-image: none; +} + +popover.background.places-menu { + padding: 8px; +} + +popover.background.places-menu .name-button.text-button { + padding-left: 8px; + padding-right: 8px; +} + +popover.background.places-menu .name-button.text-button image:dir(ltr) { + margin-right: 3px; +} + +popover.background.places-menu .name-button.text-button image:dir(rtl) { + margin-left: 3px; +} + +popover.background.places-menu .places-section-header > image:dir(ltr) { + margin: 0 -2px 0 5px; +} + +popover.background.places-menu .places-section-header > image:dir(rtl) { + margin: 0 5px 0 -2px; +} + +popover.background.places-menu .places-list { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + background-color: transparent; +} + +popover.background.places-menu row { + padding: 0; + box-shadow: none; + background-image: none; +} + +.budgie-panel { + transition: background-color 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: #EEFFFF; + color: rgba(30, 37, 65, 0.7); + font-weight: 500; +} + +.budgie-panel.transparent { + background-color: rgba(238, 255, 255, 0.6); +} + +.budgie-panel button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.budgie-panel button:checked { + background-color: rgba(30, 37, 65, 0.12); +} + +.budgie-panel.horizontal button { + padding: 0 4px; +} + +.budgie-panel.vertical button { + padding: 4px 0; +} + +.budgie-panel separator { + background-color: rgba(30, 37, 65, 0.3); +} + +.budgie-panel .alert { + color: #FF5252; +} + +.budgie-panel #tasklist-button { + padding: 0 4px; +} + +.budgie-panel.vertical #tasklist-button { + min-height: 32px; +} + +.budgie-panel button.flat.launcher { + padding: 0; +} + +.budgie-panel button.flat.launcher:not(:checked) { + color: rgba(30, 37, 65, 0.5); +} + +.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active { + color: rgba(30, 37, 65, 0.7); +} + +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(30, 37, 65, 0.3); +} + +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel button.flat.launcher, .budgie-panel .top button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel button.flat.launcher:checked, .budgie-panel .top button.flat.launcher:checked, .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 { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel button.flat.launcher, .budgie-panel .bottom button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel button.flat.launcher:checked, .budgie-panel .bottom button.flat.launcher:checked, .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 { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel button.flat.launcher, .budgie-panel .left button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel button.flat.launcher:checked, .budgie-panel .left button.flat.launcher:checked, .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 { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel button.flat.launcher, .budgie-panel .right button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel button.flat.launcher:checked, .budgie-panel .right button.flat.launcher:checked, .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 { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +frame.raven-frame > border { + border-style: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +.top frame.raven-frame > border { + margin-bottom: 32px; +} + +.bottom frame.raven-frame > border { + margin-top: 32px; +} + +.left frame.raven-frame > border { + margin-right: 32px; +} + +.right frame.raven-frame > border { + margin-left: 32px; +} + +.raven { + background-color: #EEFFFF; +} + +.raven > box { + margin-bottom: -10px; +} + +.raven > stack { + margin-bottom: -10px; +} + +.raven stackswitcher.linked > button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FFA726 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 0; +} + +.raven stackswitcher.linked > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FFA726 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; +} + +.raven .raven-header { + min-height: 32px; + padding: 3px; +} + +.raven .raven-header:not(.top) { + margin-top: -6px; +} + +.raven .raven-header.top { + padding: 2px 0; + background-color: #F0719B; + color: #1E2541; +} + +.raven .raven-header.top stackswitcher button { + margin: -6px 0; + min-height: 32px; +} + +.raven .raven-header.top button.image-button:dir(ltr) { + margin-right: 2px; +} + +.raven .raven-header.top button.image-button:dir(rtl) { + margin-left: 2px; +} + +.raven .raven-header.top > image { + margin: 0 8px; +} + +.raven .raven-header.top > label { + margin: 0 -8px; + font-weight: bold; +} + +.raven .raven-header.bottom { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.raven viewport.frame .raven-header { + margin-top: -8px; +} + +.raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +.raven .raven-background.frame { + border-style: solid none; +} + +.raven .raven-background > overlay > widget > image { + color: rgba(30, 37, 65, 0.12); +} + +.raven .raven-background grid > label:first-child { + min-height: 32px; +} + +.raven scrolledwindow.raven-background { + border-bottom-style: none; +} + +.raven .raven-header.top + .raven-background { + border-style: none; + background-color: #F0719B; + color: #1E2541; +} + +.raven .raven-header.top + .raven-background stackswitcher button { + margin: -4px 0; +} + +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 10px; +} + +.raven .option-subtitle { + font-size: smaller; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} + +calendar.raven-calendar:selected { + border-radius: 2px; + background-color: #F0719B; +} + +.raven-mpris { + background-color: rgba(0, 0, 0, 0.6); + color: #1E2541; +} + +.raven-mpris label { + min-height: 24px; +} + +.raven-mpris button.image-button { + padding: 10px; +} + +.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { + background-color: transparent; +} + +.budgie-notification .notification-title, .budgie-switcher .notification-title { + font-size: 120%; +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +.drop-shadow .linked > button { + border-radius: 2px; +} + +.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { + border-radius: 2px; + background-color: #EEFFFF; +} + +.budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration { + border-radius: 2px; +} + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + font-size: 120%; +} + +.budgie-session-dialog .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; +} + +.budgie-session-dialog .linked.horizontal > button:first-child { + border-bottom-left-radius: 2px; +} + +.budgie-session-dialog .linked.horizontal > button:last-child { + border-bottom-right-radius: 2px; +} + +.budgie-polkit-dialog .message { + color: rgba(30, 37, 65, 0.38); +} + +.budgie-polkit-dialog .failure { + color: #FF5252; +} + +.budgie-run-dialog { + background-color: #EEFFFF; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 6px 14px; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: transparent; +} + +.budgie-run-dialog list .dim-label, .budgie-run-dialog list label.separator, .budgie-run-dialog list .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) .budgie-run-dialog list .subtitle, +.budgie-run-dialog list headerbar .subtitle, headerbar .budgie-run-dialog list .subtitle, .budgie-run-dialog list .budgie-notification .notification-body, .budgie-notification .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-switcher .notification-body, .budgie-switcher .budgie-run-dialog list .notification-body { + opacity: 1; +} + +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +/************************ + * LightDM GTK+ Greeter * + ************************/ +#panel_window { + background-color: rgba(238, 255, 255, 0.3); + color: #1E2541; +} + +#panel_window menubar, +#panel_window separator { + background-color: transparent; +} + +#panel_window separator { + padding: 0 4px; +} + +#panel_window separator:first-child { + padding: 0 8px; +} + +#panel_window menubar > menuitem { + color: rgba(30, 37, 65, 0.7); +} + +#panel_window menubar > menuitem:hover { + color: #1E2541; +} + +#panel_window menubar > menuitem:disabled label { + color: rgba(30, 37, 65, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +#content_frame { + padding-bottom: 20px; + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +#buttonbox_frame { + padding-top: 24px; +} + +#buttonbox_frame button { + margin: -16px; +} + +#greeter_infobar { + margin-top: -1px; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #1E2541; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #1E2541; +/* +widget base background color */ +@define-color theme_bg_color #EEFFFF; +/* +text widgets and the like base background color */ +@define-color theme_base_color #EEFFFF; +/* +base background color of selections */ +@define-color theme_selected_bg_color #F0719B; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #1E2541; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #EEFFFF; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(30, 37, 65, 0.38); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #eeffff; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #1E2541; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #1E2541; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #EEFFFF; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #EEFFFF; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #F0719B; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #1E2541; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(30, 37, 65, 0.38); +/* +widgets main borders color */ +@define-color borders rgba(30, 37, 65, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(30, 37, 65, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #FF6D00; +@define-color error_color #DD2C00; +@define-color success_color #00C853; +/* +FIXME this is really an API */ +@define-color content_view_bg #EEFFFF; +@define-color placeholder_text_color #7e8998; diff --git a/gtk/manta/gtk-3.22/assets b/gtk/manta/gtk-3.22/assets new file mode 120000 index 0000000..ac77667 --- /dev/null +++ b/gtk/manta/gtk-3.22/assets @@ -0,0 +1 @@ +../gtk-assets \ No newline at end of file diff --git a/gtk/manta/gtk-3.22/gtk.css b/gtk/manta/gtk-3.22/gtk.css new file mode 100644 index 0000000..389ffd6 --- /dev/null +++ b/gtk/manta/gtk-3.22/gtk.css @@ -0,0 +1,6086 @@ +@keyframes ripple_effect { + to { + background-size: 1000% 1000%; + } +} + +@keyframes header_ripple_effect { + from { + background-image: radial-gradient(circle farthest-corner at center, #F0719B 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle farthest-corner at center, #F0719B 100%, transparent 0%); + } +} + +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #DD2C00; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + outline-style: solid; + outline-width: 2px; + outline-color: transparent; + outline-offset: -4px; + -gtk-outline-radius: 2px; + -gtk-secondary-caret-color: #F0719B; +} + +switch:focus slider, +notebook:focus tab, +*:focus { + outline-color: alpha(currentColor, 0.3); +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #EEFFFF; + color: #1E2541; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #EEFFFF; + color: #1E2541; +} + +.gtkstyle-fallback:hover { + background-color: #d5ffff; + color: #1E2541; +} + +.gtkstyle-fallback:active { + background-color: #bbffff; + color: #1E2541; +} + +.gtkstyle-fallback:disabled { + background-color: #EEFFFF; + color: rgba(30, 37, 65, 0.38); +} + +.gtkstyle-fallback:selected { + background-color: #F0719B; + color: #1E2541; +} + +.view { + background-color: #EEFFFF; + color: #1E2541; +} + +.view:disabled { + color: rgba(30, 37, 65, 0.38); +} + +.view:hover, .view:active, .view:selected { + border-radius: 2px; +} + +textview text { + background-color: #EEFFFF; +} + +textview border { + background-color: #eeffff; + color: rgba(30, 37, 65, 0.38); +} + +.rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband { + border: 1px solid #ff91bb; + background-color: rgba(255, 145, 187, 0.3); +} + +flowbox flowboxchild { + padding: 4px; + border-radius: 2px; +} + +.content-view .tile:selected { + background-color: transparent; + color: inherit; +} + +label { + caret-color: currentColor; +} + +label.separator { + color: #1E2541; +} + +label selection { + background-color: #F0719B; + color: #1E2541; +} + +label:disabled { + color: rgba(30, 37, 65, 0.38); +} + +tab label:disabled, +button label:disabled { + color: inherit; +} + +.dim-label, label.separator, .titlebar:not(headerbar) .subtitle, +headerbar .subtitle, .budgie-notification .notification-body, .budgie-switcher .notification-body { + opacity: 0.6; +} + +assistant .sidebar { + padding: 4px 0; +} + +assistant .sidebar label { + min-height: 32px; + padding: 0 12px; + color: rgba(30, 37, 65, 0.38); + font-weight: 500; +} + +assistant .sidebar label.highlight { + color: #1E2541; +} + +popover.background.touch-selection, popover.background.magnifier, popover.background.osd, .app-notification, .osd .scale-popup, .nautilus-window .floating-bar, .osd { + opacity: 0.9; +} + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); + } +} + +spinner { + background: none; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); +} + +spinner:checked { + opacity: 1; + animation: spin 1s linear infinite; +} + +spinner:checked:disabled { + opacity: 0.5; +} + +/**************** + * Text Entries * + ****************/ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding: 0 8px; + border-radius: 2px; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; + color: #1E2541; +} + +spinbutton:focus:not(.vertical), +entry:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #eeffff; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) entry:not(.search), +notebook > stack:not(:only-child) spinbutton:not(.vertical), messagedialog entry, colorchooser .popover.osd spinbutton:not(.vertical), entry.preferences-search, layoutpane entry.search, editortweak entry.search, .raven .raven-background spinbutton:not(.vertical), #login_window entry, +entry.flat { + border-radius: 0; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.26); + background-color: transparent; + color: #1E2541; +} + +spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry:focus:not(.search), +notebook > stack:not(:only-child) spinbutton:focus:not(.vertical), messagedialog entry:focus, colorchooser .popover.osd spinbutton:focus:not(.vertical), entry.preferences-search:focus, layoutpane entry.search:focus, editortweak entry.search:focus, .raven .raven-background spinbutton:focus:not(.vertical), #login_window entry:focus, +entry.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.26); +} + +spinbutton.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton:disabled:not(.vertical), messagedialog entry:disabled, colorchooser .popover.osd spinbutton:disabled:not(.vertical), entry.preferences-search:disabled, layoutpane entry.search:disabled, editortweak entry.search:disabled, .raven .raven-background spinbutton:disabled:not(.vertical), #login_window entry:disabled, +entry.flat:disabled { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton:not(.vertical) image, +entry image { + color: rgba(29, 160, 226, 0.54); +} + +spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active, +entry image:hover, +entry image:active { + color: #1E2541; +} + +spinbutton:not(.vertical) image:disabled, +entry image:disabled { + color: rgba(30, 37, 65, 0.38); +} + +spinbutton:not(.vertical) image.left, +entry image.left { + margin-left: 0px; + margin-right: 6px; +} + +spinbutton:not(.vertical) image.right, +entry image.right { + margin-left: 6px; + margin-right: 0px; +} + +spinbutton:not(.vertical) undershoot.left, +entry undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +spinbutton:not(.vertical) undershoot.right, +entry undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +spinbutton.error:not(.vertical), +entry.error { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #DD2C00; + color: #1E2541; +} + +spinbutton.error:focus:not(.vertical), +entry.error:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #eeffff; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.error.flat:not(.vertical), notebook > stack:not(:only-child) entry.error:not(.search), +notebook > stack:not(:only-child) spinbutton.error:not(.vertical), messagedialog entry.error, colorchooser .popover.osd spinbutton.error:not(.vertical), entry.error.preferences-search, layoutpane entry.error.search, editortweak entry.error.search, .raven .raven-background spinbutton.error:not(.vertical), #login_window entry.error, +entry.error.flat { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #DD2C00 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px #DD2C00; + background-color: transparent; + color: #1E2541; +} + +spinbutton.error.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.error:focus:not(.search), +notebook > stack:not(:only-child) spinbutton.error:focus:not(.vertical), messagedialog entry.error:focus, colorchooser .popover.osd spinbutton.error:focus:not(.vertical), entry.error.preferences-search:focus, layoutpane entry.error.search:focus, editortweak entry.error.search:focus, .raven .raven-background spinbutton.error:focus:not(.vertical), #login_window entry.error:focus, +entry.error.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #DD2C00 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px #DD2C00; +} + +spinbutton.error.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.error:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton.error:disabled:not(.vertical), messagedialog entry.error:disabled, colorchooser .popover.osd spinbutton.error:disabled:not(.vertical), entry.error.preferences-search:disabled, layoutpane entry.error.search:disabled, editortweak entry.error.search:disabled, .raven .raven-background spinbutton.error:disabled:not(.vertical), #login_window entry.error:disabled, +entry.error.flat:disabled { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.error:not(.vertical) image, +entry.error image { + color: rgba(30, 37, 65, 0.7); +} + +spinbutton.error:not(.vertical) image:hover, spinbutton.error:not(.vertical) image:active, +entry.error image:hover, +entry.error image:active { + color: #1E2541; +} + +spinbutton.error:not(.vertical) image:disabled, +entry.error image:disabled { + color: rgba(30, 37, 65, 0.5); +} + +spinbutton.warning:not(.vertical), +entry.warning { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #FF6D00; + color: #1E2541; +} + +spinbutton.warning:focus:not(.vertical), +entry.warning:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #eeffff; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.warning.flat:not(.vertical), notebook > stack:not(:only-child) entry.warning:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:not(.vertical), messagedialog entry.warning, colorchooser .popover.osd spinbutton.warning:not(.vertical), entry.warning.preferences-search, layoutpane entry.warning.search, editortweak entry.warning.search, .raven .raven-background spinbutton.warning:not(.vertical), #login_window entry.warning, +entry.warning.flat { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FF6D00 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px #FF6D00; + background-color: transparent; + color: #1E2541; +} + +spinbutton.warning.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.warning:focus:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:focus:not(.vertical), messagedialog entry.warning:focus, colorchooser .popover.osd spinbutton.warning:focus:not(.vertical), entry.warning.preferences-search:focus, layoutpane entry.warning.search:focus, editortweak entry.warning.search:focus, .raven .raven-background spinbutton.warning:focus:not(.vertical), #login_window entry.warning:focus, +entry.warning.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FF6D00 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px #FF6D00; +} + +spinbutton.warning.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.warning:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:disabled:not(.vertical), messagedialog entry.warning:disabled, colorchooser .popover.osd spinbutton.warning:disabled:not(.vertical), entry.warning.preferences-search:disabled, layoutpane entry.warning.search:disabled, editortweak entry.warning.search:disabled, .raven .raven-background spinbutton.warning:disabled:not(.vertical), #login_window entry.warning:disabled, +entry.warning.flat:disabled { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.warning:not(.vertical) image, +entry.warning image { + color: rgba(30, 37, 65, 0.7); +} + +spinbutton.warning:not(.vertical) image:hover, spinbutton.warning:not(.vertical) image:active, +entry.warning image:hover, +entry.warning image:active { + color: #1E2541; +} + +spinbutton.warning:not(.vertical) image:disabled, +entry.warning image:disabled { + color: rgba(30, 37, 65, 0.5); +} + +spinbutton:not(.vertical) progress, +entry progress { + margin: 2px -6px; + border-bottom: 2px solid #F0719B; + background-color: transparent; +} + +.linked:not(.vertical) > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) .linked:not(.vertical) > entry:not(.search), +notebook > stack:not(:only-child) .linked:not(.vertical) > spinbutton:not(.vertical), messagedialog .linked:not(.vertical) > entry, colorchooser .popover.osd .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry.preferences-search, layoutpane .linked:not(.vertical) > entry.search, editortweak .linked:not(.vertical) > entry.search, .raven .raven-background .linked:not(.vertical) > spinbutton:not(.vertical), #login_window .linked:not(.vertical) > entry, +.linked.vertical > spinbutton.flat:not(.vertical), +notebook > stack:not(:only-child) .linked.vertical > entry:not(.search), +notebook > stack:not(:only-child) .linked.vertical > spinbutton:not(.vertical), +messagedialog .linked.vertical > entry, +colorchooser .popover.osd .linked.vertical > spinbutton:not(.vertical), +.linked.vertical > entry.preferences-search, +layoutpane .linked.vertical > entry.search, +editortweak .linked.vertical > entry.search, +.raven .raven-background .linked.vertical > spinbutton:not(.vertical), +#login_window .linked.vertical > entry, .linked:not(.vertical) > +entry.flat, +.linked.vertical > +entry.flat { + border-radius: 0; +} + +treeview entry.flat, treeview entry { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: #EEFFFF; +} + +treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .documents-entry-tag, .photos-entry-tag { + margin: 4px; + border-radius: 9999px; + box-shadow: none; + background-color: #F0719B; + color: #1E2541; +} + +.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag { + margin-left: 8px; + margin-right: -4px; + padding-left: 8px; + padding-right: 4px; +} + +:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag { + margin-left: -4px; + margin-right: 8px; + padding-left: 4px; + padding-right: 8px; +} + +.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active) { + color: rgba(30, 37, 65, 0.7); +} + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#57C7FF), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#57C7FF), to(transparent)); + } +} + + +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 2px; + font-weight: 500; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1), background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 9999px transparent; + background-color: #EEFFFF; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #1DA0E2; +} + + +button:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px transparent; + color: #1E2541; +} + + +button:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px alpha(currentColor, 0.15); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%); + background-size: 0% 0%; + color: #1E2541; +} + + +button:disabled { + box-shadow: none; + background-color: rgba(30, 37, 65, 0.12); + color: rgba(29, 160, 226, 0.26); +} + + +button:checked { + background-color: #F0719B; + color: #1E2541; +} + + +button:checked:disabled { + background-color: rgba(240, 113, 155, 0.3); + color: rgba(240, 113, 155, 0.5); +} + +modelbutton.flat, +.menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, popover.background.menu button, +popover.background button.model, notebook > header > tabs > arrow, scrollbar button, check, +radio, calendar.button, messagedialog.csd .dialog-action-area button, button.sidebar-button, .gedit-search-slider button, popover.messagepopover .popover-action-area button, #mate-menu button, .budgie-settings-window buttonbox.inline-toolbar button, .raven .raven-header:not(.top) button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, .lightdm-gtk-greeter button, :not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) .path-bar button, layouttabbar button, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, toolbar button, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button, +button.flat { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px transparent; + background-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: rgba(29, 160, 226, 0.54); +} + +modelbutton.flat:hover, +.menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, spinbutton.vertical button:hover, popover.background.menu button:hover, +popover.background button.model:hover, notebook > header > tabs > arrow:hover, scrollbar button:hover, check:hover, +radio:hover, calendar.button:hover, messagedialog.csd .dialog-action-area button:hover, button.sidebar-button:hover, .gedit-search-slider button:hover, popover.messagepopover .popover-action-area button:hover, #mate-menu button:hover, .budgie-settings-window buttonbox.inline-toolbar button:hover, .raven .raven-header:not(.top) button:hover, .drop-shadow button:hover, .budgie-session-dialog .linked.horizontal > button:hover, .lightdm-gtk-greeter button:hover, :not(headerbar) .caja-pathbar button:hover, .caja-pathbar :not(headerbar) button:hover, :not(headerbar) .path-bar button:hover, layouttabbar button:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, toolbar button:hover, .titlebar:not(headerbar) button:hover:not(.suggested-action):not(.destructive-action), +headerbar button:hover:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:hover, +button.flat:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15); + color: #1E2541; +} + +modelbutton.flat:active, +.menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, popover.background.menu button:active, +popover.background button.model:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active, +radio:active, calendar.button:active, messagedialog.csd .dialog-action-area button:active, button.sidebar-button:active, .gedit-search-slider button:active, popover.messagepopover .popover-action-area button:active, #mate-menu button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, .raven .raven-header:not(.top) button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, .lightdm-gtk-greeter button:active, :not(headerbar) .caja-pathbar button:active, .caja-pathbar :not(headerbar) button:active, :not(headerbar) .path-bar button:active, layouttabbar button:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, toolbar button:active, .titlebar:not(headerbar) button:active:not(.suggested-action):not(.destructive-action), +headerbar button:active:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:active, +button.flat:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%); + background-size: 0% 0%; + color: #1E2541; +} + +modelbutton.flat:disabled, +.menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, popover.background.menu button:disabled, +popover.background button.model:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled, +radio:disabled, calendar.button:disabled, messagedialog.csd .dialog-action-area button:disabled, button.sidebar-button:disabled, .gedit-search-slider button:disabled, popover.messagepopover .popover-action-area button:disabled, #mate-menu button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, .raven .raven-header:not(.top) button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, .lightdm-gtk-greeter button:disabled, :not(headerbar) .caja-pathbar button:disabled, .caja-pathbar :not(headerbar) button:disabled, :not(headerbar) .path-bar button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, toolbar button:disabled, .titlebar:not(headerbar) button:disabled:not(.suggested-action):not(.destructive-action), +headerbar button:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:disabled, +button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(29, 160, 226, 0.26); +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .path-bar button:checked, layouttabbar button:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, toolbar button:checked, .titlebar:not(headerbar) button:checked:not(.suggested-action):not(.destructive-action), +headerbar button:checked:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked, +button.flat:checked { + background-color: rgba(30, 37, 65, 0.26); + color: #1E2541; +} + +:not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) .path-bar button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, toolbar button:checked:disabled, .titlebar:not(headerbar) button:checked:disabled:not(.suggested-action):not(.destructive-action), +headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked:disabled, +button.flat:checked:disabled { + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + + +button.text-button { + padding-left: 16px; + padding-right: 16px; +} + + +button.image-button { + min-width: 24px; + padding: 4px; +} + + +button.text-button.image-button { + border-radius: 2px; + -gtk-outline-radius: 2px; +} + + +button.text-button.image-button label:first-child { + margin-left: 12px; +} + + +button.text-button.image-button label:last-child { + margin-right: 12px; +} + + +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} + +toolbar .linked > button, .titlebar:not(headerbar) .linked > button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button, +toolbar .linked.vertical > button, +.titlebar:not(headerbar) .linked.vertical > button:not(.suggested-action):not(.destructive-action), +headerbar .linked.vertical > button:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box .linked.vertical > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), +.app-notification .linked.vertical > button, .linked > +button.flat, +.linked.vertical > +button.flat { + border-radius: 2px; +} + +toolbar .linked > button.text-button.image-button, .titlebar:not(headerbar) .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.text-button.image-button, +toolbar .linked.vertical > button.text-button.image-button, +.titlebar:not(headerbar) .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), +.app-notification .linked.vertical > button.text-button.image-button, .linked > +button.flat.text-button.image-button, +.linked.vertical > +button.flat.text-button.image-button { + border-radius: 2px; + -gtk-outline-radius: 2px; +} + +infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, row:selected +button:disabled { + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.3); +} + +row:selected button.sidebar-button, infobar.info button.flat, infobar.question button.flat, infobar.warning button.flat, infobar.error button.flat, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, .raven-mpris button.image-button, row:selected +button.flat { + color: rgba(30, 37, 65, 0.7); +} + +row:selected button.sidebar-button:hover, infobar.info button.flat:hover, infobar.question button.flat:hover, infobar.warning button.flat:hover, infobar.error button.flat:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, .raven-mpris button.image-button:hover, row:selected button.sidebar-button:active, infobar.info button.flat:active, infobar.question button.flat:active, infobar.warning button.flat:active, infobar.error button.flat:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, .raven-mpris button.image-button:active, row:selected +button.flat:hover, row:selected +button.flat:active { + color: #1E2541; +} + +row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.question button.flat:disabled, infobar.warning button.flat:disabled, infobar.error button.flat:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, .raven-mpris button.image-button:disabled, row:selected +button.flat:disabled { + color: rgba(30, 37, 65, 0.3); +} + +row:selected button.sidebar-button:checked, infobar.info button.flat:checked, infobar.question button.flat:checked, infobar.warning button.flat:checked, infobar.error button.flat:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, .raven-mpris button.image-button:checked, row:selected +button.flat:checked { + background-color: rgba(30, 37, 65, 0.3); + color: #1E2541; +} + +row:selected button.sidebar-button:checked:disabled, infobar.info button.flat:checked:disabled, infobar.question button.flat:checked:disabled, infobar.warning button.flat:checked:disabled, infobar.error button.flat:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .raven-mpris button.image-button:checked:disabled, row:selected +button.flat:checked:disabled { + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.5); +} + + +button.osd { + padding: 10px 14px; +} + + +button.osd.image-button { + padding: 10px; +} + + +button.osd:disabled { + opacity: 0; +} + + +button.suggested-action { + background-color: #57C7FF; + color: #1E2541; +} + + +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + + +button.suggested-action:checked { + background-color: #4696c6; +} + + +button.suggested-action.flat { + background-color: transparent; + color: #57C7FF; +} + + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + + +button.suggested-action.flat:checked { + background-color: rgba(87, 199, 255, 0.3); +} + + +button.destructive-action { + background-color: #FF5252; + color: #1E2541; +} + + +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + + +button.destructive-action:checked { + background-color: #bc454d; +} + + +button.destructive-action.flat { + background-color: transparent; + color: #FF5252; +} + + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(30, 37, 65, 0.38); +} + + +button.destructive-action.flat:checked { + background-color: rgba(255, 82, 82, 0.3); +} + +.stack-switcher > +button { + outline-offset: -4px; +} + +.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:checked > label, +.stack-switcher > +button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +.primary-toolbar +button { + -gtk-icon-shadow: none; +} + + +button.image-button, toolbar .linked > button.image-button, .titlebar:not(headerbar) .linked > button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.image-button, toolbar .linked.vertical > button.image-button, +headerbar .linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action), .app-notification .linked.vertical > button.image-button, .linked > button.flat.image-button, +.linked.vertical > button.flat.image-button, .inline-toolbar button:not(.text-button), check, +radio, button.titlebutton, .nautilus-window headerbar > revealer > button, .raven .raven-header:not(.top) button.image-button, .raven .expander-button, +button.close, +button.circular { + border-radius: 9999px; + -gtk-outline-radius: 9999px; +} + +spinbutton:not(.vertical) button, notebook > header tab button.flat, button.sidebar-button, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider button:dir(ltr), .gedit-search-slider button:dir(rtl), .pluma-window paned.horizontal box.vertical box.horizontal button.flat { + min-height: 20px; + min-width: 20px; + padding: 0; + border-radius: 9999px; + -gtk-outline-radius: 9999px; +} + +.stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { + animation: needs_attention 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +.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; +} + +.linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > button, .linked:not(.vertical) > combobox > box > button.combo { + border-radius: 0; + -gtk-outline-radius: 2px; +} + +.linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} + +.linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} + +.linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo { + border-radius: 2px; +} + +.linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button, .linked.vertical > combobox > box > button.combo { + border-radius: 0; + -gtk-outline-radius: 2px; +} + +.linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +.linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +.linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo { + border-radius: 2px; +} + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 2px; + color: inherit; +} + +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 { + min-height: 20px; + min-width: 20px; + padding: 6px; +} + +/********* + * Links * + *********/ +*:link, button:link, +button:visited, *:link:hover, button:hover:link, +button:hover:visited, *:link:active, button:active:link, +button:active:visited { + color: #F0719B; +} + +*:link:visited, +button:visited, *:link:visited:hover, +button:visited:hover, *:link:visited:active, +button:visited:active { + color: #E040FB; +} + +infobar.info *:link, infobar.info button:link, +infobar.info button:visited, infobar.question *:link, infobar.question button:link, +infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, +infobar.warning button:visited, infobar.error *:link, infobar.error button:link, +infobar.error button:visited, *:link:selected, button:selected:link, +button:selected:visited, .selection-mode.titlebar:not(headerbar) .subtitle:link, +headerbar.selection-mode .subtitle:link, +*:selected *:link, +*:selected button:link, +*:selected button:visited { + color: #1E2541; +} + +button:link > label, +button:visited > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton:not(.vertical) { + padding: 0; +} + +notebook > stack:not(:only-child) spinbutton:not(.vertical) entry, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:focus, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:disabled, +spinbutton:not(.vertical) entry { + min-width: 28px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +spinbutton:not(.vertical) button { + border: solid 6px transparent; +} + +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -3px; +} + +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -3px; +} + +spinbutton.vertical:disabled { + color: rgba(30, 37, 65, 0.38); +} + +spinbutton.vertical:drop(active) { + box-shadow: none; +} + +spinbutton.vertical entry { + min-height: 32px; + min-width: 44px; + padding: 0; +} + +spinbutton.vertical button { + min-height: 32px; + min-width: 44px; + padding: 0; +} + +spinbutton.vertical button.up { + border-radius: 2px 2px 0 0; +} + +spinbutton.vertical button.down { + border-radius: 0 0 2px 2px; +} + +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} + +treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; +} + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +combobox decoration, +combobox button.combo:checked { + transition: none; +} + +combobox button.combo cellview:dir(ltr) { + margin-left: 0px; +} + +combobox button.combo cellview:dir(rtl) { + margin-right: 0px; +} + +combobox #gtk-combobox-popup-menu { + padding: 2px 0; +} + +combobox #gtk-combobox-popup-menu menuitem { + min-height: 28px; + padding: 0 8px; +} + +combobox #gtk-combobox-popup-menu > arrow.top { + margin-top: -2px; +} + +combobox #gtk-combobox-popup-menu > arrow.bottom { + margin-bottom: -6px; +} + +combobox:drop(active) { + box-shadow: none; +} + +notebook > stack:not(:only-child) button.combo, .raven .raven-background button.combo, #login_window #user_combobox button { + border-radius: 0; + background-image: none; + font-weight: inherit; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.26); + background-color: transparent; + color: #1E2541; +} + +notebook > stack:not(:only-child) button.combo:hover, .raven .raven-background button.combo:hover, #login_window #user_combobox button:hover { + box-shadow: inset 0 -2px rgba(30, 37, 65, 0.38); +} + +notebook > stack:not(:only-child) button.combo:checked, .raven .raven-background button.combo:checked, #login_window #user_combobox button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 100%, transparent 0%) 0 0 2/0 0 2px; +} + +notebook > stack:not(:only-child) button.combo:disabled, .raven .raven-background button.combo:disabled, #login_window #user_combobox button:disabled { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + +/************ + * Toolbars * + ************/ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; + background-color: #EEFFFF; +} + +.osd toolbar { + background-color: transparent; +} + +toolbar.osd, .app-notification, frame.documents-dropdown { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(238, 255, 255, 0.4); +} + +toolbar.osd.left, .left.app-notification, frame.left.documents-dropdown, toolbar.osd.right, .right.app-notification, frame.right.documents-dropdown, toolbar.osd.top, .top.app-notification, frame.top.documents-dropdown, toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown { + border-radius: 0; +} + +toolbar.horizontal > separator { + margin: 2px; +} + +toolbar.vertical > separator { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) scale, +toolbar:not(.inline-toolbar):not(.osd) entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton, +toolbar:not(.inline-toolbar):not(.osd) button { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { + margin-left: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { + margin-right: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton button { + margin: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) switch { + margin: 8px 2px; +} + +.inline-toolbar { + padding: 6px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #eeffff; +} + +searchbar, +.location-bar { + padding: 6px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + background-clip: border-box; +} + +/*************** + * Header bars * + ***************/ +.titlebar:not(headerbar), +headerbar { + transition: background-color 180ms cubic-bezier(0, 0, 0.2, 1), color 270ms cubic-bezier(0, 0, 0.2, 1); + min-height: 44px; + padding: 0 6px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px #EEFFFF; + background-color: #EEFFFF; + color: #1E2541; +} + +.titlebar:disabled:not(headerbar) :not(button) > label, +headerbar:disabled :not(button) > label { + color: rgba(30, 37, 65, 0.38); +} + +.titlebar:backdrop:not(headerbar), +headerbar:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +.titlebar:backdrop:disabled:not(headerbar) :not(button) > label, +headerbar:backdrop:disabled :not(button) > label { + color: rgba(30, 37, 65, 0.26); +} + +.titlebar:not(headerbar) .title, +headerbar .title { + padding: 0 12px; + font-weight: bold; +} + +.titlebar:not(headerbar) .subtitle, +headerbar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +.titlebar:not(headerbar) .linked:not(.vertical) > entry:not(.flat), +headerbar .linked:not(.vertical) > entry:not(.flat) { + border-radius: 2px; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 0%, transparent 0%) 0 0 0/0 0 0px; + color: rgba(30, 37, 65, 0.54); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active, +headerbar button:not(.suggested-action):not(.destructive-action):hover, +headerbar button:not(.suggested-action):not(.destructive-action):active { + color: #1E2541; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled, +headerbar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(30, 37, 65, 0.26); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, +headerbar button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 100%, transparent 0%) 0 0 2/0 0 2px; + color: #1E2541; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(30, 37, 65, 0.38); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):checked, +headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(30, 37, 65, 0.38); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:active, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:hover, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:active { + color: rgba(30, 37, 65, 0.54); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(30, 37, 65, 0.26); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(30, 37, 65, 0.54); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(30, 37, 65, 0.26); +} + +.titlebar:not(headerbar) button.suggested-action:disabled, .titlebar:not(headerbar) button.destructive-action:disabled, +headerbar button.suggested-action:disabled, +headerbar button.destructive-action:disabled { + background-color: rgba(30, 37, 65, 0.12); + color: rgba(30, 37, 65, 0.38); +} + +.selection-mode.titlebar:not(headerbar), +headerbar.selection-mode { + transition: background-color 0.00001s 270ms, color 270ms cubic-bezier(0, 0, 0.2, 1); + animation: header_ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(238, 255, 255, 0.2); + background-color: #F0719B; + color: #1E2541; +} + +.selection-mode.titlebar:backdrop:not(headerbar), +headerbar.selection-mode:backdrop { + color: rgba(30, 37, 65, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: #1E2541; +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(30, 37, 65, 0.5); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; + color: #1E2541; +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(30, 37, 65, 0.5); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(30, 37, 65, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(30, 37, 65, 0.3); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(30, 37, 65, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(30, 37, 65, 0.3); +} + +.selection-mode.titlebar:not(headerbar) .selection-menu, +headerbar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.selection-mode.titlebar:not(headerbar) .selection-menu arrow, +headerbar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; +} + +.selection-mode.titlebar:not(headerbar) .selection-menu .arrow, +headerbar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.tiled .titlebar:not(headerbar), +.tiled-top .titlebar:not(headerbar), +.tiled-right .titlebar:not(headerbar), +.tiled-bottom .titlebar:not(headerbar), +.tiled-left .titlebar:not(headerbar), +.maximized .titlebar:not(headerbar), +.fullscreen .titlebar:not(headerbar), .tiled +headerbar, +.tiled-top +headerbar, +.tiled-right +headerbar, +.tiled-bottom +headerbar, +.tiled-left +headerbar, +.maximized +headerbar, +.fullscreen +headerbar { + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.default-decoration.titlebar:not(headerbar), +headerbar.default-decoration { + min-height: 20px; + padding: 6px; + box-shadow: inset 0 1px #EEFFFF; +} + +.tiled .default-decoration.titlebar:not(headerbar), +.maximized .default-decoration.titlebar:not(headerbar), +.fullscreen .default-decoration.titlebar:not(headerbar), .tiled +headerbar.default-decoration, +.maximized +headerbar.default-decoration, +.fullscreen +headerbar.default-decoration { + box-shadow: none; +} + +.default-decoration.titlebar:not(headerbar) button.titlebutton, +headerbar.default-decoration button.titlebutton { + min-height: 20px; + min-width: 20px; + margin: 0; + padding: 0; +} + +.background:not(.csd) .default-decoration.titlebar:not(headerbar) button.titlebutton:active, .background:not(.csd) +headerbar.default-decoration button.titlebutton:active { + background-size: 1000% 1000%; +} + +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 6px; + margin-bottom: 6px; +} + +headerbar switch { + margin-top: 12px; + margin-bottom: 12px; +} + +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} + +.background .titlebar { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +.background.tiled .titlebar, +.background.tiled-top .titlebar, +.background.tiled-right .titlebar, +.background.tiled-bottom .titlebar, +.background.tiled-left .titlebar, +.background.maximized .titlebar, +.background.solid-csd .titlebar { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +window separator:first-child + headerbar, +window headerbar:first-child { + border-top-left-radius: 2px; +} + +window headerbar:last-child { + border-top-right-radius: 2px; +} + +window stack headerbar:first-child, window stack headerbar:last-child { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +window.tiled headerbar, window.tiled headerbar:first-child, window.tiled headerbar:last-child, window.tiled headerbar:only-child, +window.tiled-top headerbar, +window.tiled-top headerbar:first-child, +window.tiled-top headerbar:last-child, +window.tiled-top headerbar:only-child, +window.tiled-right headerbar, +window.tiled-right headerbar:first-child, +window.tiled-right headerbar:last-child, +window.tiled-right headerbar:only-child, +window.tiled-bottom headerbar, +window.tiled-bottom headerbar:first-child, +window.tiled-bottom headerbar:last-child, +window.tiled-bottom headerbar:only-child, +window.tiled-left headerbar, +window.tiled-left headerbar:first-child, +window.tiled-left headerbar:last-child, +window.tiled-left headerbar:only-child, +window.maximized headerbar, +window.maximized headerbar:first-child, +window.maximized headerbar:last-child, +window.maximized headerbar:only-child, +window.fullscreen headerbar, +window.fullscreen headerbar:first-child, +window.fullscreen headerbar:last-child, +window.fullscreen headerbar:only-child, +window.solid-csd headerbar, +window.solid-csd headerbar:first-child, +window.solid-csd headerbar:last-child, +window.solid-csd headerbar:only-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +window.csd > .titlebar:not(headerbar) { + padding: 0; + background-color: transparent; + background-image: none; + border-style: none; + box-shadow: none; +} + +.titlebar:not(headerbar) > separator { + background-color: #EEFFFF; + background-image: image(rgba(30, 37, 65, 0.12)); +} + +/************ + * Pathbars * + ************/ +.caja-pathbar button, +.path-bar button { + padding-left: 4px; + padding-right: 4px; +} + +.caja-pathbar button label:not(:only-child):first-child, +.path-bar button label:not(:only-child):first-child { + margin-left: 4px; +} + +.caja-pathbar button label:not(:only-child):last-child, +.path-bar button label:not(:only-child):last-child { + margin-right: 4px; +} + +.caja-pathbar button.slider-button, +.path-bar button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +:not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) +.path-bar button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 2px; +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) +.path-bar button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #F0719B 100%, transparent 0%) 0 0 2/0 0 2px; +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) +.path-bar button:checked, :not(headerbar) +.path-bar button:checked:disabled { + background-color: transparent; +} + +/************** + * Tree Views * + **************/ +treeview.view { + border-left-color: rgba(30, 37, 65, 0.26); + border-top-color: rgba(30, 37, 65, 0.12); +} + +* { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; +} + +treeview.view:selected { + border-left-color: rgba(30, 37, 65, 0.3); +} + +treeview.view:hover, treeview.view:active, treeview.view:selected { + border-radius: 0; +} + +treeview.view.separator { + min-height: 5px; + color: rgba(30, 37, 65, 0.12); +} + +treeview.view:drop(active) { + border-style: solid none; + border-width: 1px; + border-color: #57C7FF; +} + +treeview.view:drop(active).after { + border-top-style: none; +} + +treeview.view:drop(active).before { + border-bottom-style: none; +} + +treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(29, 160, 226, 0.54); +} + +treeview.view.expander:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view.expander:checked { + -gtk-icon-transform: unset; +} + +treeview.view.expander:hover, treeview.view.expander:active { + color: #1E2541; +} + +treeview.view.expander:disabled { + color: rgba(29, 160, 226, 0.26); +} + +treeview.view.expander:selected { + color: rgba(30, 37, 65, 0.7); +} + +treeview.view.expander:selected:hover, treeview.view.expander:selected:active { + color: #1E2541; +} + +treeview.view.expander:selected:disabled { + color: rgba(30, 37, 65, 0.3); +} + +treeview.view.progressbar { + border-bottom: 4px solid #F0719B; + box-shadow: none; + background-color: transparent; +} + +treeview.view.progressbar:selected { + border-bottom-color: #1E2541; +} + +treeview.view.trough { + border-bottom: 4px solid rgba(240, 113, 155, 0.3); + box-shadow: none; + background-color: transparent; +} + +treeview.view.trough:selected { + border-bottom-color: rgba(30, 37, 65, 0.3); +} + +treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + border-radius: 0; + background-clip: border-box; +} + +treeview.view header button, treeview.view header button:hover, treeview.view header button:active { + box-shadow: none; +} + +treeview.view header button, treeview.view header button:disabled { + background-color: #EEFFFF; +} + +treeview.view header button:last-child { + border-right-style: none; +} + +treeview.view button.dnd, +treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #EEFFFF; + background-clip: border-box; + color: #F0719B; +} + +treeview.view acceleditor > label { + background-color: #F0719B; +} + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #EEFFFF; +} + +menubar > menuitem, +.menubar > menuitem { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(30, 37, 65, 0.54); +} + +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(30, 37, 65, 0.26); +} + +menubar > menuitem label:disabled, +.menubar > menuitem label:disabled { + color: inherit; +} + +.csd.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 4px 0; + padding: 4px 0; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; + border: 1px solid rgba(30, 37, 65, 0.12); +} + +.csd menu, .csd +.menu, .csd +.context-menu { + border: none; + border-radius: 2px; +} + +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 180ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + min-width: 40px; + padding: 4px 8px; + font: initial; + text-shadow: none; +} + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + transition: none; + background-color: rgba(30, 37, 65, 0.12); +} + +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(30, 37, 65, 0.38); +} + +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: 8px; +} + +menu menuitem arrow:dir(rtl), +.menu menuitem arrow:dir(rtl), +.context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 8px; +} + +menu 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 { + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #EEFFFF; + color: rgba(29, 160, 226, 0.54); +} + +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 2px 2px 0 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin-bottom: -12px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0 0 2px 2px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(rgba(30, 37, 65, 0.12)); + color: #1E2541; +} + +menu > arrow:disabled, +.menu > arrow:disabled, +.context-menu > arrow:disabled { + border-color: transparent; + background-color: transparent; + color: transparent; +} + +menu separator, +.menu separator, +.context-menu separator { + margin: 4px 0; +} + +menuitem accelerator { + color: rgba(29, 160, 226, 0.54); +} + +.popup:not(.csd) menu menuitem { + color: #1E2541; +} + +.popup:not(.csd) menu menuitem:hover { + background-color: #F0719B; +} + +.popup:not(.csd) menu menuitem:disabled { + color: #525b70; +} + +.popup:not(.csd) menu accelerator { + color: #757575; +} + +/************ + * Popovers * + ************/ +popover.background { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #EEFFFF; +} + +popover.background:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +popover.background, .csd popover.background { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 3px; +} + +popover.background > stack { + margin: -4px; +} + +popover.background > toolbar { + margin: -2px; +} + +popover.background > list, +popover.background > .view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 2px; +} + +popover.background separator { + margin: 4px 0; +} + +popover.background list separator { + margin: 0; +} + +/************* + * Notebooks * + *************/ +notebook > header { + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + background-clip: border-box; +} + +notebook > header.top { + border-bottom-style: solid; +} + +notebook > header.top > tabs { + margin-bottom: -1px; +} + +notebook > header.top > tabs > tab:hover { + box-shadow: inset 0 -2px rgba(30, 37, 65, 0.26); +} + +notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -2px #F0719B; +} + +notebook > header.bottom { + border-top-style: solid; +} + +notebook > header.bottom > tabs { + margin-top: -1px; +} + +notebook > header.bottom > tabs > tab:hover { + box-shadow: inset 0 2px rgba(30, 37, 65, 0.26); +} + +notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 2px #F0719B; +} + +notebook > header.left { + border-right-style: solid; +} + +notebook > header.left > tabs { + margin-right: -1px; +} + +notebook > header.left > tabs > tab:hover { + box-shadow: inset -2px 0 rgba(30, 37, 65, 0.26); +} + +notebook > header.left > tabs > tab:checked { + box-shadow: inset -2px 0 #F0719B; +} + +notebook > header.right { + border-left-style: solid; +} + +notebook > header.right > tabs { + margin-left: -1px; +} + +notebook > header.right > tabs > tab:hover { + box-shadow: inset 2px 0 rgba(30, 37, 65, 0.26); +} + +notebook > header.right > tabs > tab:checked { + box-shadow: inset 2px 0 #F0719B; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: -8px; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: -8px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: -8px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: -8px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 0; +} + +notebook > header tab { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + min-height: 20px; + min-width: 20px; + padding: 6px 12px; + outline-offset: -6px; + border-width: 1px; + border-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, #F0719B 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(29, 160, 226, 0.54); + font-weight: 500; +} + +notebook > header tab:hover { + color: #1E2541; +} + +notebook > header tab:hover.reorderable-page { + border-color: rgba(30, 37, 65, 0.12); + background-color: #eeffff; +} + +notebook > header tab:disabled { + color: rgba(29, 160, 226, 0.26); +} + +notebook > header tab:checked { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 270ms cubic-bezier(0, 0, 0.2, 1), background-image 720ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #1E2541; +} + +notebook > header tab:checked:disabled { + color: rgba(30, 37, 65, 0.38); +} + +notebook > header tab:checked.reorderable-page { + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +notebook > header tab button.flat:last-child { + margin-left: 6px; + margin-right: -6px; +} + +notebook > header tab button.flat:first-child { + margin-left: -6px; + margin-right: 6px; +} + +notebook > header.top tabs, notebook > header.bottom tabs { + padding-left: 8px; + padding-right: 8px; +} + +notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + margin: 0 -1px; + border-style: none solid; +} + +notebook > header.left tabs, notebook > header.right tabs { + padding-top: 8px; + padding-bottom: 8px; +} + +notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + margin: -1px 0; + border-style: solid none; +} + +notebook > stack:not(:only-child) { + background-color: #EEFFFF; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: #EEFFFF; + background-clip: padding-box; +} + +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar.top { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +scrollbar.bottom { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +scrollbar.left { + border-right: 1px solid rgba(30, 37, 65, 0.12); +} + +scrollbar.right { + border-left: 1px solid rgba(30, 37, 65, 0.12); +} + +scrollbar slider { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0; + min-width: 8px; + min-height: 8px; + border: 4px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(30, 37, 65, 0.38); +} + +scrollbar slider:hover { + background-color: rgba(29, 160, 226, 0.54); +} + +scrollbar slider:active { + background-color: #1E2541; +} + +scrollbar slider:disabled { + background-color: rgba(29, 160, 226, 0.26); +} + +scrollbar.fine-tune slider { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0; + min-width: 4px; + min-height: 4px; +} + +scrollbar.fine-tune.horizontal slider { + margin: 2px 0; +} + +scrollbar.fine-tune.vertical slider { + margin: 0 2px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(238, 255, 255, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(238, 255, 255, 0.3); + border-radius: 9999px; + background-color: rgba(30, 37, 65, 0.38); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(29, 160, 226, 0.26); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + min-width: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + min-width: 8px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + min-height: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + min-height: 8px; +} + +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: rgba(238, 255, 255, 0.9); +} + +scrollbar.horizontal slider { + min-width: 24px; +} + +scrollbar.vertical slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +scrollbar.vertical button.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +scrollbar.vertical button.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +scrollbar.horizontal button.down { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + margin: 6px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(30, 37, 65, 0.26); + background-clip: padding-box; + font-size: 0; +} + +switch:disabled { + background-color: rgba(30, 37, 65, 0.12); +} + +switch:checked { + background-color: rgba(87, 199, 255, 0.5); +} + +switch:checked:disabled { + background-color: rgba(87, 199, 255, 0.3); +} + +switch slider { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + -gtk-outline-radius: 9999px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; +} + +switch:hover slider { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +switch:checked slider { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0, 0, 0.2, 1), background-image 0, background-color 0.00001s 270ms; + animation: needs_attention 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: #57C7FF; + color: #1E2541; +} + +switch:disabled slider { + background-color: #eeffff; +} + +switch:checked:disabled slider { + animation: none; +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view .tile check:not(list):hover, +.content-view .tile check:not(list):active { + -gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked.png"), url("assets/selectionmode-checkbox-unchecked@2.png")); +} + +.view.content-view.check:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked.png"), url("assets/selectionmode-checkbox-checked@2.png")); +} + +checkbutton.text-button, +radiobutton.text-button { + padding: 2px; + outline-offset: 0; +} + +checkbutton.text-button label:not(:only-child), +radiobutton.text-button label:not(:only-child) { + margin: 0 4px; +} + +check, +radio { + min-height: 24px; + min-width: 24px; + margin: -10px; + padding: 10px; +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #57C7FF; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(87, 199, 255, 0.5); +} + +row:selected check:not(:checked):not(:indeterminate), row:selected +radio:not(:checked):not(:indeterminate) { + color: rgba(30, 37, 65, 0.7); +} + +row:selected check:not(:checked):not(:indeterminate):hover, row:selected check:not(:checked):not(:indeterminate):active, row:selected +radio:not(:checked):not(:indeterminate):hover, row:selected +radio:not(:checked):not(:indeterminate):active { + color: #1E2541; +} + +row:selected check:not(:checked):not(:indeterminate):disabled, row:selected +radio:not(:checked):not(:indeterminate):disabled { + color: rgba(30, 37, 65, 0.3); +} + +popover check, popover check:hover, popover check:disabled, popover +radio, popover +radio:hover, popover +radio:disabled { + box-shadow: none; + background-image: none; +} + +popover check:not(:checked):not(:indeterminate):not(:disabled), popover +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(29, 160, 226, 0.54); +} + +popover check.left:dir(rtl), popover +radio.left:dir(rtl) { + margin-left: -16px; + margin-right: -8px; +} + +popover check.right:dir(ltr), popover +radio.right:dir(ltr) { + margin-left: -8px; + margin-right: -16px; +} + +menu menuitem check, menu menuitem +radio { + transition: none; + margin: 0; + padding: 0; +} + +menu menuitem check:dir(ltr), menu menuitem +radio:dir(ltr) { + margin-right: 8px; +} + +menu menuitem check:dir(rtl), menu menuitem +radio:dir(rtl) { + margin-left: 8px; +} + +menu menuitem check:not(:checked):not(:indeterminate):not(:disabled), menu menuitem +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(29, 160, 226, 0.54); +} + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem +radio, menu menuitem +radio:hover, menu menuitem +radio:disabled { + box-shadow: none; +} + + +check { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.symbolic.png"))); +} + + +check:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.symbolic.png"))); +} + + +check:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.symbolic.png"))); +} + + +radio { + border-image-slice: 22; + border-image-width: 22px; +} + + +radio { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.symbolic.png"))); +} + + +radio:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.symbolic.png"))); +} + + +radio { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#57C7FF), to(transparent)); +} + + +radio:checked:not(:indeterminate) { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(#57C7FF), to(transparent)); +} + + +radio:checked:not(:indeterminate):disabled { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(rgba(87, 199, 255, 0.5)), to(transparent)); +} + +window.background:not(.csd) > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; + border-radius: 2px; + -gtk-outline-radius: 2px; + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.symbolic.png"))); +} + +window.background:not(.csd) > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.symbolic.png"))); +} + +check:not(:checked):active { + -gtk-icon-transform: rotate(90deg); +} + +check:not(:checked):indeterminate:active, +radio:not(:checked):indeterminate:active { + -gtk-icon-transform: scaleX(-1); +} + +check:not(:checked), +radio:not(:checked) { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1), -gtk-icon-transform 0; +} + +check:not(:checked):active, +radio:not(:checked):active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0, -gtk-icon-transform 0; +} + +menu menuitem check:not(:checked), menu menuitem +radio:not(:checked) { + transition: none; +} + +treeview.view check, +treeview.view radio { + padding: 0; +} + +treeview.view check:hover, +treeview.view radio:hover { + box-shadow: inset 0 0 0 9999px alpha(#1E2541, 0.05); +} + +treeview.view check:hover:disabled, +treeview.view radio:hover:disabled { + box-shadow: none; +} + +treeview.view check:hover:selected, +treeview.view radio:hover:selected { + box-shadow: inset 0 0 0 9999px alpha(#1E2541, 0.05); +} + +treeview.view check, +treeview.view radio { + color: rgba(29, 160, 226, 0.54); +} + +treeview.view check:hover, treeview.view check:active, +treeview.view radio:hover, +treeview.view radio:active { + color: #1E2541; +} + +treeview.view check:disabled, +treeview.view radio:disabled { + color: rgba(29, 160, 226, 0.26); +} + +treeview.view check:checked, treeview.view check:indeterminate, +treeview.view radio:checked, +treeview.view radio:indeterminate { + color: #57C7FF; +} + +treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, +treeview.view radio:checked:disabled, +treeview.view radio:indeterminate:disabled { + color: rgba(87, 199, 255, 0.5); +} + +treeview.view check:selected, +treeview.view radio:selected { + color: rgba(30, 37, 65, 0.7); +} + +treeview.view check:selected:hover, treeview.view check:selected:active, +treeview.view radio:selected:hover, +treeview.view radio:selected:active { + color: #1E2541; +} + +treeview.view check:selected:disabled, +treeview.view radio:selected:disabled { + color: rgba(30, 37, 65, 0.3); +} + +treeview.view check:selected:checked, treeview.view check:selected:indeterminate, +treeview.view radio:selected:checked, +treeview.view radio:selected:indeterminate { + color: #57C7FF; +} + +treeview.view check:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled, +treeview.view radio:selected:checked:disabled, +treeview.view radio:selected:indeterminate:disabled { + color: rgba(87, 199, 255, 0.5); +} + +treeview.view radio:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic.symbolic.png"))); + border-image: none; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 8px; + min-width: 8px; + padding: 12px; +} + +scale slider { + min-height: 24px; + min-width: 24px; + margin: -11px; +} + +scale trough { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + outline-offset: 2px; + background-color: rgba(30, 37, 65, 0.26); +} + +scale trough:disabled { + background-color: rgba(30, 37, 65, 0.12); +} + +scale highlight { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: #57C7FF; +} + +scale highlight:disabled { + background-color: transparent; +} + +scale fill { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(30, 37, 65, 0.26); +} + +scale fill:disabled { + background-color: transparent; +} + +scale slider { + transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1); + background-repeat: no-repeat; + background-position: center; + background-size: calc(100% - 10px); +} + +scale slider { + background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png")); +} + +scale slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled.png"), url("assets/scale-slider-disabled@2.png")); +} + +scale slider:hover { + background-size: calc(100% - 8px); +} + +scale slider:active { + background-size: calc(100% - 6px); +} + +scale.fine-tune slider { + background-size: calc(100% - 12px); +} + +scale marks label, +scale value { + color: rgba(30, 37, 65, 0.38); +} + +scale marks { + color: rgba(30, 37, 65, 0.26); +} + +scale marks.top { + margin-bottom: 8px; + margin-top: -16px; +} + +scale marks.bottom { + margin-top: 8px; + margin-bottom: -16px; +} + +scale marks.top { + margin-right: 8px; + margin-left: -16px; +} + +scale marks.bottom { + margin-left: 8px; + margin-right: -16px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) slider { + min-height: 30px; + min-width: 24px; + margin-top: -17px; + background-position: center calc(100% - 5px); +} + +scale.horizontal.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); +} + +scale.horizontal.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled.png"), url("assets/scale-horz-marks-before-slider-disabled@2.png")); +} + +scale.horizontal.marks-before:not(.marks-after) slider:hover { + background-position: center calc(100% - 4px); +} + +scale.horizontal.marks-before:not(.marks-after) slider:active { + background-position: center calc(100% - 3px); +} + +scale.horizontal.marks-before:not(.marks-after).fine-tune slider { + background-position: center calc(100% - 6px); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + min-height: 30px; + min-width: 24px; + margin-bottom: -17px; + background-position: center calc(5px); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled.png"), url("assets/scale-horz-marks-after-slider-disabled@2.png")); +} + +scale.horizontal.marks-after:not(.marks-before) slider:hover { + background-position: center calc(4px); +} + +scale.horizontal.marks-after:not(.marks-before) slider:active { + background-position: center calc(3px); +} + +scale.horizontal.marks-after:not(.marks-before).fine-tune slider { + background-position: center calc(6px); +} + +scale.vertical.marks-before:not(.marks-after) slider { + min-height: 24px; + min-width: 30px; + margin-left: -17px; + background-position: calc(5px) center; +} + +scale.vertical.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled.png"), url("assets/scale-vert-marks-before-slider-disabled@2.png")); +} + +scale.vertical.marks-before:not(.marks-after) slider:hover { + background-position: calc(4px) center; +} + +scale.vertical.marks-before:not(.marks-after) slider:active { + background-position: calc(3px) center; +} + +scale.vertical.marks-before:not(.marks-after).fine-tune slider { + background-position: calc(6px) center; +} + +scale.vertical.marks-after:not(.marks-before) slider { + min-height: 24px; + min-width: 30px; + margin-right: -17px; + background-position: calc(100% - 5px) center; +} + +scale.vertical.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled.png"), url("assets/scale-vert-marks-after-slider-disabled@2.png")); +} + +scale.vertical.marks-after:not(.marks-before) slider:hover { + background-position: calc(100% - 4px) center; +} + +scale.vertical.marks-after:not(.marks-before) slider:active { + background-position: calc(100% - 3px) center; +} + +scale.vertical.marks-after:not(.marks-before).fine-tune slider { + background-position: calc(100% - 6px) center; +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) { + margin-bottom: -12px; + margin-top: -2px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -12px; + margin-right: -2px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) slider { + margin-right: -12px; + margin-left: -2px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(30, 37, 65, 0.38); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 4px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 4px; +} + +progressbar trough { + background-color: rgba(240, 113, 155, 0.3); +} + +progressbar progress { + background-color: #F0719B; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 4px; +} + +levelbar.horizontal.discrete block { + min-width: 32px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 4px; +} + +levelbar.vertical.discrete block { + min-height: 32px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar trough { + padding: 2px; + border-radius: 2px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #EEFFFF; +} + +levelbar trough:disabled { + background-color: #eeffff; +} + +levelbar block.low { + background-color: #FF6D00; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #F0719B; +} + +levelbar block.full { + background-color: #00C853; +} + +levelbar block.empty { + background-color: rgba(30, 37, 65, 0.12); +} + +/**************** + * Print dialog * +*****************/ +printdialog paper { + padding: 0; + border: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + color: #1E2541; +} + +printdialog .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame > border, +.frame { + margin: 0; + padding: 0; + border: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; + box-shadow: none; +} + +frame > border.flat, +.frame.flat, +frame.flat > border { + border-style: none; +} + +actionbar > revealer > box { + padding: 6px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +scrolledwindow viewport.frame { + border-style: none; +} + +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(255, 145, 187, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; +} + +undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-top: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left top; +} + +undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-bottom: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left bottom; +} + +undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(238, 255, 255, 0.3) 50%, rgba(30, 37, 65, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(30, 37, 65, 0.12); +} + + +button.font separator, +button.file separator, .tweak-categories separator, preferences stacksidebar.sidebar list separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/********* + * Lists * + *********/ +list { + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +list row { + padding: 2px; +} + +row.activatable, .view, treeview.view header button, .budgie-menu button { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px transparent; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} + +row.activatable:hover, .view:hover, treeview.view header button:hover, .budgie-menu button:hover { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, box-shadow 0, background-size 450ms cubic-bezier(0, 0, 0.2, 1), background-image 900ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); +} + +row.activatable.has-open-popup, .has-open-popup.view, treeview.view header button.has-open-popup, .budgie-menu button.has-open-popup, row.activatable:active, .view:active, treeview.view header button:active, .budgie-menu button:active { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0, background-image 0; + animation: ripple_effect 270ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%); + background-size: 0% 0%; +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 8px; +} + +.app-notification.frame, +.app-notification border { + border-style: none; +} + +/************* + * Expanders * + *************/ +expander arrow { + transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(29, 160, 226, 0.54); +} + +expander arrow:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +expander arrow:checked { + -gtk-icon-transform: unset; +} + +expander arrow:hover, expander arrow:active { + color: #1E2541; +} + +expander arrow:disabled { + color: rgba(29, 160, 226, 0.26); +} + +expander arrow:selected { + color: rgba(30, 37, 65, 0.7); +} + +expander arrow:selected:hover, expander arrow:selected:active { + color: #1E2541; +} + +expander arrow:selected:disabled { + color: rgba(30, 37, 65, 0.3); +} + +/************ + * Calendar * + ************/ +calendar { + padding: 1px; + border: 1px solid rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +calendar:disabled { + color: rgba(30, 37, 65, 0.38); +} + +calendar:selected { + border-radius: 3px; +} + +calendar.header { + border-style: none none solid; + border-radius: 0; +} + +calendar.highlight { + color: rgba(29, 160, 226, 0.54); + font-weight: 500; +} + +calendar:indeterminate { + color: rgba(29, 160, 226, 0.26); +} + +/*********** + * Dialogs * + ***********/ +messagedialog.background { + background-color: #EEFFFF; +} + +messagedialog .titlebar { + min-height: 20px; + border-style: none; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; + color: #1E2541; +} + +messagedialog .titlebar:backdrop { + color: rgba(29, 160, 226, 0.54); +} + +messagedialog.csd.background { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +messagedialog.csd .dialog-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; +} + +messagedialog.csd .dialog-action-area button:first-child { + border-bottom-left-radius: 2px; +} + +messagedialog.csd .dialog-action-area button:last-child { + border-bottom-right-radius: 2px; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +filechooserbutton:drop(active) { + box-shadow: none; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; + background-color: #EEFFFF; +} + +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { + border-right: 1px solid rgba(30, 37, 65, 0.12); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { + border-left: 1px solid rgba(30, 37, 65, 0.12); + border-right-style: none; +} + +.sidebar list { + background-color: transparent; +} + +paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { + border-style: none; +} + +stacksidebar row { + padding: 10px 4px; +} + +stacksidebar row > label { + padding-left: 6px; + padding-right: 6px; +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + color: rgba(29, 160, 226, 0.54); +} + +row:selected image.sidebar-icon { + color: rgba(30, 37, 65, 0.7); +} + +placessidebar > viewport.frame { + border-style: none; +} + +placessidebar list { + padding: 1px 0 4px; +} + +placessidebar row { + min-height: 32px; + margin: -1px 0; + padding: 0; +} + +placessidebar row > revealer { + padding: 0 12px; +} + +placessidebar row:selected { + color: #1E2541; +} + +placessidebar row:disabled { + color: rgba(30, 37, 65, 0.38); +} + +placessidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +placessidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +placessidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar row.sidebar-placeholder-row { + min-height: 2px; + padding: 0 8px; + background-image: image(#57C7FF); + background-clip: content-box; +} + +placessidebar row.sidebar-new-bookmark-row { + color: #57C7FF; +} + +placessidebar row:drop(active):not(:disabled) { + box-shadow: inset 0 0 0 2px #57C7FF; +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(rgba(30, 37, 65, 0.12)); + background-size: 1px 1px; + background-clip: content-box; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #EEFFFF; + background-image: image(rgba(30, 37, 65, 0.12)), image(rgba(30, 37, 65, 0.12)); + background-size: 1px 1px, 1px 1px; +} + +paned.horizontal > separator { + background-repeat: repeat-y; +} + +paned.horizontal > separator:dir(ltr) { + margin: 0 -8px 0 0; + padding: 0 8px 0 0; + background-position: left; +} + +paned.horizontal > separator:dir(rtl) { + margin: 0 0 0 -8px; + padding: 0 0 0 8px; + background-position: right; +} + +paned.horizontal > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-y, repeat-y; + background-position: left, right; +} + +paned.vertical > separator { + margin: 0 0 -8px 0; + padding: 0 0 8px 0; + background-repeat: repeat-x; + background-position: top; +} + +paned.vertical > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-x, repeat-x; + background-position: bottom, top; +} + +/************** + * GtkInfoBar * + **************/ +infobar { + border-style: none; +} + +infobar.info { + background-color: #66BB6A; +} + +infobar.question { + background-color: #F0719B; +} + +infobar.warning { + background-color: #FFA726; +} + +infobar.error { + background-color: #EF5350; +} + +infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error { + color: #1E2541; +} + +/************ + * Tooltips * + ************/ +tooltip { + border-radius: 2px; + box-shadow: none; +} + +tooltip.background { + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: rgba(238, 255, 255, 0.9); +} + +tooltip:not(.csd):not(.unity-csd) { + border: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 3px; + background-clip: padding-box; +} + +tooltip decoration { + background-color: transparent; +} + +tooltip label { + min-height: 20px; + padding: 0 2px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 2.5px; + border-top-right-radius: 2.5px; +} + +colorswatch.top overlay { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} + +colorswatch.bottom { + border-bottom-left-radius: 2.5px; + border-bottom-right-radius: 2.5px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 2.5px; + border-bottom-left-radius: 2.5px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 2.5px; + border-bottom-right-radius: 2.5px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; +} + +colorswatch.dark { + color: #EEFFFF; +} + +colorswatch.light { + color: #1E2541; +} + +colorswatch:drop(active) { + box-shadow: none; +} + +colorswatch:drop(active).light overlay { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #57C7FF; +} + +colorswatch:drop(active).dark overlay { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #57C7FF; +} + +colorswatch overlay { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +colorswatch overlay:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +colorswatch#add-color-button { + border-radius: 2px 2px 0 0; + color: #EEFFFF; +} + +colorswatch#add-color-button:only-child { + border-radius: 2px; +} + +colorswatch#add-color-button overlay { + background-image: linear-gradient(to right, #EF5350 25%, #FFA726 25%, #FFA726 50%, #66BB6A 50%, #66BB6A 75%, #F0719B 75%); +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 2.5px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 2px; +} + +colorchooser .popover.osd { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(238, 255, 255, 0.4); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #EEFFFF; +} + +/********************** + * Window Decorations * + **********************/ +decoration { + transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 2px 2px 0 0; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), 0 16px 16px transparent; + margin: 8px; +} + +decoration:backdrop { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), 0 16px 16px transparent; +} + +.maximized decoration, +.fullscreen decoration, +.tiled decoration, +.tiled-top decoration, +.tiled-right decoration, +.tiled-bottom decoration, +.tiled-left decoration { + border-radius: 0; +} + +.popup decoration { + box-shadow: none; +} + +.ssd decoration { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} + +.csd.popup decoration { + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +tooltip.csd decoration { + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +messagedialog.csd decoration { + border-radius: 2px; +} + +.solid-csd decoration { + margin: 0; + border-radius: 0; + box-shadow: none; + background-color: #EEFFFF; +} + +.view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, popover.background.menu button:checked, +popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked { + background-color: #F0719B; +} + +row:selected label, label:selected, .view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, popover.background.menu button:checked, +popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked { + color: #1E2541; +} + +row:selected label:disabled, label:disabled:selected, .view selection:disabled, .view:disabled:selected, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled, +entry selection:disabled, modelbutton.flat:disabled:selected, +.menuitem.button.flat:disabled:selected, popover.background.menu button:disabled:checked, +popover.background button.model:disabled:checked, row:disabled:selected, calendar:disabled:selected, text:disabled:selected, .budgie-menu button:disabled:checked { + color: rgba(30, 37, 65, 0.5); +} + +.monospace { + font-family: monospace; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + border-radius: 9999px; + background-color: #57C7FF; + background-image: none; +} + +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + padding-left: 6px; + border-top-right-radius: 0; +} + +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + padding-right: 6px; + border-top-left-radius: 0; +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 30; + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); +} + +.context-menu { + font: initial; +} + +.keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(30, 37, 65, 0.12); + border-radius: 3px; + box-shadow: inset 0 -2px rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; + color: #1E2541; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 2px #57C7FF; + caret-color: #57C7FF; +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker entry { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + box-shadow: none; +} + +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +button.emoji-section { + margin-top: -1px; + padding: 0 8px; + min-width: 24px; + min-height: 32px; + border-radius: 0; + outline-offset: -6px; + box-shadow: none; +} + +button.emoji-section:hover { + box-shadow: inset 0 2px rgba(30, 37, 65, 0.26); +} + +button.emoji-section:active { + box-shadow: inset 0 2px #F0719B; + background-image: radial-gradient(circle farthest-corner at center, rgba(240, 113, 155, 0.7) 10%, transparent 0%); +} + +button.emoji-section:checked { + box-shadow: inset 0 2px #F0719B; + background-color: transparent; +} + +button.emoji-section:first-child { + margin-left: 4px; +} + +button.emoji-section:last-child { + margin-right: 4px; +} + +.emoji { + min-width: 3em; + min-height: 3em; + padding: 0; +} + +.emoji widget { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); +} + +.emoji widget:hover { + font-size: larger; +} + +/************ + * Nautilus * + ************/ +.nautilus-window, +.nautilus-window notebook, +.nautilus-window notebook > stack { + background-color: #EEFFFF; +} + +.nautilus-desktop.nautilus-canvas-item:not(:selected), .caja-desktop.caja-canvas-item:not(:selected) { + color: #1E2541; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +@keyframes needs_attention_keyframes { + to { + background-color: alpha(currentColor, 0.3); + } +} + +.nautilus-operations-button-needs-attention { + animation: needs_attention_keyframes 270ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; +} + +.nautilus-operations-button-needs-attention-multiple { + animation: needs_attention_keyframes 270ms cubic-bezier(0.4, 0, 0.2, 1) 4 alternate; +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + border-style: solid solid none; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + border-radius: 3px 3px 0 0; + background-color: #EEFFFF; + background-clip: padding-box; + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), border-width 0; +} + +.nautilus-window .floating-bar.bottom.left { + margin-right: 7px; + border-left-style: none; + border-top-left-radius: 0; +} + +.nautilus-window .floating-bar.bottom.right { + margin-left: 7px; + border-right-style: none; + border-top-right-radius: 0; +} + +.nautilus-window .floating-bar button { + margin: 6px; +} + +.disk-space-display.unknown { + background-color: #FF6D00; +} + +.disk-space-display.used { + background-color: #F0719B; +} + +.disk-space-display.free { + background-color: rgba(30, 37, 65, 0.12); +} + +.nautilus-window searchbar { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.nautilus-window .searchbar-container { + margin-top: -1px; +} + +.conflict-row:not(:selected) { + background-color: #f3d3b3; +} + +.nautilus-window flowboxchild > widget > .icon-item-background { + padding: 4px; + border-radius: 2px; +} + +.nautilus-window flowboxchild:selected { + background-color: transparent; +} + +.nautilus-window flowboxchild:selected > widget > .icon-item-background { + background-color: #F0719B; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > scrolledwindow.frame { + border-style: none; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child { + margin: -6px 0 0 -6px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > label { + margin: 0 8px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > box > button { + border-radius: 0; +} + +.nautilus-window > popover.menu:not(:last-child) { + padding: 3px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box { + margin-top: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box { + margin-bottom: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box.linked { + margin-top: 1px; +} + +.nautilus-window > popover.menu:not(:last-child) separator { + margin-bottom: -2px; +} + +.nautilus-menu-sort-heading { + margin: 1px 3px; + font-weight: 500; +} + +.nautilus-menu-sort-heading:disabled { + color: rgba(30, 37, 65, 0.38); +} + +.nautilus-window paned > separator { + background-color: #EEFFFF; +} + +/********* + * gedit * + *********/ +.open-document-selector-path-label { + color: rgba(29, 160, 226, 0.54); + font-size: smaller; +} + +.open-document-selector-path-label:selected { + color: rgba(30, 37, 65, 0.7); +} + +.gedit-document-panel { + background-color: #EEFFFF; +} + +.gedit-document-panel row button.flat { + margin-top: 8px; + margin-bottom: 8px; +} + +.gedit-document-panel-group-row:not(:first-child) { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.gedit-search-slider { + margin: 4px 4px 8px; +} + +.gedit-search-slider entry:dir(ltr), .gedit-search-slider entry:dir(rtl) { + border-radius: 2px; +} + +.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag, .gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(30, 37, 65, 0.38); +} + +.gedit-search-slider entry:dir(ltr) { + margin-right: -58px; + padding-right: 58px; +} + +.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 6px; +} + +.gedit-search-slider entry:dir(ltr) image.right { + margin-right: 0; +} + +.gedit-search-slider entry:dir(rtl) { + margin-left: -58px; + padding-left: 58px; +} + +.gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 6px; +} + +.gedit-search-slider entry:dir(rtl) image.left { + margin-left: 0; +} + +.gedit-search-slider entry.error ~ button { + color: rgba(30, 37, 65, 0.7); +} + +.gedit-search-slider entry.error ~ button:hover, .gedit-search-slider entry.error ~ button:active { + color: #1E2541; +} + +.gedit-search-slider entry.error ~ button:disabled { + color: rgba(30, 37, 65, 0.3); +} + +.gedit-search-slider button { + border: solid 6px transparent; +} + +.gedit-search-slider button:last-child:dir(ltr), .gedit-search-slider button:not(:first-child):dir(rtl) { + margin-left: -3px; +} + +.gedit-search-slider button:first-child:dir(rtl), .gedit-search-slider button:not(:last-child):dir(ltr) { + margin-right: -3px; +} + +frame.gedit-map-frame > border:dir(ltr) { + border-style: none none none solid; +} + +frame.gedit-map-frame > border:dir(rtl) { + border-style: none solid none none; +} + +/************** + * Tweak Tool * + **************/ +.tweak-categories { + background-image: image(#EEFFFF); +} + +.tweak { + padding: 3px; +} + +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#EEFFFF); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#EEFFFF); +} + +.tweak-group-startup { + background-image: image(#EEFFFF); + border: 1px solid rgba(30, 37, 65, 0.12); +} + +row#Focus, +row#StaticWorkspaceTweak, +row#dynamic-workspaces, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + padding: 0; + border: 1px solid rgba(30, 37, 65, 0.12); +} + +row#Focus row:not(:last-child), +row#StaticWorkspaceTweak row:not(:last-child), +row#dynamic-workspaces row:not(:last-child), +row#PrimaryWorkspaceTweak row:not(:last-child), +row#workspaces-only-on-primary row:not(:last-child) { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +row#Focus.tweak > list, +row#StaticWorkspaceTweak.tweak > list, +row#dynamic-workspaces.tweak > list, +row#PrimaryWorkspaceTweak.tweak > list, +row#workspaces-only-on-primary.tweak > list { + margin-top: -3px; +} + +row#Focus, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + margin-top: 4px; +} + +/*********** + * Builder * + ***********/ +layouttabbar { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +layouttabbar > box > button { + margin: 4px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + box-shadow: inset 0 -2px #F0719B; + background-color: #EEFFFF; +} + +layouttab separator.vertical { + margin: 8px 4px; +} + +layouttab button.text-button, layouttab button.image-button, layouttab button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} + +layout { + border: 1px solid rgba(30, 37, 65, 0.12); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #DD2C00; + color: #1E2541; +} + +window.workbench treeview.image { + color: rgba(29, 160, 226, 0.54); +} + +window.workbench treeview.image:selected { + color: rgba(30, 37, 65, 0.7); +} + +popover.popover-selector list { + padding: 6px; +} + +popover.popover-selector list row { + border-radius: 2px; +} + +popover.popover-selector list row image:dir(ltr) { + margin-right: 6px; +} + +popover.popover-selector list row image:dir(rtl) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(ltr) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(rtl) { + margin-right: 6px; +} + +omnibar.linked:not(.vertical) entry { + border-radius: 2px; +} + +omnibar:not(:hover):not(:active) entry { + color: rgba(29, 160, 226, 0.54); +} + +popover.omnibar list row:not(:last-child) { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +entry.preferences-search { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +preferences stacksidebar.sidebar list { + background-color: #EEFFFF; +} + +preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list { + border-style: none; +} + +preferences > box > box:dir(ltr) { + border-right: 1px solid rgba(30, 37, 65, 0.12); +} + +preferences > box > box:dir(rtl) { + border-left: 1px solid rgba(30, 37, 65, 0.12); +} + +popover.messagepopover.background { + padding: 0; +} + +popover.messagepopover .popover-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; +} + +popover.messagepopover .popover-action-area button:first-child { + border-bottom-left-radius: 2px; +} + +popover.messagepopover .popover-action-area button:last-child { + border-bottom-right-radius: 2px; +} + +popover.messagepopover .popover-content-area { + margin: 16px; +} + +popover.transfers list { + background-color: transparent; +} + +popover.transfers list row:not(:first-child) { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +popover.transfers list row > box { + padding: 10px; +} + +dockbin { + border: 1px solid rgba(30, 37, 65, 0.12); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +docktab { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + min-height: 20px; + min-width: 20px; + margin-bottom: -1px; + padding: 6px 6px; + outline-offset: -6px; + border-width: 1px; + border-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, #F0719B 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(29, 160, 226, 0.54); + font-weight: 500; +} + +docktab:hover { + box-shadow: inset 0 -2px rgba(30, 37, 65, 0.26); + color: #1E2541; +} + +docktab:checked { + transition: all 270ms cubic-bezier(0, 0, 0.2, 1), background-size 270ms cubic-bezier(0, 0, 0.2, 1), background-image 720ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -2px #F0719B; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #1E2541; +} + +dockoverlayedge { + background-color: #EEFFFF; +} + +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} + +dockoverlayedge.left-edge docktab:hover { + box-shadow: inset -2px 0 rgba(30, 37, 65, 0.26); +} + +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #F0719B; +} + +dockoverlayedge.right-edge docktab:hover { + box-shadow: inset 2px 0 rgba(30, 37, 65, 0.26); +} + +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #F0719B; +} + +pillbox { + background-color: #EEFFFF; + border-radius: 2px; +} + +layoutpane entry.search { + box-shadow: inset 0 -1px rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +editortweak entry.search { + margin-bottom: -1px; + box-shadow: none; +} + +.gb-search-entry-occurrences-tag { + box-shadow: none; + background-color: transparent; +} + +docktabstrip { + min-height: 39px; +} + +window.workbench preferences preferencesgroup list entry { + padding-top: 8px; + padding-bottom: 8px; +} + +button.run-arrow-button { + padding-left: 8px; + padding-right: 8px; +} + +button.dzlmenubutton image { + min-width: 26px; +} + +button.dzlmenubutton image.arrow { + min-width: 23px; +} + +button.dzlmenubuttonitem { + color: #1E2541; + font-weight: normal; +} + +button.dzlmenubuttonitem:disabled { + color: rgba(30, 37, 65, 0.38); +} + +idelayoutstackheader { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +idelayoutstackheader button:checked { + color: #1E2541; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher { + padding: 8px 0; + background-color: #EEFFFF; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { + border-right: 1px solid rgba(30, 37, 65, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { + border-left: 1px solid rgba(30, 37, 65, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button { + border-radius: 0; + outline-offset: -6px; + box-shadow: none; + background-color: transparent; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:active { + background-image: radial-gradient(circle farthest-corner at center, rgba(240, 113, 155, 0.7) 10%, transparent 0%); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { + background-color: transparent; + color: #1E2541; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { + margin-right: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):hover { + box-shadow: inset -2px 0 rgba(30, 37, 65, 0.26); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):active, ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { + box-shadow: inset -2px 0 #F0719B; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { + margin-left: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):hover { + box-shadow: inset 2px 0 rgba(30, 37, 65, 0.26); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):active, ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { + box-shadow: inset 2px 0 #F0719B; +} + +ideeditorsidebar notebook header { + background: transparent; +} + +popover.messagepopover list { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +popover.messagepopover list row:not(:last-child) { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +/********** + * Photos * + **********/ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} + +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #57C7FF; + color: #1E2541; + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; +} + +.documents-scrolledwin.frame frame.content-view > border { + border-style: none; +} + +.photos-fade-in { + opacity: 1; + transition: opacity 180ms cubic-bezier(0, 0, 0.2, 1); +} + +.photos-fade-out { + opacity: 0; + transition: opacity 180ms cubic-bezier(0, 0, 0.2, 1); +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-style: none none none solid; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-style: none solid none none; +} + +/********* + * Music * + *********/ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(30, 37, 65, 0.12); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(30, 37, 65, 0.12); +} + +.side-panel .view { + background-image: image(#EEFFFF); +} + +.side-panel .view:hover { + background-image: image(#e4f4f6); +} + +.side-panel .view:selected { + background-image: image(#F0719B); +} + +.side-panel .view:selected:hover { + background-image: image(#e66d97); +} + +.songs-list:hover { + background-image: image(alpha(currentColor, 0.05)); +} + +frame.documents-dropdown { + margin: 8px; +} + +frame.documents-dropdown > border { + border: none; +} + +box.vertical > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-clip: border-box; +} + +box.vertical > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/********* + * To Do * + *********/ +taskrow { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); + margin: 0 -8px; +} + +taskrow:hover { + transition: none; +} + +taskrow label { + margin: 0 8px; +} + +taskrow image { + min-width: 16px; +} + +task-list-view > box > revealer > box > button { + margin: -4px; +} + +/******* + * eog * + *******/ +#eog-thumb-nav scrolledwindow { + border-top: none; +} + +#eog-thumb-nav button { + -gtk-outline-radius: 2px; +} + +/************* + * Evolution * + *************/ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/******** + * gitg * + ********/ +frame.commit-frame > border { + border-style: solid none none; +} + +/************** + * Characters * + **************/ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +list.categories { + background-image: image(#EEFFFF); +} + +/********* + * Boxes * + *********/ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 2px; + background-color: rgba(0, 0, 0, 0.3); + color: #1E2541; +} + +/************** + * Calculator * + **************/ +button.title label { + min-height: 32px; +} + +/********* + * Geary * + *********/ +.geary-titlebar-left:dir(ltr) { + margin-right: 5px; + padding-right: 0; +} + +.geary-titlebar-left:dir(rtl) { + margin-left: 5px; + padding-left: 0; +} + +.geary-titlebar-left > separator { + background-color: rgba(0, 0, 0, 0.05); +} + +.geary-titlebar-right:dir(ltr) { + margin-left: -5px; +} + +.geary-titlebar-right:dir(rtl) { + margin-right: -5px; +} + +/********* + * Tilix * + *********/ +overlay > revealer.left > scrolledwindow.frame, +overlay > revealer.right > scrolledwindow.frame { + border-style: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +overlay > revealer.left > scrolledwindow.frame { + margin-right: 32px; +} + +overlay > revealer.right > scrolledwindow.frame { + margin-left: 32px; +} + +.terminix-session-sidebar, +.tilix-session-sidebar { + background-image: image(#EEFFFF); +} + +button.image-button.session-new-button { + min-width: 28px; +} + +/*********** + * Eclipse * + ***********/ +window.background > box.vertical > scrolledwindow > widget toolbar { + padding: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar separator, +window.background > box.vertical > scrolledwindow > widget toolbar button { + margin: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar button { + border-radius: 2px; +} + +/************ + * Chromium * + ************/ +tooltip.chromium { + background-color: #EEFFFF; +} + +/*********** + * Firefox * + ***********/ +window.background:not(.csd) > widget > separator { + color: rgba(30, 37, 65, 0.26); +} + +window.background:not(.csd) > widget > scrollbar { + background-clip: border-box; +} + +window.background:not(.csd) > widget > scrollbar, +window.background:not(.csd) > widget > frame > border { + border-color: rgba(30, 37, 65, 0.26); +} + +window.background:not(.csd) > widget > entry, +window.background:not(.csd) > widget > button > button { + border: 1px solid rgba(30, 37, 65, 0.26); + border-radius: 3px; + box-shadow: none; +} + +window.background:not(.csd) > widget > entry { + min-height: 30px; +} + +window.background:not(.csd) > widget > entry:focus { + border-color: #F0719B; +} + +window.background:not(.csd) > widget > button > button { + padding: 4px 8px; + background-size: auto; +} + +window.background:not(.csd) > widget > button > button:hover { + background-image: image(alpha(currentColor, 0.05)); +} + +window.background:not(.csd) > widget > button > button:active { + background-image: image(alpha(currentColor, 0.1)); +} + +window.background:not(.csd) > window > menu, +window.background:not(.csd) > menu > menu { + border: none; +} + +window.background:not(.csd) > widget > menubar { + color: rgba(30, 37, 65, 0.54); +} + +window.background:not(.csd) > widget > menubar:hover { + color: #1E2541; +} + +window.background:not(.csd) > widget > menubar:disabled { + color: rgba(30, 37, 65, 0.26); +} + +window.background:not(.csd) > widget > frame { + color: rgba(30, 37, 65, 0.26); +} + +window.background:not(.csd) > widget > checkbutton > check, +window.background:not(.csd) > widget > radiobutton > radio { + margin: 0; + padding: 0; +} + +window.background:not(.csd) > window.background > menu > separator { + color: rgba(30, 37, 65, 0.12); +} + +/************ + * Inkscape * + ************/ +#ToolboxCommon > #AuxToolbox #StyleSwatch { + font-size: smaller; +} + +#ToolboxCommon > #AuxToolbox #Kludge { + padding: 0; +} + +#ToolboxCommon > #AuxToolbox spinbutton, +#ToolboxCommon > #AuxToolbox entry { + min-height: 32px; +} + +#ToolboxCommon > #AuxToolbox button:not(.up):not(.down) { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 2px; + -gtk-outline-radius: 2px; +} + +#ToolboxCommon > #AuxToolbox spinbutton button { + border-width: 4px; +} + +#ToolboxCommon > toolbar.vertical { + margin-top: -4px; +} + +#ToolboxCommon > toolbar.vertical button { + min-height: 24px; + min-width: 24px; + padding: 4px; + border-radius: 2px; + -gtk-outline-radius: 2px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; +} + +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(30, 37, 65, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(30, 37, 65, 0.12); +} + +#Canvas_and_Dock frame > border { + border: none; +} + +#Canvas_and_Dock widget > widget > button.flat { + min-height: 16px; + min-width: 16px; + padding: 4px; +} + +#Canvas_and_Dock widget > widget > box.horizontal image { + padding: 4px; +} + +#Canvas_and_Dock box.horizontal > box.vertical > button.flat { + min-height: 16px; + min-width: 24px; + padding: 8px 4px; +} + +/*********** + * Synapse * + ***********/ +box.vertical > widget > widget:selected { + background-color: #F0719B; +} + +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #F0719B; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 2px 2px 0 0; + box-shadow: inset 0 1px #EEFFFF; + background-color: #EEFFFF; + color: #1E2541; +} + +UnityDecoration .top:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +UnityDecoration .menuitem { + color: rgba(30, 37, 65, 0.54); +} + +UnityDecoration .menuitem:hover { + box-shadow: inset 0 -2px #F0719B; + background-color: transparent; + color: #1E2541; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #eeffff; + color: #1E2541; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(30, 37, 65, 0.54); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(30, 37, 65, 0.54); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px #F0719B; + background-color: transparent; + color: #1E2541; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #F0719B; +} + +/************** + * Mate-Panel * + **************/ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: #EEFFFF; + font-weight: 500; +} + +.mate-panel-menu-bar:not(.popup) { + color: rgba(30, 37, 65, 0.7); +} + +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.mate-panel-menu-bar button:checked { + background-color: rgba(30, 37, 65, 0.12); +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(30, 37, 65, 0.12); +} + +MatePanelAppletFrameDBus { + border-style: solid; + border-color: rgba(30, 37, 65, 0.12); +} + +.mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus { + border-width: 0 1px; +} + +.mate-panel-menu-bar.vertical MatePanelAppletFrameDBus { + border-width: 1px 0; +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(30, 37, 65, 0.7); +} + +.mate-panel-menu-bar menubar > menuitem:hover { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(30, 37, 65, 0.3); +} + +.mate-panel-menu-bar.horizontal menubar > menuitem { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical menubar > menuitem { + padding: 8px 0; +} + +.mate-panel-menu-bar menubar menu > menuitem { + min-height: 28px; + padding: 0 6px; +} + +.mate-panel-menu-bar #PanelApplet button { + -GtkWidget-window-dragging: true; +} + +.mate-panel-menu-bar #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; +} + +.mate-panel-menu-bar #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) { + padding-left: 4px; +} + +.mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) { + padding-right: 4px; +} + +.mate-panel-menu-bar.vertical #tasklist-button { + min-height: 32px; +} + +.mate-panel-menu-bar.horizontal #showdesktop-button image { + min-width: 24px; + padding: 0 4px; +} + +.mate-panel-menu-bar.vertical #showdesktop-button image { + min-height: 24px; + padding: 4px 0; +} + +PanelApplet.wnck-applet .wnck-pager { + background-color: transparent; + color: #ff91bb; +} + +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: rgba(30, 37, 65, 0.12); +} + +PanelApplet.wnck-applet .wnck-pager:active { + background-color: rgba(30, 37, 65, 0.3); +} + +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #F0719B; +} + +.mate-panel-menu-bar.horizontal #clock-applet-button label { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical #clock-applet-button label { + padding: 8px 0; +} + +#MatePanelPopupWindow { + border: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 3px; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); +} + +#MatePanelPopupWindow frame > border { + border-style: none; +} + +#MatePanelPopupWindow button { + padding: 4px 16px; +} + +#MatePanelPopupWindow ClockMap { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +#MatePanelPopupWindow widget { + color: rgba(30, 37, 65, 0.12); +} + +na-tray-applet { + -NaTrayApplet-icon-padding: 3px; + -NaTrayApplet-icon-size: 16; +} + +.mate-panel-menu-bar { + -PanelMenuBar-icon-visible: true; +} + +.mate-panel-applet-slider { + border: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 3px; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +.mate-panel-applet-slider frame > border { + border-style: none; +} + +#PanelApplet:not(:selected) > box { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); +} + +#PanelApplet:selected > box { + background-color: rgba(30, 37, 65, 0.12); + color: #1E2541; +} + +#mate-menu { + border: 1px solid rgba(30, 37, 65, 0.12); +} + +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: #1E2541; + font-weight: normal; +} + +#mate-menu button label:not(:first-child) { + color: rgba(29, 160, 226, 0.54); +} + +#mate-menu entry { + margin: 0 0 8px; +} + +#mate-menu entry image { + margin: 0; +} + +#mate-menu entry + button { + margin: 0 4px 8px; + padding: 4px; +} + +/********************* + * CAJA File manager * + *********************/ +.caja-navigation-window button.toggle.image-button { + border-radius: 2px; +} + +.caja-pathbar button { + margin: 0 -1px 0 -2px; +} + +.caja-pathbar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.caja-side-pane notebook viewport.frame, +.caja-side-pane notebook widget .vertical { + background-color: #EEFFFF; +} + +.caja-side-pane notebook, +.caja-notebook { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.caja-notebook frame > border { + border-style: none; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} + +/********* + * Pluma * + *********/ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.pluma-window statusbar frame > border { + border-style: none; +} + +.pluma-window statusbar frame button.flat { + padding: 0 4px; + border-radius: 0; +} + +.pluma-window statusbar frame button.flat widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.pluma-print-preview toolbar { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} + +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +/********* + * Atril * + *********/ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border-radius: 2px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), inset 0 1px rgba(238, 255, 255, 0.4); +} + +.lock-dialog frame > border { + border-style: none; +} + +/****************** + * Budgie Desktop * + ******************/ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} + +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 2px; + -gtk-outline-radius: 2px; +} + +.budgie-popover { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 3px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #EEFFFF; +} + +.budgie-popover .container { + padding: 2px; +} + +.budgie-popover border { + border: none; +} + +.budgie-popover list { + background-color: transparent; +} + +.budgie-popover row { + padding: 0; +} + +.budgie-popover row:hover { + box-shadow: none; +} + +.budgie-popover:not(.budgie-menu) button.flat:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: #1E2541; + font-weight: normal; +} + +.budgie-popover:not(.budgie-menu) button.flat:not(.image-button):disabled { + color: rgba(30, 37, 65, 0.38); +} + +.budgie-popover.budgie-menu .container { + padding: 0; +} + +.budgie-popover.user-menu .container { + padding: 8px; +} + +.budgie-popover.user-menu separator { + margin: 4px 0; +} + +.budgie-popover.sound-popover separator { + margin: 3px 0; +} + +.budgie-popover.night-light-indicator .container { + padding: 8px; +} + +.budgie-popover.places-menu .container { + padding: 8px; +} + +.budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} + +.budgie-popover.workspace-popover .container { + padding: 2px 8px 8px; +} + +.budgie-popover.workspace-popover separator { + margin: 4px 0; +} + +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(30, 37, 65, 0.12); +} + +.top .workspace-switcher .workspace-layout:dir(ltr), +.bottom .workspace-switcher .workspace-layout:dir(ltr) { + border-left-width: 1px; +} + +.top .workspace-switcher .workspace-layout:dir(rtl), +.bottom .workspace-switcher .workspace-layout:dir(rtl) { + border-right-width: 1px; +} + +.left .workspace-switcher .workspace-layout, +.right .workspace-switcher .workspace-layout { + border-top-width: 1px; +} + +.workspace-switcher .workspace-item, +.workspace-switcher .workspace-add-button { + border: 0 solid rgba(30, 37, 65, 0.12); +} + +.top .workspace-switcher .workspace-item:dir(ltr), +.bottom .workspace-switcher .workspace-item:dir(ltr), .top +.workspace-switcher .workspace-add-button:dir(ltr), +.bottom +.workspace-switcher .workspace-add-button:dir(ltr) { + border-right-width: 1px; +} + +.top .workspace-switcher .workspace-item:dir(rtl), +.bottom .workspace-switcher .workspace-item:dir(rtl), .top +.workspace-switcher .workspace-add-button:dir(rtl), +.bottom +.workspace-switcher .workspace-add-button:dir(rtl) { + border-left-width: 1px; +} + +.left .workspace-switcher .workspace-item, +.right .workspace-switcher .workspace-item, .left +.workspace-switcher .workspace-add-button, +.right +.workspace-switcher .workspace-add-button { + border-bottom-width: 1px; +} + +.workspace-switcher .workspace-item { + transition: all 180ms cubic-bezier(0, 0, 0.2, 1); +} + +.workspace-switcher .workspace-item.current-workspace { + background-color: rgba(30, 37, 65, 0.12); +} + +.workspace-switcher .workspace-add-button:hover { + box-shadow: none; +} + +.workspace-switcher .workspace-add-button:active { + background-image: none; +} + +.workspace-switcher .workspace-add-button:active image { + margin: 1px 0 -1px; +} + +.budgie-panel .workspace-switcher .workspace-icon-button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 2px; +} + +.budgie-menu.background { + padding: 0; + background-color: #EEFFFF; +} + +.budgie-menu scrollbar, +.budgie-menu entry.search { + background-color: transparent; +} + +.budgie-menu entry.search { + border-bottom: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; + box-shadow: none; + font-size: 120%; +} + +.budgie-menu .categories:dir(ltr) { + border-bottom-left-radius: 2px; +} + +.budgie-menu .categories:dir(rtl) { + border-bottom-right-radius: 2px; +} + +.budgie-menu button { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + color: #1E2541; + font-weight: normal; +} + +.budgie-menu button:disabled { + color: rgba(30, 37, 65, 0.38); +} + +.budgie-menu button:checked:disabled { + background-color: #F0719B; +} + +.budgie-menu row { + padding: 0; +} + +.budgie-menu row:hover { + box-shadow: none; +} + +popover.background.user-menu { + padding: 8px; +} + +popover.background.user-menu .content-box { + background-color: transparent; +} + +popover.background.user-menu separator { + margin: 4px 0; +} + +popover.background.user-menu row { + padding: 0; + box-shadow: none; + background-image: none; +} + +popover.background.places-menu { + padding: 8px; +} + +popover.background.places-menu .name-button.text-button { + padding-left: 8px; + padding-right: 8px; +} + +popover.background.places-menu .name-button.text-button image:dir(ltr) { + margin-right: 3px; +} + +popover.background.places-menu .name-button.text-button image:dir(rtl) { + margin-left: 3px; +} + +popover.background.places-menu .places-section-header > image:dir(ltr) { + margin: 0 -2px 0 5px; +} + +popover.background.places-menu .places-section-header > image:dir(rtl) { + margin: 0 5px 0 -2px; +} + +popover.background.places-menu .places-list { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + background-color: transparent; +} + +popover.background.places-menu row { + padding: 0; + box-shadow: none; + background-image: none; +} + +.budgie-panel { + transition: background-color 270ms cubic-bezier(0, 0, 0.2, 1); + background-color: #EEFFFF; + color: rgba(30, 37, 65, 0.7); + font-weight: 500; +} + +.budgie-panel.transparent { + background-color: rgba(238, 255, 255, 0.6); +} + +.budgie-panel button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.budgie-panel button:checked { + background-color: rgba(30, 37, 65, 0.12); +} + +.budgie-panel.horizontal button { + padding: 0 4px; +} + +.budgie-panel.vertical button { + padding: 4px 0; +} + +.budgie-panel separator { + background-color: rgba(30, 37, 65, 0.3); +} + +.budgie-panel .alert { + color: #FF5252; +} + +.budgie-panel #tasklist-button { + padding: 0 4px; +} + +.budgie-panel.vertical #tasklist-button { + min-height: 32px; +} + +.budgie-panel button.flat.launcher { + padding: 0; +} + +.budgie-panel button.flat.launcher:not(:checked) { + color: rgba(30, 37, 65, 0.5); +} + +.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active { + color: rgba(30, 37, 65, 0.7); +} + +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(30, 37, 65, 0.3); +} + +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel button.flat.launcher, .budgie-panel .top button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel button.flat.launcher:checked, .budgie-panel .top button.flat.launcher:checked, .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 { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel button.flat.launcher, .budgie-panel .bottom button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel button.flat.launcher:checked, .budgie-panel .bottom button.flat.launcher:checked, .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 { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel button.flat.launcher, .budgie-panel .left button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel button.flat.launcher:checked, .budgie-panel .left button.flat.launcher:checked, .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 { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel button.flat.launcher, .budgie-panel .right button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel button.flat.launcher:checked, .budgie-panel .right button.flat.launcher:checked, .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 { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +frame.raven-frame > border { + border-style: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +.top frame.raven-frame > border { + margin-bottom: 32px; +} + +.bottom frame.raven-frame > border { + margin-top: 32px; +} + +.left frame.raven-frame > border { + margin-right: 32px; +} + +.right frame.raven-frame > border { + margin-left: 32px; +} + +.raven { + background-color: #EEFFFF; +} + +.raven > box { + margin-bottom: -10px; +} + +.raven > stack { + margin-bottom: -10px; +} + +.raven stackswitcher.linked > button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FFA726 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 0; +} + +.raven stackswitcher.linked > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FFA726 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; +} + +.raven .raven-header { + min-height: 32px; + padding: 3px; +} + +.raven .raven-header:not(.top) { + margin-top: -6px; +} + +.raven .raven-header.top { + padding: 2px 0; + background-color: #F0719B; + color: #1E2541; +} + +.raven .raven-header.top stackswitcher button { + margin: -6px 0; + min-height: 32px; +} + +.raven .raven-header.top button.image-button:dir(ltr) { + margin-right: 2px; +} + +.raven .raven-header.top button.image-button:dir(rtl) { + margin-left: 2px; +} + +.raven .raven-header.top > image { + margin: 0 8px; +} + +.raven .raven-header.top > label { + margin: 0 -8px; + font-weight: bold; +} + +.raven .raven-header.bottom { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +.raven viewport.frame .raven-header { + margin-top: -8px; +} + +.raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: rgba(30, 37, 65, 0.12); + background-color: #EEFFFF; +} + +.raven .raven-background.frame { + border-style: solid none; +} + +.raven .raven-background > overlay > widget > image { + color: rgba(30, 37, 65, 0.12); +} + +.raven .raven-background grid > label:first-child { + min-height: 32px; +} + +.raven scrolledwindow.raven-background { + border-bottom-style: none; +} + +.raven .raven-header.top + .raven-background { + border-style: none; + background-color: #F0719B; + color: #1E2541; +} + +.raven .raven-header.top + .raven-background stackswitcher button { + margin: -4px 0; +} + +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 10px; +} + +.raven .option-subtitle { + font-size: smaller; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} + +calendar.raven-calendar:selected { + border-radius: 2px; + background-color: #F0719B; +} + +.raven-mpris { + background-color: rgba(0, 0, 0, 0.6); + color: #1E2541; +} + +.raven-mpris label { + min-height: 24px; +} + +.raven-mpris button.image-button { + padding: 10px; +} + +.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { + background-color: transparent; +} + +.budgie-notification .notification-title, .budgie-switcher .notification-title { + font-size: 120%; +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +.drop-shadow .linked > button { + border-radius: 2px; +} + +.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { + border-radius: 2px; + background-color: #EEFFFF; +} + +.budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration { + border-radius: 2px; +} + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + font-size: 120%; +} + +.budgie-session-dialog .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid rgba(30, 37, 65, 0.12); + border-radius: 0; +} + +.budgie-session-dialog .linked.horizontal > button:first-child { + border-bottom-left-radius: 2px; +} + +.budgie-session-dialog .linked.horizontal > button:last-child { + border-bottom-right-radius: 2px; +} + +.budgie-polkit-dialog .message { + color: rgba(30, 37, 65, 0.38); +} + +.budgie-polkit-dialog .failure { + color: #FF5252; +} + +.budgie-run-dialog { + background-color: #EEFFFF; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 6px 14px; + box-shadow: inset 0 1px rgba(238, 255, 255, 0.4); + background-color: transparent; +} + +.budgie-run-dialog list .dim-label, .budgie-run-dialog list label.separator, .budgie-run-dialog list .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) .budgie-run-dialog list .subtitle, +.budgie-run-dialog list headerbar .subtitle, headerbar .budgie-run-dialog list .subtitle, .budgie-run-dialog list .budgie-notification .notification-body, .budgie-notification .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-switcher .notification-body, .budgie-switcher .budgie-run-dialog list .notification-body { + opacity: 1; +} + +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(30, 37, 65, 0.12); +} + +/************************ + * LightDM GTK+ Greeter * + ************************/ +#panel_window { + background-color: rgba(238, 255, 255, 0.3); + color: #1E2541; +} + +#panel_window menubar, +#panel_window separator { + background-color: transparent; +} + +#panel_window separator { + padding: 0 4px; +} + +#panel_window separator:first-child { + padding: 0 8px; +} + +#panel_window menubar > menuitem { + color: rgba(30, 37, 65, 0.7); +} + +#panel_window menubar > menuitem:hover { + color: #1E2541; +} + +#panel_window menubar > menuitem:disabled label { + color: rgba(30, 37, 65, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(238, 255, 255, 0.4); + background-color: #EEFFFF; +} + +#content_frame { + padding-bottom: 20px; + border-bottom: 1px solid rgba(30, 37, 65, 0.12); +} + +#buttonbox_frame { + padding-top: 24px; +} + +#buttonbox_frame button { + margin: -16px; +} + +#greeter_infobar { + margin-top: -1px; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #1E2541; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #1E2541; +/* +widget base background color */ +@define-color theme_bg_color #EEFFFF; +/* +text widgets and the like base background color */ +@define-color theme_base_color #EEFFFF; +/* +base background color of selections */ +@define-color theme_selected_bg_color #F0719B; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #1E2541; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #EEFFFF; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(30, 37, 65, 0.38); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #eeffff; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #1E2541; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #1E2541; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #EEFFFF; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #EEFFFF; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #F0719B; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #1E2541; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(30, 37, 65, 0.38); +/* +widgets main borders color */ +@define-color borders rgba(30, 37, 65, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(30, 37, 65, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #FF6D00; +@define-color error_color #DD2C00; +@define-color success_color #00C853; +/* +FIXME this is really an API */ +@define-color content_view_bg #EEFFFF; +@define-color placeholder_text_color #7e8998; diff --git a/gtk/manta/gtk-assets/box-shadow-backdrop.png b/gtk/manta/gtk-assets/box-shadow-backdrop.png new file mode 100644 index 0000000..80da9ad Binary files /dev/null and b/gtk/manta/gtk-assets/box-shadow-backdrop.png differ diff --git a/gtk/manta/gtk-assets/box-shadow-backdrop@2.png b/gtk/manta/gtk-assets/box-shadow-backdrop@2.png new file mode 100644 index 0000000..e25f663 Binary files /dev/null and b/gtk/manta/gtk-assets/box-shadow-backdrop@2.png differ diff --git a/gtk/manta/gtk-assets/box-shadow.png b/gtk/manta/gtk-assets/box-shadow.png new file mode 100644 index 0000000..1a9e33d Binary files /dev/null and b/gtk/manta/gtk-assets/box-shadow.png differ diff --git a/gtk/manta/gtk-assets/box-shadow@2.png b/gtk/manta/gtk-assets/box-shadow@2.png new file mode 100644 index 0000000..d299515 Binary files /dev/null and b/gtk/manta/gtk-assets/box-shadow@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-checked-active.png b/gtk/manta/gtk-assets/checkbox-checked-active.png new file mode 100644 index 0000000..837adc1 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-checked-active.png differ diff --git a/gtk/manta/gtk-assets/checkbox-checked-active@2.png b/gtk/manta/gtk-assets/checkbox-checked-active@2.png new file mode 100644 index 0000000..dd4057e Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-checked-active@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-checked-disabled.png b/gtk/manta/gtk-assets/checkbox-checked-disabled.png new file mode 100644 index 0000000..3f4d4c4 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-checked-disabled.png differ diff --git a/gtk/manta/gtk-assets/checkbox-checked-disabled@2.png b/gtk/manta/gtk-assets/checkbox-checked-disabled@2.png new file mode 100644 index 0000000..c94434f Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-checked-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-checked-hover.png b/gtk/manta/gtk-assets/checkbox-checked-hover.png new file mode 100644 index 0000000..ec677b5 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-checked-hover.png differ diff --git a/gtk/manta/gtk-assets/checkbox-checked-hover@2.png b/gtk/manta/gtk-assets/checkbox-checked-hover@2.png new file mode 100644 index 0000000..263b6f9 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-checked-hover@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-checked.png b/gtk/manta/gtk-assets/checkbox-checked.png new file mode 100644 index 0000000..3879e97 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-checked.png differ diff --git a/gtk/manta/gtk-assets/checkbox-checked@2.png b/gtk/manta/gtk-assets/checkbox-checked@2.png new file mode 100644 index 0000000..490612d Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-checked@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-mixed-active.png b/gtk/manta/gtk-assets/checkbox-mixed-active.png new file mode 100644 index 0000000..467c3d6 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-mixed-active.png differ diff --git a/gtk/manta/gtk-assets/checkbox-mixed-active@2.png b/gtk/manta/gtk-assets/checkbox-mixed-active@2.png new file mode 100644 index 0000000..a561c93 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-mixed-active@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-mixed-disabled.png b/gtk/manta/gtk-assets/checkbox-mixed-disabled.png new file mode 100644 index 0000000..9759417 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-mixed-disabled.png differ diff --git a/gtk/manta/gtk-assets/checkbox-mixed-disabled@2.png b/gtk/manta/gtk-assets/checkbox-mixed-disabled@2.png new file mode 100644 index 0000000..3b54dfd Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-mixed-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-mixed-hover.png b/gtk/manta/gtk-assets/checkbox-mixed-hover.png new file mode 100644 index 0000000..f089512 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-mixed-hover.png differ diff --git a/gtk/manta/gtk-assets/checkbox-mixed-hover@2.png b/gtk/manta/gtk-assets/checkbox-mixed-hover@2.png new file mode 100644 index 0000000..1225fec Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-mixed-hover@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-mixed.png b/gtk/manta/gtk-assets/checkbox-mixed.png new file mode 100644 index 0000000..d57763d Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-mixed.png differ diff --git a/gtk/manta/gtk-assets/checkbox-mixed@2.png b/gtk/manta/gtk-assets/checkbox-mixed@2.png new file mode 100644 index 0000000..ddf9dc2 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-mixed@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-unchecked-active.png b/gtk/manta/gtk-assets/checkbox-unchecked-active.png new file mode 100644 index 0000000..6594245 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-unchecked-active.png differ diff --git a/gtk/manta/gtk-assets/checkbox-unchecked-active@2.png b/gtk/manta/gtk-assets/checkbox-unchecked-active@2.png new file mode 100644 index 0000000..70b45c4 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-unchecked-active@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-unchecked-disabled.png b/gtk/manta/gtk-assets/checkbox-unchecked-disabled.png new file mode 100644 index 0000000..4e0a477 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-unchecked-disabled.png differ diff --git a/gtk/manta/gtk-assets/checkbox-unchecked-disabled@2.png b/gtk/manta/gtk-assets/checkbox-unchecked-disabled@2.png new file mode 100644 index 0000000..b999c54 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-unchecked-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-unchecked-hover.png b/gtk/manta/gtk-assets/checkbox-unchecked-hover.png new file mode 100644 index 0000000..a406bd4 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-unchecked-hover.png differ diff --git a/gtk/manta/gtk-assets/checkbox-unchecked-hover@2.png b/gtk/manta/gtk-assets/checkbox-unchecked-hover@2.png new file mode 100644 index 0000000..b4b8912 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-unchecked-hover@2.png differ diff --git a/gtk/manta/gtk-assets/checkbox-unchecked.png b/gtk/manta/gtk-assets/checkbox-unchecked.png new file mode 100644 index 0000000..c4d2643 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-unchecked.png differ diff --git a/gtk/manta/gtk-assets/checkbox-unchecked@2.png b/gtk/manta/gtk-assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..f9c0288 Binary files /dev/null and b/gtk/manta/gtk-assets/checkbox-unchecked@2.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-checked-disabled.png b/gtk/manta/gtk-assets/menu-checkbox-checked-disabled.png new file mode 100644 index 0000000..f530fad Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-checked-disabled.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-checked-disabled@2.png b/gtk/manta/gtk-assets/menu-checkbox-checked-disabled@2.png new file mode 100644 index 0000000..5940892 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-checked-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-checked.png b/gtk/manta/gtk-assets/menu-checkbox-checked.png new file mode 100644 index 0000000..484d331 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-checked.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-checked@2.png b/gtk/manta/gtk-assets/menu-checkbox-checked@2.png new file mode 100644 index 0000000..eca1911 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-checked@2.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-mixed-disabled.png b/gtk/manta/gtk-assets/menu-checkbox-mixed-disabled.png new file mode 100644 index 0000000..4dfa785 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-mixed-disabled.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-mixed-disabled@2.png b/gtk/manta/gtk-assets/menu-checkbox-mixed-disabled@2.png new file mode 100644 index 0000000..34f4709 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-mixed-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-mixed.png b/gtk/manta/gtk-assets/menu-checkbox-mixed.png new file mode 100644 index 0000000..1b28dfe Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-mixed.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-mixed@2.png b/gtk/manta/gtk-assets/menu-checkbox-mixed@2.png new file mode 100644 index 0000000..24451e3 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-mixed@2.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-unchecked-disabled.png b/gtk/manta/gtk-assets/menu-checkbox-unchecked-disabled.png new file mode 100644 index 0000000..5f586e5 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-unchecked-disabled.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-unchecked-disabled@2.png b/gtk/manta/gtk-assets/menu-checkbox-unchecked-disabled@2.png new file mode 100644 index 0000000..a724ddb Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-unchecked-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-unchecked.png b/gtk/manta/gtk-assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..e00c54e Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-unchecked.png differ diff --git a/gtk/manta/gtk-assets/menu-checkbox-unchecked@2.png b/gtk/manta/gtk-assets/menu-checkbox-unchecked@2.png new file mode 100644 index 0000000..eaaadab Binary files /dev/null and b/gtk/manta/gtk-assets/menu-checkbox-unchecked@2.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-checked-disabled.png b/gtk/manta/gtk-assets/menu-radio-checked-disabled.png new file mode 100644 index 0000000..9a58ebd Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-checked-disabled.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-checked-disabled@2.png b/gtk/manta/gtk-assets/menu-radio-checked-disabled@2.png new file mode 100644 index 0000000..c2590fc Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-checked-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-checked.png b/gtk/manta/gtk-assets/menu-radio-checked.png new file mode 100644 index 0000000..dc504bd Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-checked.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-checked@2.png b/gtk/manta/gtk-assets/menu-radio-checked@2.png new file mode 100644 index 0000000..148a27e Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-checked@2.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-mixed-disabled.png b/gtk/manta/gtk-assets/menu-radio-mixed-disabled.png new file mode 100644 index 0000000..bc93eaa Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-mixed-disabled.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-mixed-disabled@2.png b/gtk/manta/gtk-assets/menu-radio-mixed-disabled@2.png new file mode 100644 index 0000000..535b57b Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-mixed-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-mixed.png b/gtk/manta/gtk-assets/menu-radio-mixed.png new file mode 100644 index 0000000..a39a9d3 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-mixed.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-mixed@2.png b/gtk/manta/gtk-assets/menu-radio-mixed@2.png new file mode 100644 index 0000000..356f068 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-mixed@2.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-unchecked-disabled.png b/gtk/manta/gtk-assets/menu-radio-unchecked-disabled.png new file mode 100644 index 0000000..5de7931 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-unchecked-disabled.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-unchecked-disabled@2.png b/gtk/manta/gtk-assets/menu-radio-unchecked-disabled@2.png new file mode 100644 index 0000000..e63cb87 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-unchecked-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-unchecked.png b/gtk/manta/gtk-assets/menu-radio-unchecked.png new file mode 100644 index 0000000..0908929 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-unchecked.png differ diff --git a/gtk/manta/gtk-assets/menu-radio-unchecked@2.png b/gtk/manta/gtk-assets/menu-radio-unchecked@2.png new file mode 100644 index 0000000..471df87 Binary files /dev/null and b/gtk/manta/gtk-assets/menu-radio-unchecked@2.png differ diff --git a/gtk/manta/gtk-assets/radio-checked-active.png b/gtk/manta/gtk-assets/radio-checked-active.png new file mode 100644 index 0000000..55251a1 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-checked-active.png differ diff --git a/gtk/manta/gtk-assets/radio-checked-active@2.png b/gtk/manta/gtk-assets/radio-checked-active@2.png new file mode 100644 index 0000000..9f80656 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-checked-active@2.png differ diff --git a/gtk/manta/gtk-assets/radio-checked-disabled.png b/gtk/manta/gtk-assets/radio-checked-disabled.png new file mode 100644 index 0000000..6b16838 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-checked-disabled.png differ diff --git a/gtk/manta/gtk-assets/radio-checked-disabled@2.png b/gtk/manta/gtk-assets/radio-checked-disabled@2.png new file mode 100644 index 0000000..6ea42c0 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-checked-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/radio-checked-hover.png b/gtk/manta/gtk-assets/radio-checked-hover.png new file mode 100644 index 0000000..43fec6e Binary files /dev/null and b/gtk/manta/gtk-assets/radio-checked-hover.png differ diff --git a/gtk/manta/gtk-assets/radio-checked-hover@2.png b/gtk/manta/gtk-assets/radio-checked-hover@2.png new file mode 100644 index 0000000..28c357c Binary files /dev/null and b/gtk/manta/gtk-assets/radio-checked-hover@2.png differ diff --git a/gtk/manta/gtk-assets/radio-checked.png b/gtk/manta/gtk-assets/radio-checked.png new file mode 100644 index 0000000..5eeb5e3 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-checked.png differ diff --git a/gtk/manta/gtk-assets/radio-checked@2.png b/gtk/manta/gtk-assets/radio-checked@2.png new file mode 100644 index 0000000..b6cef3c Binary files /dev/null and b/gtk/manta/gtk-assets/radio-checked@2.png differ diff --git a/gtk/manta/gtk-assets/radio-mixed-active.png b/gtk/manta/gtk-assets/radio-mixed-active.png new file mode 100644 index 0000000..2e314c6 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-mixed-active.png differ diff --git a/gtk/manta/gtk-assets/radio-mixed-active@2.png b/gtk/manta/gtk-assets/radio-mixed-active@2.png new file mode 100644 index 0000000..e454f2c Binary files /dev/null and b/gtk/manta/gtk-assets/radio-mixed-active@2.png differ diff --git a/gtk/manta/gtk-assets/radio-mixed-disabled.png b/gtk/manta/gtk-assets/radio-mixed-disabled.png new file mode 100644 index 0000000..977dd9b Binary files /dev/null and b/gtk/manta/gtk-assets/radio-mixed-disabled.png differ diff --git a/gtk/manta/gtk-assets/radio-mixed-disabled@2.png b/gtk/manta/gtk-assets/radio-mixed-disabled@2.png new file mode 100644 index 0000000..0e7a36a Binary files /dev/null and b/gtk/manta/gtk-assets/radio-mixed-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/radio-mixed-hover.png b/gtk/manta/gtk-assets/radio-mixed-hover.png new file mode 100644 index 0000000..be70193 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-mixed-hover.png differ diff --git a/gtk/manta/gtk-assets/radio-mixed-hover@2.png b/gtk/manta/gtk-assets/radio-mixed-hover@2.png new file mode 100644 index 0000000..5462196 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-mixed-hover@2.png differ diff --git a/gtk/manta/gtk-assets/radio-mixed.png b/gtk/manta/gtk-assets/radio-mixed.png new file mode 100644 index 0000000..f2e1eeb Binary files /dev/null and b/gtk/manta/gtk-assets/radio-mixed.png differ diff --git a/gtk/manta/gtk-assets/radio-mixed@2.png b/gtk/manta/gtk-assets/radio-mixed@2.png new file mode 100644 index 0000000..caaea81 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-mixed@2.png differ diff --git a/gtk/manta/gtk-assets/radio-unchecked-active.png b/gtk/manta/gtk-assets/radio-unchecked-active.png new file mode 100644 index 0000000..668b0a9 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-unchecked-active.png differ diff --git a/gtk/manta/gtk-assets/radio-unchecked-active@2.png b/gtk/manta/gtk-assets/radio-unchecked-active@2.png new file mode 100644 index 0000000..07ee485 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-unchecked-active@2.png differ diff --git a/gtk/manta/gtk-assets/radio-unchecked-disabled.png b/gtk/manta/gtk-assets/radio-unchecked-disabled.png new file mode 100644 index 0000000..736809b Binary files /dev/null and b/gtk/manta/gtk-assets/radio-unchecked-disabled.png differ diff --git a/gtk/manta/gtk-assets/radio-unchecked-disabled@2.png b/gtk/manta/gtk-assets/radio-unchecked-disabled@2.png new file mode 100644 index 0000000..1c4e082 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-unchecked-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/radio-unchecked-hover.png b/gtk/manta/gtk-assets/radio-unchecked-hover.png new file mode 100644 index 0000000..ff50c1f Binary files /dev/null and b/gtk/manta/gtk-assets/radio-unchecked-hover.png differ diff --git a/gtk/manta/gtk-assets/radio-unchecked-hover@2.png b/gtk/manta/gtk-assets/radio-unchecked-hover@2.png new file mode 100644 index 0000000..f159ae5 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-unchecked-hover@2.png differ diff --git a/gtk/manta/gtk-assets/radio-unchecked.png b/gtk/manta/gtk-assets/radio-unchecked.png new file mode 100644 index 0000000..c18d958 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-unchecked.png differ diff --git a/gtk/manta/gtk-assets/radio-unchecked@2.png b/gtk/manta/gtk-assets/radio-unchecked@2.png new file mode 100644 index 0000000..e762fa2 Binary files /dev/null and b/gtk/manta/gtk-assets/radio-unchecked@2.png differ diff --git a/gtk/manta/gtk-assets/scalable/checkbox-checked-symbolic.svg b/gtk/manta/gtk-assets/scalable/checkbox-checked-symbolic.svg new file mode 100644 index 0000000..8067c11 --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/checkbox-checked-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/checkbox-checked-symbolic.symbolic.png new file mode 100644 index 0000000..a2d5bad Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/checkbox-checked-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/checkbox-mixed-symbolic.svg b/gtk/manta/gtk-assets/scalable/checkbox-mixed-symbolic.svg new file mode 100644 index 0000000..76e69c9 --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/checkbox-mixed-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/checkbox-mixed-symbolic.symbolic.png new file mode 100644 index 0000000..0184bcc Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/checkbox-mixed-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/checkbox-unchecked-symbolic.svg b/gtk/manta/gtk-assets/scalable/checkbox-unchecked-symbolic.svg new file mode 100644 index 0000000..97dbb89 --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/checkbox-unchecked-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/checkbox-unchecked-symbolic.symbolic.png new file mode 100644 index 0000000..79e437a Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/checkbox-unchecked-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/radio-checked-symbolic.svg b/gtk/manta/gtk-assets/scalable/radio-checked-symbolic.svg new file mode 100644 index 0000000..7b82c3d --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/radio-checked-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/radio-checked-symbolic.symbolic.png new file mode 100644 index 0000000..cbf2640 Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/radio-checked-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/radio-mixed-symbolic.svg b/gtk/manta/gtk-assets/scalable/radio-mixed-symbolic.svg new file mode 100644 index 0000000..123cb14 --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/radio-mixed-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/radio-mixed-symbolic.symbolic.png new file mode 100644 index 0000000..6ad4407 Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/radio-mixed-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/radio-unchecked-symbolic.svg b/gtk/manta/gtk-assets/scalable/radio-unchecked-symbolic.svg new file mode 100644 index 0000000..6d97559 --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/radio-unchecked-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/radio-unchecked-symbolic.symbolic.png new file mode 100644 index 0000000..880ca4d Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/radio-unchecked-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/small-checkbox-checked-symbolic.svg b/gtk/manta/gtk-assets/scalable/small-checkbox-checked-symbolic.svg new file mode 100644 index 0000000..fd7bc5f --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/small-checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/small-checkbox-checked-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/small-checkbox-checked-symbolic.symbolic.png new file mode 100644 index 0000000..43ce59d Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/small-checkbox-checked-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/small-checkbox-mixed-symbolic.svg b/gtk/manta/gtk-assets/scalable/small-checkbox-mixed-symbolic.svg new file mode 100644 index 0000000..cd1de1a --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/small-checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/small-checkbox-mixed-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/small-checkbox-mixed-symbolic.symbolic.png new file mode 100644 index 0000000..61ce682 Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/small-checkbox-mixed-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/small-checkbox-unchecked-symbolic.svg b/gtk/manta/gtk-assets/scalable/small-checkbox-unchecked-symbolic.svg new file mode 100644 index 0000000..ff66f24 --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/small-checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/small-checkbox-unchecked-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/small-checkbox-unchecked-symbolic.symbolic.png new file mode 100644 index 0000000..7f995dd Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/small-checkbox-unchecked-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/small-radio-checked-symbolic.svg b/gtk/manta/gtk-assets/scalable/small-radio-checked-symbolic.svg new file mode 100644 index 0000000..bda0fe4 --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/small-radio-checked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/small-radio-checked-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/small-radio-checked-symbolic.symbolic.png new file mode 100644 index 0000000..6d9dff9 Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/small-radio-checked-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/small-radio-mixed-symbolic.svg b/gtk/manta/gtk-assets/scalable/small-radio-mixed-symbolic.svg new file mode 100644 index 0000000..ca5de39 --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/small-radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/small-radio-mixed-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/small-radio-mixed-symbolic.symbolic.png new file mode 100644 index 0000000..e3967cf Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/small-radio-mixed-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scalable/small-radio-unchecked-symbolic.svg b/gtk/manta/gtk-assets/scalable/small-radio-unchecked-symbolic.svg new file mode 100644 index 0000000..532834d --- /dev/null +++ b/gtk/manta/gtk-assets/scalable/small-radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/gtk-assets/scalable/small-radio-unchecked-symbolic.symbolic.png b/gtk/manta/gtk-assets/scalable/small-radio-unchecked-symbolic.symbolic.png new file mode 100644 index 0000000..39c49bf Binary files /dev/null and b/gtk/manta/gtk-assets/scalable/small-radio-unchecked-symbolic.symbolic.png differ diff --git a/gtk/manta/gtk-assets/scale-horz-marks-after-slider-disabled.png b/gtk/manta/gtk-assets/scale-horz-marks-after-slider-disabled.png new file mode 100644 index 0000000..007f406 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-horz-marks-after-slider-disabled.png differ diff --git a/gtk/manta/gtk-assets/scale-horz-marks-after-slider-disabled@2.png b/gtk/manta/gtk-assets/scale-horz-marks-after-slider-disabled@2.png new file mode 100644 index 0000000..dd215da Binary files /dev/null and b/gtk/manta/gtk-assets/scale-horz-marks-after-slider-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/scale-horz-marks-after-slider.png b/gtk/manta/gtk-assets/scale-horz-marks-after-slider.png new file mode 100644 index 0000000..47859ed Binary files /dev/null and b/gtk/manta/gtk-assets/scale-horz-marks-after-slider.png differ diff --git a/gtk/manta/gtk-assets/scale-horz-marks-after-slider@2.png b/gtk/manta/gtk-assets/scale-horz-marks-after-slider@2.png new file mode 100644 index 0000000..6a7cda0 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-horz-marks-after-slider@2.png differ diff --git a/gtk/manta/gtk-assets/scale-horz-marks-before-slider-disabled.png b/gtk/manta/gtk-assets/scale-horz-marks-before-slider-disabled.png new file mode 100644 index 0000000..562dfd3 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-horz-marks-before-slider-disabled.png differ diff --git a/gtk/manta/gtk-assets/scale-horz-marks-before-slider-disabled@2.png b/gtk/manta/gtk-assets/scale-horz-marks-before-slider-disabled@2.png new file mode 100644 index 0000000..6780294 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-horz-marks-before-slider-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/scale-horz-marks-before-slider.png b/gtk/manta/gtk-assets/scale-horz-marks-before-slider.png new file mode 100644 index 0000000..44df1c0 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-horz-marks-before-slider.png differ diff --git a/gtk/manta/gtk-assets/scale-horz-marks-before-slider@2.png b/gtk/manta/gtk-assets/scale-horz-marks-before-slider@2.png new file mode 100644 index 0000000..6ce5350 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-horz-marks-before-slider@2.png differ diff --git a/gtk/manta/gtk-assets/scale-slider-disabled.png b/gtk/manta/gtk-assets/scale-slider-disabled.png new file mode 100644 index 0000000..261f1f7 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-slider-disabled.png differ diff --git a/gtk/manta/gtk-assets/scale-slider-disabled@2.png b/gtk/manta/gtk-assets/scale-slider-disabled@2.png new file mode 100644 index 0000000..6fb4a07 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-slider-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/scale-slider.png b/gtk/manta/gtk-assets/scale-slider.png new file mode 100644 index 0000000..a916f12 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-slider.png differ diff --git a/gtk/manta/gtk-assets/scale-slider@2.png b/gtk/manta/gtk-assets/scale-slider@2.png new file mode 100644 index 0000000..527c8fe Binary files /dev/null and b/gtk/manta/gtk-assets/scale-slider@2.png differ diff --git a/gtk/manta/gtk-assets/scale-vert-marks-after-slider-disabled.png b/gtk/manta/gtk-assets/scale-vert-marks-after-slider-disabled.png new file mode 100644 index 0000000..47044d0 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-vert-marks-after-slider-disabled.png differ diff --git a/gtk/manta/gtk-assets/scale-vert-marks-after-slider-disabled@2.png b/gtk/manta/gtk-assets/scale-vert-marks-after-slider-disabled@2.png new file mode 100644 index 0000000..299ccbd Binary files /dev/null and b/gtk/manta/gtk-assets/scale-vert-marks-after-slider-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/scale-vert-marks-after-slider.png b/gtk/manta/gtk-assets/scale-vert-marks-after-slider.png new file mode 100644 index 0000000..28048a8 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-vert-marks-after-slider.png differ diff --git a/gtk/manta/gtk-assets/scale-vert-marks-after-slider@2.png b/gtk/manta/gtk-assets/scale-vert-marks-after-slider@2.png new file mode 100644 index 0000000..58ce3c8 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-vert-marks-after-slider@2.png differ diff --git a/gtk/manta/gtk-assets/scale-vert-marks-before-slider-disabled.png b/gtk/manta/gtk-assets/scale-vert-marks-before-slider-disabled.png new file mode 100644 index 0000000..98df1f7 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-vert-marks-before-slider-disabled.png differ diff --git a/gtk/manta/gtk-assets/scale-vert-marks-before-slider-disabled@2.png b/gtk/manta/gtk-assets/scale-vert-marks-before-slider-disabled@2.png new file mode 100644 index 0000000..7dfa18d Binary files /dev/null and b/gtk/manta/gtk-assets/scale-vert-marks-before-slider-disabled@2.png differ diff --git a/gtk/manta/gtk-assets/scale-vert-marks-before-slider.png b/gtk/manta/gtk-assets/scale-vert-marks-before-slider.png new file mode 100644 index 0000000..0d174f9 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-vert-marks-before-slider.png differ diff --git a/gtk/manta/gtk-assets/scale-vert-marks-before-slider@2.png b/gtk/manta/gtk-assets/scale-vert-marks-before-slider@2.png new file mode 100644 index 0000000..be62f95 Binary files /dev/null and b/gtk/manta/gtk-assets/scale-vert-marks-before-slider@2.png differ diff --git a/gtk/manta/gtk-assets/selectionmode-checkbox-checked.png b/gtk/manta/gtk-assets/selectionmode-checkbox-checked.png new file mode 100644 index 0000000..2c0dafb Binary files /dev/null and b/gtk/manta/gtk-assets/selectionmode-checkbox-checked.png differ diff --git a/gtk/manta/gtk-assets/selectionmode-checkbox-checked@2.png b/gtk/manta/gtk-assets/selectionmode-checkbox-checked@2.png new file mode 100644 index 0000000..399be10 Binary files /dev/null and b/gtk/manta/gtk-assets/selectionmode-checkbox-checked@2.png differ diff --git a/gtk/manta/gtk-assets/selectionmode-checkbox-unchecked.png b/gtk/manta/gtk-assets/selectionmode-checkbox-unchecked.png new file mode 100644 index 0000000..57e3cbe Binary files /dev/null and b/gtk/manta/gtk-assets/selectionmode-checkbox-unchecked.png differ diff --git a/gtk/manta/gtk-assets/selectionmode-checkbox-unchecked@2.png b/gtk/manta/gtk-assets/selectionmode-checkbox-unchecked@2.png new file mode 100644 index 0000000..1a5cfd7 Binary files /dev/null and b/gtk/manta/gtk-assets/selectionmode-checkbox-unchecked@2.png differ diff --git a/gtk/manta/index.theme b/gtk/manta/index.theme new file mode 100755 index 0000000..0317b67 --- /dev/null +++ b/gtk/manta/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Materia-light-compact +Comment=A Material Design theme +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Materia-light-compact +MetacityTheme=Materia-light-compact +IconTheme=Adwaita +CursorTheme=Adwaita +CursorSize=24 diff --git a/gtk/manta/metacity-1/assets/button.svg b/gtk/manta/metacity-1/assets/button.svg new file mode 100644 index 0000000..9a6896d --- /dev/null +++ b/gtk/manta/metacity-1/assets/button.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/metacity-1/assets/close.svg b/gtk/manta/metacity-1/assets/close.svg new file mode 100644 index 0000000..00de643 --- /dev/null +++ b/gtk/manta/metacity-1/assets/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/metacity-1/assets/maximize.svg b/gtk/manta/metacity-1/assets/maximize.svg new file mode 100644 index 0000000..f371d74 --- /dev/null +++ b/gtk/manta/metacity-1/assets/maximize.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/metacity-1/assets/menu.svg b/gtk/manta/metacity-1/assets/menu.svg new file mode 100644 index 0000000..15d241f --- /dev/null +++ b/gtk/manta/metacity-1/assets/menu.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/metacity-1/assets/minimize.svg b/gtk/manta/metacity-1/assets/minimize.svg new file mode 100644 index 0000000..8958f1f --- /dev/null +++ b/gtk/manta/metacity-1/assets/minimize.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/metacity-1/assets/shade.svg b/gtk/manta/metacity-1/assets/shade.svg new file mode 100644 index 0000000..e2702dd --- /dev/null +++ b/gtk/manta/metacity-1/assets/shade.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/metacity-1/assets/unmaximize.svg b/gtk/manta/metacity-1/assets/unmaximize.svg new file mode 100644 index 0000000..cebc060 --- /dev/null +++ b/gtk/manta/metacity-1/assets/unmaximize.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/metacity-1/assets/unshade.svg b/gtk/manta/metacity-1/assets/unshade.svg new file mode 100644 index 0000000..1fe3cb0 --- /dev/null +++ b/gtk/manta/metacity-1/assets/unshade.svg @@ -0,0 +1,3 @@ + + + diff --git a/gtk/manta/metacity-1/metacity-theme-2.xml b/gtk/manta/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..6643919 --- /dev/null +++ b/gtk/manta/metacity-1/metacity-theme-2.xml @@ -0,0 +1,691 @@ + + + + manta + nana-4 + GPL + 2017 + manta Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="title_alt_focused"> + <title + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_alt_focused"/> +</draw_ops> + +<draw_ops name="title_alt_unfocused"> + <title + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_alt_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="entire_background_alt_focused"> + <rectangle color="C_titlebar_alt" x="0" y="0" width="width" height="height" filled="true"/> +</draw_ops> + +<draw_ops name="entire_background_alt_unfocused"> + <include name="entire_background_alt_focused"/> +</draw_ops> + +<draw_ops name="highlight"> + <line color="C_highlight" x1="2" y1="0" x2="width - 3" y2="0"/> + <arc color="C_highlight" x="0 - 1" y="0" width="5" height="5" start_angle="270" extent_angle="90"/> + <arc color="C_highlight" x="width - 5" y="0" width="5" height="5" start_angle="0" extent_angle="90"/> +</draw_ops> + +<draw_ops name="highlight_alt"> + <line color="C_highlight_alt" x1="2" y1="0" x2="width - 3" y2="0"/> + <arc color="C_highlight_alt" x="0 - 1" y="0" width="5" height="5" start_angle="270" extent_angle="90"/> + <arc color="C_highlight_alt" x="width - 5" y="0" width="5" height="5" start_angle="0" extent_angle="90"/> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <include name="entire_background_focused"/> + <include name="highlight"/> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <include name="entire_background_unfocused"/> + <include name="highlight"/> +</draw_ops> + +<draw_ops name="titlebar_alt_focused"> + <include name="entire_background_alt_focused"/> + <include name="highlight_alt"/> +</draw_ops> + +<draw_ops name="titlebar_alt_unfocused"> + <include name="entire_background_alt_unfocused"/> + <include name="highlight_alt"/> +</draw_ops> + + +<!-- button icons --> + +<!-- close --> +<draw_ops name="close_focused"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <include name="close_focused_prelight"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <include name="close_unfocused_prelight"/> +</draw_ops> + +<!-- maximize --> +<draw_ops name="maximize_focused"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <include name="maximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <include name="maximize_unfocused_prelight"/> +</draw_ops> + +<!-- unmaximize --> +<draw_ops name="unmaximize_focused"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_prelight"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_pressed"> + <include name="unmaximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_prelight"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_pressed"> + <include name="unmaximize_unfocused_prelight"/> +</draw_ops> + +<!-- minimize --> +<draw_ops name="minimize_focused"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <include name="minimize_focused_prelight"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <include name="minimize_unfocused_prelight"/> +</draw_ops> + +<!-- menu --> +<draw_ops name="menu_focused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_prelight"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_pressed"> + <include name="menu_focused_prelight"/> +</draw_ops> + +<draw_ops name="menu_unfocused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_prelight"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_pressed"> + <include name="menu_unfocused_prelight"/> +</draw_ops> + +<!-- shade --> +<draw_ops name="shade_focused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_prelight"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_pressed"> + <include name="shade_focused_prelight"/> +</draw_ops> + +<draw_ops name="shade_unfocused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_prelight"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_pressed"> + <include name="shade_unfocused_prelight"/> +</draw_ops> + +<!-- unshade --> +<draw_ops name="unshade_focused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_prelight"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_pressed"> + <include name="unshade_focused_prelight"/> +</draw_ops> + +<draw_ops name="unshade_unfocused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_prelight"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_pressed"> + <include name="unshade_unfocused_prelight"/> +</draw_ops> + +<!-- appmenu --> +<constant name="D_appmenu_icon_size" value="16"/> + +<draw_ops name="appmenu_icon_focused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size"/> +</draw_ops> + +<draw_ops name="appmenu_focused"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_prelight"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_pressed"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_icon_unfocused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size" + alpha="0.7"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_prelight"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_pressed"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + + +<!-- button backgrounds --> + +<draw_ops name="button_focused"> +</draw_ops> + +<draw_ops name="button_focused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.15" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_focused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.3" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_unfocused"> +</draw_ops> + +<draw_ops name="button_unfocused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.15" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="button_unfocused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.3" colorize="C_title_unfocused"/> +</draw_ops> + + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused"/> + <piece position="titlebar" draw_ops="titlebar_focused"/> + <piece position="title" draw_ops="title_focused"/> + <button function="close" state="normal" draw_ops="close_focused"/> + <button function="close" state="prelight" draw_ops="close_focused_prelight"/> + <button function="close" state="pressed" draw_ops="close_focused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_focused"/> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_focused"/> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_focused"/> + <button function="menu" state="prelight" draw_ops="menu_focused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed"/> + <!-- <button version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_focused"/> --> + <!-- <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_focused_prelight"/> --> + <!-- <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_focused_pressed"/> --> + <button function="shade" state="normal" draw_ops="shade_focused"/> + <button function="shade" state="prelight" draw_ops="shade_focused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_focused"/> + <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_focused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_focused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused"/> + <piece position="titlebar" draw_ops="titlebar_unfocused"/> + <piece position="title" draw_ops="title_unfocused"/> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused"/> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed"/> + <!-- <button version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_unfocused"/> --> + <!-- <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_unfocused_prelight"/> --> + <!-- <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_unfocused_pressed"/> --> + <button function="shade" state="normal" draw_ops="shade_unfocused"/> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_unfocused"/> + <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> + <button function="maximize" state="normal" draw_ops="unmaximize_focused"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_focused_pressed"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_focused_prelight"/> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> + <button function="maximize" state="normal" draw_ops="unmaximize_unfocused"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_unfocused_pressed"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_unfocused_prelight"/> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="dialog_focused" geometry="nobuttons" parent="normal_focused"> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="nobuttons" parent="normal_unfocused"> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal" parent="normal_focused"> + <piece position="entire_background" draw_ops="entire_background_alt_focused"/> + <piece position="titlebar" draw_ops="titlebar_alt_focused"/> + <piece position="title" draw_ops="title_alt_focused"/> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal" parent="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_alt_unfocused"/> + <piece position="titlebar" draw_ops="titlebar_alt_unfocused"/> + <piece position="title" draw_ops="title_alt_unfocused"/> +</frame_style> + +<frame_style name="utility_focused" geometry="small" parent="normal_focused"> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small" parent="normal_unfocused"> +</frame_style> + +<frame_style name="border_focused" geometry="border" parent="normal_focused"> +</frame_style> + +<frame_style name="border_unfocused" geometry="border" parent="normal_unfocused"> +</frame_style> + +<frame_style name="borderless_focused" geometry="borderless" parent="normal_focused"> +</frame_style> + +<frame_style name="borderless_unfocused" geometry="borderless" parent="normal_unfocused"> +</frame_style> + +<frame_style name="attached_focused" geometry="attached" parent="modal_dialog_focused"> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached" parent="modal_dialog_unfocused"> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <!-- <button version=">= 3.5" function="appmenu" state="normal"><draw_ops></draw_ops></button> --> + <!-- <button version=">= 3.5" function="appmenu" state="pressed"><draw_ops></draw_ops></button> --> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_unfocused"/> + <!-- <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> --> + <!-- <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> --> + <!-- <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> --> + <!-- <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> --> + <!-- <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> --> + <!-- <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> --> + <!-- <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> --> + <!-- <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> --> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless_focused"/> + <frame focus="no" state="maximized" style="borderless_unfocused"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<!-- <window version=">= 3.2" type="attached" style_set="attached_style_set"/> --> + +</metacity_theme> diff --git a/gtk/manta/metacity-1/metacity-theme-3.xml b/gtk/manta/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..515a252 --- /dev/null +++ b/gtk/manta/metacity-1/metacity-theme-3.xml @@ -0,0 +1,711 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>manta</name> + <author>nana-4</author> + <copyright>GPL</copyright> + <date>2017</date> + <description>manta Metacity theme</description> +</info> + + +<!-- meaningful constants --> + +<constant name="C_titlebar" value="#F0719B"/> +<constant name="C_titlebar_alt" value="gtk:custom(theme_bg_color,gtk:bg[NORMAL])"/> + +<constant name="C_highlight" value="blend/#F0719B/#EEFFFF/0.4"/> +<constant name="C_highlight_alt" value="blend/gtk:custom(theme_bg_color,gtk:bg[NORMAL])/#EEFFFF/0.4"/> + +<constant name="C_title_focused" value="gtk:custom(theme_fg_color,gtk:fg[NORMAL])"/> +<constant name="C_title_unfocused" value="blend/#F0719B/gtk:custom(theme_fg_color,gtk:fg[NORMAL])/0.7"/> +<constant name="C_title_alt_focused" value="gtk:custom(theme_fg_color,gtk:fg[NORMAL])"/> +<constant name="C_title_alt_unfocused" value="blend/gtk:custom(theme_bg_color,gtk:bg[NORMAL])/gtk:custom(theme_fg_color,gtk:fg[NORMAL])/0.7"/> + + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="2" rounded_top_right="2"> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> + <distance name="bottom_height" value="1"/> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="12"/> + <border name="title_border" left="10" right="10" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <aspect_ratio name="button" value="1"/> +</frame_geometry> + +<frame_geometry name="max" 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"/> +</frame_geometry> + +<frame_geometry name="tiled_left" parent="max"> + <distance name="right_width" value="0"/> +</frame_geometry> + +<frame_geometry name="tiled_right" parent="max"> + <distance name="left_width" value="0"/> +</frame_geometry> + +<frame_geometry name="nobuttons" hide_buttons="true" parent="normal"> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" 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="8"/> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal"> + <distance name="title_vertical_pad" value="8"/> + <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> + +<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> + +<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="button_border" left="0" right="0" top="0" bottom="0"/> + <border name="title_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<frame_geometry name="attached" hide_buttons="true" rounded_bottom_left="2" rounded_bottom_right="2" parent="normal"> + <distance name="title_vertical_pad" value="4"/> +</frame_geometry> + + +<!-- drawing operations --> + +<!-- title --> +<draw_ops name="title_focused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_focused"/> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2))" + ellipsize_width="width" + color="C_title_focused"/> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_unfocused"/> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2))" + ellipsize_width="width" + color="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="title_alt_focused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_alt_focused"/> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2))" + ellipsize_width="width" + color="C_title_alt_focused"/> +</draw_ops> + +<draw_ops name="title_alt_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_alt_unfocused"/> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2))" + ellipsize_width="width" + color="C_title_alt_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="entire_background_alt_focused"> + <rectangle color="C_titlebar_alt" x="0" y="0" width="width" height="height" filled="true"/> +</draw_ops> + +<draw_ops name="entire_background_alt_unfocused"> + <include name="entire_background_alt_focused"/> +</draw_ops> + +<draw_ops name="highlight"> + <line color="C_highlight" x1="2" y1="0" x2="width - 3" y2="0"/> + <arc color="C_highlight" x="0 - 1" y="0" width="5" height="5" start_angle="270" extent_angle="90"/> + <arc color="C_highlight" x="width - 5" y="0" width="5" height="5" start_angle="0" extent_angle="90"/> +</draw_ops> + +<draw_ops name="highlight_alt"> + <line color="C_highlight_alt" x1="2" y1="0" x2="width - 3" y2="0"/> + <arc color="C_highlight_alt" x="0 - 1" y="0" width="5" height="5" start_angle="270" extent_angle="90"/> + <arc color="C_highlight_alt" x="width - 5" y="0" width="5" height="5" start_angle="0" extent_angle="90"/> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <include name="entire_background_focused"/> + <include name="highlight"/> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <include name="entire_background_unfocused"/> + <include name="highlight"/> +</draw_ops> + +<draw_ops name="titlebar_alt_focused"> + <include name="entire_background_alt_focused"/> + <include name="highlight_alt"/> +</draw_ops> + +<draw_ops name="titlebar_alt_unfocused"> + <include name="entire_background_alt_unfocused"/> + <include name="highlight_alt"/> +</draw_ops> + + +<!-- button icons --> + +<!-- close --> +<draw_ops name="close_focused"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <include name="close_focused_prelight"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <include name="close_unfocused_prelight"/> +</draw_ops> + +<!-- maximize --> +<draw_ops name="maximize_focused"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <include name="maximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <include name="maximize_unfocused_prelight"/> +</draw_ops> + +<!-- unmaximize --> +<draw_ops name="unmaximize_focused"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_prelight"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_pressed"> + <include name="unmaximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_prelight"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_pressed"> + <include name="unmaximize_unfocused_prelight"/> +</draw_ops> + +<!-- minimize --> +<draw_ops name="minimize_focused"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <include name="minimize_focused_prelight"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <include name="minimize_unfocused_prelight"/> +</draw_ops> + +<!-- menu --> +<draw_ops name="menu_focused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_prelight"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_pressed"> + <include name="menu_focused_prelight"/> +</draw_ops> + +<draw_ops name="menu_unfocused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_prelight"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_pressed"> + <include name="menu_unfocused_prelight"/> +</draw_ops> + +<!-- shade --> +<draw_ops name="shade_focused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_prelight"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_pressed"> + <include name="shade_focused_prelight"/> +</draw_ops> + +<draw_ops name="shade_unfocused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_prelight"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_pressed"> + <include name="shade_unfocused_prelight"/> +</draw_ops> + +<!-- unshade --> +<draw_ops name="unshade_focused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_prelight"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_pressed"> + <include name="unshade_focused_prelight"/> +</draw_ops> + +<draw_ops name="unshade_unfocused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_prelight"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_pressed"> + <include name="unshade_unfocused_prelight"/> +</draw_ops> + +<!-- appmenu --> +<constant name="D_appmenu_icon_size" value="16"/> + +<draw_ops name="appmenu_icon_focused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size"/> +</draw_ops> + +<draw_ops name="appmenu_focused"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_prelight"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_pressed"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_icon_unfocused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size" + alpha="0.7"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_prelight"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_pressed"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + + +<!-- button backgrounds --> + +<draw_ops name="button_focused"> +</draw_ops> + +<draw_ops name="button_focused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.15" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_focused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.3" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_unfocused"> +</draw_ops> + +<draw_ops name="button_unfocused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.15" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="button_unfocused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.3" colorize="C_title_unfocused"/> +</draw_ops> + + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused"/> + <piece position="titlebar" draw_ops="titlebar_focused"/> + <piece position="title" draw_ops="title_focused"/> + <button function="close" state="normal" draw_ops="close_focused"/> + <button function="close" state="prelight" draw_ops="close_focused_prelight"/> + <button function="close" state="pressed" draw_ops="close_focused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_focused"/> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_focused"/> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_focused"/> + <button function="menu" state="prelight" draw_ops="menu_focused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed"/> + <button version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_focused"/> + <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_focused_prelight"/> + <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_focused_pressed"/> + <button function="shade" state="normal" draw_ops="shade_focused"/> + <button function="shade" state="prelight" draw_ops="shade_focused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_focused"/> + <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_focused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_focused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused"/> + <piece position="titlebar" draw_ops="titlebar_unfocused"/> + <piece position="title" draw_ops="title_unfocused"/> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused"/> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed"/> + <button version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_unfocused"/> + <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_unfocused_prelight"/> + <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_unfocused_pressed"/> + <button function="shade" state="normal" draw_ops="shade_unfocused"/> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_unfocused"/> + <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> + <button function="maximize" state="normal" draw_ops="unmaximize_focused"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_focused_pressed"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_focused_prelight"/> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> + <button function="maximize" state="normal" draw_ops="unmaximize_unfocused"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_unfocused_pressed"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_unfocused_prelight"/> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="dialog_focused" geometry="nobuttons" parent="normal_focused"> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="nobuttons" parent="normal_unfocused"> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal" parent="normal_focused"> + <piece position="entire_background" draw_ops="entire_background_alt_focused"/> + <piece position="titlebar" draw_ops="titlebar_alt_focused"/> + <piece position="title" draw_ops="title_alt_focused"/> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal" parent="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_alt_unfocused"/> + <piece position="titlebar" draw_ops="titlebar_alt_unfocused"/> + <piece position="title" draw_ops="title_alt_unfocused"/> +</frame_style> + +<frame_style name="utility_focused" geometry="small" parent="normal_focused"> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small" parent="normal_unfocused"> +</frame_style> + +<frame_style name="border_focused" geometry="border" parent="normal_focused"> +</frame_style> + +<frame_style name="border_unfocused" geometry="border" parent="normal_unfocused"> +</frame_style> + +<frame_style name="borderless_focused" geometry="borderless" parent="normal_focused"> +</frame_style> + +<frame_style name="borderless_unfocused" geometry="borderless" parent="normal_unfocused"> +</frame_style> + +<frame_style name="attached_focused" geometry="attached" parent="modal_dialog_focused"> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached" parent="modal_dialog_unfocused"> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button version=">= 3.5" function="appmenu" state="normal"><draw_ops></draw_ops></button> + <button version=">= 3.5" function="appmenu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless_focused"/> + <frame focus="no" state="maximized" style="borderless_unfocused"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/gtk/manta/unity/assets/close_focused.svg b/gtk/manta/unity/assets/close_focused.svg new file mode 100644 index 0000000..2040c0f --- /dev/null +++ b/gtk/manta/unity/assets/close_focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/assets/close_focused_prelight.svg b/gtk/manta/unity/assets/close_focused_prelight.svg new file mode 100644 index 0000000..d3825ae --- /dev/null +++ b/gtk/manta/unity/assets/close_focused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.87"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/assets/close_focused_pressed.svg b/gtk/manta/unity/assets/close_focused_pressed.svg new file mode 100644 index 0000000..e2032f9 --- /dev/null +++ b/gtk/manta/unity/assets/close_focused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.87"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/assets/close_unfocused.svg b/gtk/manta/unity/assets/close_unfocused.svg new file mode 100644 index 0000000..50e6798 --- /dev/null +++ b/gtk/manta/unity/assets/close_unfocused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.38"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/assets/close_unfocused_prelight.svg b/gtk/manta/unity/assets/close_unfocused_prelight.svg new file mode 100644 index 0000000..286b837 --- /dev/null +++ b/gtk/manta/unity/assets/close_unfocused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/assets/close_unfocused_pressed.svg b/gtk/manta/unity/assets/close_unfocused_pressed.svg new file mode 100644 index 0000000..ca478c4 --- /dev/null +++ b/gtk/manta/unity/assets/close_unfocused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/assets/maximize_focused.svg b/gtk/manta/unity/assets/maximize_focused.svg new file mode 100644 index 0000000..af7fa70 --- /dev/null +++ b/gtk/manta/unity/assets/maximize_focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/assets/maximize_focused_prelight.svg b/gtk/manta/unity/assets/maximize_focused_prelight.svg new file mode 100644 index 0000000..3ca8b10 --- /dev/null +++ b/gtk/manta/unity/assets/maximize_focused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.87"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/assets/maximize_focused_pressed.svg b/gtk/manta/unity/assets/maximize_focused_pressed.svg new file mode 100644 index 0000000..a058f61 --- /dev/null +++ b/gtk/manta/unity/assets/maximize_focused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.87"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/assets/maximize_unfocused.svg b/gtk/manta/unity/assets/maximize_unfocused.svg new file mode 100644 index 0000000..a66cd49 --- /dev/null +++ b/gtk/manta/unity/assets/maximize_unfocused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.38"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/assets/maximize_unfocused_prelight.svg b/gtk/manta/unity/assets/maximize_unfocused_prelight.svg new file mode 100644 index 0000000..bcaed12 --- /dev/null +++ b/gtk/manta/unity/assets/maximize_unfocused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/assets/maximize_unfocused_pressed.svg b/gtk/manta/unity/assets/maximize_unfocused_pressed.svg new file mode 100644 index 0000000..c2d67e7 --- /dev/null +++ b/gtk/manta/unity/assets/maximize_unfocused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/assets/minimize_focused.svg b/gtk/manta/unity/assets/minimize_focused.svg new file mode 100644 index 0000000..7c7acba --- /dev/null +++ b/gtk/manta/unity/assets/minimize_focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/assets/minimize_focused_prelight.svg b/gtk/manta/unity/assets/minimize_focused_prelight.svg new file mode 100644 index 0000000..7e134db --- /dev/null +++ b/gtk/manta/unity/assets/minimize_focused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.87"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/assets/minimize_focused_pressed.svg b/gtk/manta/unity/assets/minimize_focused_pressed.svg new file mode 100644 index 0000000..5ab92f5 --- /dev/null +++ b/gtk/manta/unity/assets/minimize_focused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.87"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/assets/minimize_unfocused.svg b/gtk/manta/unity/assets/minimize_unfocused.svg new file mode 100644 index 0000000..fec5269 --- /dev/null +++ b/gtk/manta/unity/assets/minimize_unfocused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.38"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/assets/minimize_unfocused_prelight.svg b/gtk/manta/unity/assets/minimize_unfocused_prelight.svg new file mode 100644 index 0000000..e816f6b --- /dev/null +++ b/gtk/manta/unity/assets/minimize_unfocused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/assets/minimize_unfocused_pressed.svg b/gtk/manta/unity/assets/minimize_unfocused_pressed.svg new file mode 100644 index 0000000..820ff14 --- /dev/null +++ b/gtk/manta/unity/assets/minimize_unfocused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/assets/unmaximize_focused.svg b/gtk/manta/unity/assets/unmaximize_focused.svg new file mode 100644 index 0000000..c1ff9f7 --- /dev/null +++ b/gtk/manta/unity/assets/unmaximize_focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/assets/unmaximize_focused_prelight.svg b/gtk/manta/unity/assets/unmaximize_focused_prelight.svg new file mode 100644 index 0000000..93b9c4b --- /dev/null +++ b/gtk/manta/unity/assets/unmaximize_focused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.87"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/assets/unmaximize_focused_pressed.svg b/gtk/manta/unity/assets/unmaximize_focused_pressed.svg new file mode 100644 index 0000000..9cb1248 --- /dev/null +++ b/gtk/manta/unity/assets/unmaximize_focused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.87"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/assets/unmaximize_unfocused.svg b/gtk/manta/unity/assets/unmaximize_unfocused.svg new file mode 100644 index 0000000..8e5f561 --- /dev/null +++ b/gtk/manta/unity/assets/unmaximize_unfocused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.38"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/assets/unmaximize_unfocused_prelight.svg b/gtk/manta/unity/assets/unmaximize_unfocused_prelight.svg new file mode 100644 index 0000000..9ad3adc --- /dev/null +++ b/gtk/manta/unity/assets/unmaximize_unfocused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/assets/unmaximize_unfocused_pressed.svg b/gtk/manta/unity/assets/unmaximize_unfocused_pressed.svg new file mode 100644 index 0000000..55ea247 --- /dev/null +++ b/gtk/manta/unity/assets/unmaximize_unfocused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#1E2541" opacity="0.54"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/close.svg b/gtk/manta/unity/close.svg new file mode 120000 index 0000000..b73ba6c --- /dev/null +++ b/gtk/manta/unity/close.svg @@ -0,0 +1 @@ +assets/close_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/close_dash.svg b/gtk/manta/unity/close_dash.svg new file mode 100644 index 0000000..a0dd038 --- /dev/null +++ b/gtk/manta/unity/close_dash.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/close_dash_disabled.svg b/gtk/manta/unity/close_dash_disabled.svg new file mode 100644 index 0000000..f9f9a76 --- /dev/null +++ b/gtk/manta/unity/close_dash_disabled.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF" opacity="0.3"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/close_dash_prelight.svg b/gtk/manta/unity/close_dash_prelight.svg new file mode 100644 index 0000000..b49e6b6 --- /dev/null +++ b/gtk/manta/unity/close_dash_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/close_dash_pressed.svg b/gtk/manta/unity/close_dash_pressed.svg new file mode 100644 index 0000000..fa9c95e --- /dev/null +++ b/gtk/manta/unity/close_dash_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/gtk/manta/unity/close_focused_normal.svg b/gtk/manta/unity/close_focused_normal.svg new file mode 120000 index 0000000..b73ba6c --- /dev/null +++ b/gtk/manta/unity/close_focused_normal.svg @@ -0,0 +1 @@ +assets/close_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/close_focused_prelight.svg b/gtk/manta/unity/close_focused_prelight.svg new file mode 120000 index 0000000..4357436 --- /dev/null +++ b/gtk/manta/unity/close_focused_prelight.svg @@ -0,0 +1 @@ +assets/close_focused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/close_focused_pressed.svg b/gtk/manta/unity/close_focused_pressed.svg new file mode 120000 index 0000000..6a8cf1d --- /dev/null +++ b/gtk/manta/unity/close_focused_pressed.svg @@ -0,0 +1 @@ +assets/close_focused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/unity/close_unfocused.svg b/gtk/manta/unity/close_unfocused.svg new file mode 120000 index 0000000..47aee7d --- /dev/null +++ b/gtk/manta/unity/close_unfocused.svg @@ -0,0 +1 @@ +assets/close_unfocused.svg \ No newline at end of file diff --git a/gtk/manta/unity/close_unfocused_prelight.svg b/gtk/manta/unity/close_unfocused_prelight.svg new file mode 120000 index 0000000..8e6a956 --- /dev/null +++ b/gtk/manta/unity/close_unfocused_prelight.svg @@ -0,0 +1 @@ +assets/close_unfocused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/close_unfocused_pressed.svg b/gtk/manta/unity/close_unfocused_pressed.svg new file mode 120000 index 0000000..b59544a --- /dev/null +++ b/gtk/manta/unity/close_unfocused_pressed.svg @@ -0,0 +1 @@ +assets/close_unfocused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/unity/dash-widgets.json b/gtk/manta/unity/dash-widgets.json new file mode 100644 index 0000000..41a90c4 --- /dev/null +++ b/gtk/manta/unity/dash-widgets.json @@ -0,0 +1,162 @@ +{ + "stock-icons" : { + "checkmark" : ["/usr/share/icons/unity/checkmark.svg", "32px", "32px"], + "cross" : ["/usr/share/icons/unity/cross.svg", "32px", "32px"], + "grid-view" : ["/usr/share/icons/unity/grid-view.svg", "32px", "32px"], + "flow-view" : ["/usr/share/icons/unity/flow-view.svg", "32px", "32px"], + "star" : ["/usr/share/icons/unity/star.svg", "32px", "32px"], + "triangle" : ["/usr/share/icons/unity/curved-triangle.svg", "32px", "32px"], + "bag" : ["/usr/share/icons/unity/bag.svg", "32px", "32px"], + "next" : ["/usr/share/icons/unity/next.svg", "32px", "32px"], + "prev" : ["/usr/share/icons/unity/prev.svg", "32px", "32px"], + "play" : ["/usr/share/icons/unity/play.svg", "32px", "32px"] + }, + + "regular-text" : { + "text-color" : "#ffffff", + "text-opacity" : 1.0, + "text-size" : 13.0, + "text-mode" : "normal", + "text-weight" : "regular" + }, + + "comments": { + "states" : ["ACTIVE", "NORMAL","PRELIGHT","SELECTED","INSENSITIVE"] + }, + + "button-icon": { + "color" : ["#ffffff", "#EEFFFF", "#EEFFFF", "#EEFFFF", "#EEFFFF"], + "opacity" : [ 1.0, 1.0, 1.0, 0.8, 0.8], + "overlay-opacity": [ 0.30, 0.48, 0.48, 0.45, 0.45], + "overlay-mode" : [ "normal","multiply", "multiply", "normal", "normal"], + "blur-size" : [ 5, 0, 0, 0, 0] + }, + + "icon-only" : { + "color" : "#123456", + "opacity" : 1.0, + "overlay-opacity": 0.2, + "overlay-mode" : "normal", + "blur-size" : 6 + }, + + "lens-nav-bar" : { + "icon-height" : 20, + "icon-gap" : 40 + }, + + "button-label": { + "border-opacity" : [ 0.8, 0.13, 0.13, 0.13, 0.13], + "border-color" : ["#ffffff", "#EEFFFF", "#EEFFFF", "#EEFFFF", "#EEFFFF"], + "border-size" : [ 2.0, 1.0, 1.0, 0.5, 0.5], + "border-radius" : 4.0, + "text-size" : 1.0, + "text-color" : ["#ffffff", "#ffffff", "#ffffff", "#ffffff", "#ffffff"], + "text-opacity" : [ 1.0, 1.0, 1.0, 1.0, 1.0], + "fill-color" : ["#EEFFFF", "#1E2541", "#1E2541", "#1E2541", "#1E2541"], + "fill-opacity" : [ 0.13, 0.0, 0.0, 0.0, 0.0], + "overlay-opacity": [ 0.1, 0.1, 0.1, 0.0, 0.0], + "overlay-mode" : [ "normal", "normal", "normal", "normal", "normal"], + "blur-size" : [ 1, 1, 1, 0, 0] + }, + + "track-view" : { + "line-gap" : 26.0, + "heading-list-gap" : 30, + "left-padding" : 20 + }, + + "row-caption" : { + "main-text-color" : "#ffffff", + "main-text-opacity" : 1.0, + "main-text-size" : 17.0, + "main-text-weight" : "regular", + "sub-text-color" : "#ffffff", + "sub-text-opacity" : 0.5, + "sub-text-size" : 13.0, + "sub-text-weight" : "regular", + "icon-main-gap" : 10, + "main-sub-gap" : 15, + "sub-arrow-gap" : 10 + }, + + "preview-heading-small" : { + "main-title-size" : 23.0, + "main-title-color" : "#ffffff", + "main-title-opacity" : 1.0, + "main-title-mode" : "normal", + "main-title-weight" : "regular", + "sub-title-size" : 17.0, + "sub-title-color" : "#ffffff", + "sub-title-opacity" : 1.0, + "sub-title-mode" : "normal", + "sub-title-weight" : "regular", + "main-sub-gap" : 15, + "padding" : 10 + }, + + "preview-heading" : { + "main-title-size" : 30.0, + "main-title-color" : "#ffffff", + "main-title-opacity" : 1.0, + "main-title-mode" : "normal", + "main-title-weight" : "regular", + "sub-title-size" : 17.0, + "sub-title-color" : "#ffffff", + "sub-title-opacity" : 1.0, + "sub-title-mode" : "normal", + "sub-title-weight" : "regular", + "main-sub-gap" : 15, + "padding" : 10 + }, + + "scrollbar" : { + "color" : "#fff", + "opacity" : 1.0, + "size" : 8, + "buttons-size" : 0, + "corner-radius" : 3 + }, + + "scrollbar-overlay": { + "color" : "#fff", + "opacity" : 1.0, + "size" : 3, + "corner-radius" : 1.5 + }, + + "scrollbar-track": { + "color" : "#fff", + "opacity" : 0.4 + }, + + "filter-pane" : { + "width" : 330, + "title-size" : 17.0, + "title-color" : "#ffffff", + "title-opacity" : 1.0, + "title-mode" : "normal", + "title-style" : "bold", + "title-arrow-gap" : 10, + "button-height" : 30, + "border-size" : 1 + }, + + "separator" : { + "size" : 1.0, + "color" : "#ffffff", + "opacity" : 0.15, + "overlay-opacity": 0.47, + "overlay-mode" : "normal", + "blur-size" : 6 + }, + + "filter-caption" : { + "text-size" : 17, + "text-color" : "#ffffff", + "text-opacity" : 1.0, + "text-mode" : "normal", + "text-weight" : "bold", + "text-arrow-gap" : 10 + } +} diff --git a/gtk/manta/unity/launcher_arrow_btt_19.svg b/gtk/manta/unity/launcher_arrow_btt_19.svg new file mode 100644 index 0000000..4ee663b --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_btt_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8" fill="#EEFFFF"> + <circle cx="10" cy="4" r="2"/> +</svg> diff --git a/gtk/manta/unity/launcher_arrow_btt_37.svg b/gtk/manta/unity/launcher_arrow_btt_37.svg new file mode 100644 index 0000000..d6f9bc2 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_btt_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="37" height="16" viewBox="0 0 37 16" fill="#EEFFFF"> + <circle cx="19" cy="8" r="4"/> +</svg> diff --git a/gtk/manta/unity/launcher_arrow_ltr_19.svg b/gtk/manta/unity/launcher_arrow_ltr_19.svg new file mode 100644 index 0000000..afdb870 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_ltr_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="8" height="19" viewBox="0 0 8 19" fill="#EEFFFF"> + <circle cx="4" cy="10" r="2"/> +</svg> diff --git a/gtk/manta/unity/launcher_arrow_ltr_37.svg b/gtk/manta/unity/launcher_arrow_ltr_37.svg new file mode 100644 index 0000000..146a4d6 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_ltr_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="37" viewBox="0 0 16 37" fill="#EEFFFF"> + <circle cx="8" cy="19" r="4"/> +</svg> diff --git a/gtk/manta/unity/launcher_arrow_outline_btt_19.svg b/gtk/manta/unity/launcher_arrow_outline_btt_19.svg new file mode 100644 index 0000000..f7764b9 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_outline_btt_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8" fill="#EEFFFF" opacity="0.7"> + <circle cx="10" cy="4" r="2"/> +</svg> diff --git a/gtk/manta/unity/launcher_arrow_outline_btt_37.svg b/gtk/manta/unity/launcher_arrow_outline_btt_37.svg new file mode 100644 index 0000000..98e2eaf --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_outline_btt_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="37" height="16" viewBox="0 0 37 16" fill="#EEFFFF" opacity="0.7"> + <circle cx="19" cy="8" r="4"/> +</svg> diff --git a/gtk/manta/unity/launcher_arrow_outline_ltr_19.svg b/gtk/manta/unity/launcher_arrow_outline_ltr_19.svg new file mode 100644 index 0000000..61ebf2a --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_outline_ltr_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="8" height="19" viewBox="0 0 8 19" fill="#EEFFFF" opacity="0.7"> + <circle cx="4" cy="10" r="2"/> +</svg> diff --git a/gtk/manta/unity/launcher_arrow_outline_ltr_37.svg b/gtk/manta/unity/launcher_arrow_outline_ltr_37.svg new file mode 100644 index 0000000..de3b6fe --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_outline_ltr_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="37" viewBox="0 0 16 37" fill="#EEFFFF" opacity="0.7"> + <circle cx="8" cy="19" r="4"/> +</svg> diff --git a/gtk/manta/unity/launcher_arrow_outline_rtl_19.svg b/gtk/manta/unity/launcher_arrow_outline_rtl_19.svg new file mode 120000 index 0000000..11da60a --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_outline_rtl_19.svg @@ -0,0 +1 @@ +launcher_arrow_outline_ltr_19.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_arrow_outline_rtl_37.svg b/gtk/manta/unity/launcher_arrow_outline_rtl_37.svg new file mode 120000 index 0000000..16e1b01 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_outline_rtl_37.svg @@ -0,0 +1 @@ +launcher_arrow_outline_ltr_37.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_arrow_outline_ttb_19.svg b/gtk/manta/unity/launcher_arrow_outline_ttb_19.svg new file mode 120000 index 0000000..b834d86 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_outline_ttb_19.svg @@ -0,0 +1 @@ +launcher_arrow_outline_btt_19.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_arrow_outline_ttb_37.svg b/gtk/manta/unity/launcher_arrow_outline_ttb_37.svg new file mode 120000 index 0000000..ba82233 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_outline_ttb_37.svg @@ -0,0 +1 @@ +launcher_arrow_outline_btt_37.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_arrow_rtl_19.svg b/gtk/manta/unity/launcher_arrow_rtl_19.svg new file mode 120000 index 0000000..6c4e31f --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_rtl_19.svg @@ -0,0 +1 @@ +launcher_arrow_ltr_19.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_arrow_rtl_37.svg b/gtk/manta/unity/launcher_arrow_rtl_37.svg new file mode 120000 index 0000000..372ed7c --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_rtl_37.svg @@ -0,0 +1 @@ +launcher_arrow_ltr_37.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_arrow_ttb_19.svg b/gtk/manta/unity/launcher_arrow_ttb_19.svg new file mode 120000 index 0000000..f680bb8 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_ttb_19.svg @@ -0,0 +1 @@ +launcher_arrow_btt_19.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_arrow_ttb_37.svg b/gtk/manta/unity/launcher_arrow_ttb_37.svg new file mode 120000 index 0000000..3ff6f54 --- /dev/null +++ b/gtk/manta/unity/launcher_arrow_ttb_37.svg @@ -0,0 +1 @@ +launcher_arrow_btt_37.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_bfb.png b/gtk/manta/unity/launcher_bfb.png new file mode 100644 index 0000000..9ffc9ec Binary files /dev/null and b/gtk/manta/unity/launcher_bfb.png differ diff --git a/gtk/manta/unity/launcher_icon_back_150.svg b/gtk/manta/unity/launcher_icon_back_150.svg new file mode 100644 index 0000000..f5d1c70 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_back_150.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"></svg> diff --git a/gtk/manta/unity/launcher_icon_back_54.svg b/gtk/manta/unity/launcher_icon_back_54.svg new file mode 100644 index 0000000..d1d8834 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_back_54.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"></svg> diff --git a/gtk/manta/unity/launcher_icon_edge_150.svg b/gtk/manta/unity/launcher_icon_edge_150.svg new file mode 100644 index 0000000..f5d1c70 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_edge_150.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"></svg> diff --git a/gtk/manta/unity/launcher_icon_edge_54.svg b/gtk/manta/unity/launcher_icon_edge_54.svg new file mode 100644 index 0000000..d1d8834 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_edge_54.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"></svg> diff --git a/gtk/manta/unity/launcher_icon_glow_200.svg b/gtk/manta/unity/launcher_icon_glow_200.svg new file mode 100644 index 0000000..d4c10f7 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_glow_200.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"></svg> diff --git a/gtk/manta/unity/launcher_icon_glow_62.svg b/gtk/manta/unity/launcher_icon_glow_62.svg new file mode 100644 index 0000000..5453356 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_glow_62.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="62" height="62" viewBox="0 0 62 62"></svg> diff --git a/gtk/manta/unity/launcher_icon_selected_back_150.svg b/gtk/manta/unity/launcher_icon_selected_back_150.svg new file mode 100644 index 0000000..6debbc5 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_selected_back_150.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150" fill="#cfcfcf"> + <rect x="1" y="1" width="148" height="148" rx="4" ry="4"/> +</svg> diff --git a/gtk/manta/unity/launcher_icon_selected_back_54.svg b/gtk/manta/unity/launcher_icon_selected_back_54.svg new file mode 100644 index 0000000..bc5a5ef --- /dev/null +++ b/gtk/manta/unity/launcher_icon_selected_back_54.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54" fill="#cfcfcf"> + <rect x="1" y="1" width="52" height="52" rx="2" ry="2"/> +</svg> diff --git a/gtk/manta/unity/launcher_icon_shadow_200.svg b/gtk/manta/unity/launcher_icon_shadow_200.svg new file mode 100644 index 0000000..d4c10f7 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_shadow_200.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"></svg> diff --git a/gtk/manta/unity/launcher_icon_shadow_62.svg b/gtk/manta/unity/launcher_icon_shadow_62.svg new file mode 100644 index 0000000..5453356 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_shadow_62.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="62" height="62" viewBox="0 0 62 62"></svg> diff --git a/gtk/manta/unity/launcher_icon_shine_150.svg b/gtk/manta/unity/launcher_icon_shine_150.svg new file mode 100644 index 0000000..f5d1c70 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_shine_150.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"></svg> diff --git a/gtk/manta/unity/launcher_icon_shine_54.svg b/gtk/manta/unity/launcher_icon_shine_54.svg new file mode 100644 index 0000000..d1d8834 --- /dev/null +++ b/gtk/manta/unity/launcher_icon_shine_54.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"></svg> diff --git a/gtk/manta/unity/launcher_pip_btt_19.svg b/gtk/manta/unity/launcher_pip_btt_19.svg new file mode 100644 index 0000000..5f0928c --- /dev/null +++ b/gtk/manta/unity/launcher_pip_btt_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="19" height="7" viewBox="0 0 19 7" fill="#EEFFFF"> + <circle cx="9.5" cy="3.5" r="1.5"/> +</svg> diff --git a/gtk/manta/unity/launcher_pip_btt_37.svg b/gtk/manta/unity/launcher_pip_btt_37.svg new file mode 100644 index 0000000..f123e33 --- /dev/null +++ b/gtk/manta/unity/launcher_pip_btt_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="37" height="15" viewBox="0 0 37 15" fill="#EEFFFF"> + <circle cx="18.5" cy="7.5" r="3.5"/> +</svg> diff --git a/gtk/manta/unity/launcher_pip_ltr_19.svg b/gtk/manta/unity/launcher_pip_ltr_19.svg new file mode 100644 index 0000000..192deef --- /dev/null +++ b/gtk/manta/unity/launcher_pip_ltr_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="7" height="19" viewBox="0 0 7 19" fill="#EEFFFF"> + <circle cx="3.5" cy="9.5" r="1.5"/> +</svg> diff --git a/gtk/manta/unity/launcher_pip_ltr_37.svg b/gtk/manta/unity/launcher_pip_ltr_37.svg new file mode 100644 index 0000000..5a82175 --- /dev/null +++ b/gtk/manta/unity/launcher_pip_ltr_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="15" height="37" viewBox="0 0 15 37" fill="#EEFFFF"> + <circle cx="7.5" cy="18.5" r="3.5"/> +</svg> diff --git a/gtk/manta/unity/launcher_pip_rtl_19.svg b/gtk/manta/unity/launcher_pip_rtl_19.svg new file mode 120000 index 0000000..b054ac9 --- /dev/null +++ b/gtk/manta/unity/launcher_pip_rtl_19.svg @@ -0,0 +1 @@ +launcher_pip_ltr_19.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_pip_rtl_37.svg b/gtk/manta/unity/launcher_pip_rtl_37.svg new file mode 120000 index 0000000..3523e45 --- /dev/null +++ b/gtk/manta/unity/launcher_pip_rtl_37.svg @@ -0,0 +1 @@ +launcher_pip_ltr_37.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_pip_ttb_19.svg b/gtk/manta/unity/launcher_pip_ttb_19.svg new file mode 120000 index 0000000..c3d1daa --- /dev/null +++ b/gtk/manta/unity/launcher_pip_ttb_19.svg @@ -0,0 +1 @@ +launcher_pip_btt_19.svg \ No newline at end of file diff --git a/gtk/manta/unity/launcher_pip_ttb_37.svg b/gtk/manta/unity/launcher_pip_ttb_37.svg new file mode 120000 index 0000000..db01556 --- /dev/null +++ b/gtk/manta/unity/launcher_pip_ttb_37.svg @@ -0,0 +1 @@ +launcher_pip_btt_37.svg \ No newline at end of file diff --git a/gtk/manta/unity/maximize.svg b/gtk/manta/unity/maximize.svg new file mode 120000 index 0000000..2f5209d --- /dev/null +++ b/gtk/manta/unity/maximize.svg @@ -0,0 +1 @@ +assets/maximize_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/maximize_dash.svg b/gtk/manta/unity/maximize_dash.svg new file mode 100644 index 0000000..f740336 --- /dev/null +++ b/gtk/manta/unity/maximize_dash.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/maximize_dash_disabled.svg b/gtk/manta/unity/maximize_dash_disabled.svg new file mode 100644 index 0000000..af40aa3 --- /dev/null +++ b/gtk/manta/unity/maximize_dash_disabled.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF" opacity="0.3"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/maximize_dash_prelight.svg b/gtk/manta/unity/maximize_dash_prelight.svg new file mode 100644 index 0000000..c0598a4 --- /dev/null +++ b/gtk/manta/unity/maximize_dash_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/maximize_dash_pressed.svg b/gtk/manta/unity/maximize_dash_pressed.svg new file mode 100644 index 0000000..984948b --- /dev/null +++ b/gtk/manta/unity/maximize_dash_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/gtk/manta/unity/maximize_focused_normal.svg b/gtk/manta/unity/maximize_focused_normal.svg new file mode 120000 index 0000000..2f5209d --- /dev/null +++ b/gtk/manta/unity/maximize_focused_normal.svg @@ -0,0 +1 @@ +assets/maximize_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/maximize_focused_prelight.svg b/gtk/manta/unity/maximize_focused_prelight.svg new file mode 120000 index 0000000..4426372 --- /dev/null +++ b/gtk/manta/unity/maximize_focused_prelight.svg @@ -0,0 +1 @@ +assets/maximize_focused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/maximize_focused_pressed.svg b/gtk/manta/unity/maximize_focused_pressed.svg new file mode 120000 index 0000000..16de6f0 --- /dev/null +++ b/gtk/manta/unity/maximize_focused_pressed.svg @@ -0,0 +1 @@ +assets/maximize_focused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/unity/maximize_unfocused.svg b/gtk/manta/unity/maximize_unfocused.svg new file mode 120000 index 0000000..82bf693 --- /dev/null +++ b/gtk/manta/unity/maximize_unfocused.svg @@ -0,0 +1 @@ +assets/maximize_unfocused.svg \ No newline at end of file diff --git a/gtk/manta/unity/maximize_unfocused_prelight.svg b/gtk/manta/unity/maximize_unfocused_prelight.svg new file mode 120000 index 0000000..06b219d --- /dev/null +++ b/gtk/manta/unity/maximize_unfocused_prelight.svg @@ -0,0 +1 @@ +assets/maximize_unfocused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/maximize_unfocused_pressed.svg b/gtk/manta/unity/maximize_unfocused_pressed.svg new file mode 120000 index 0000000..29ade40 --- /dev/null +++ b/gtk/manta/unity/maximize_unfocused_pressed.svg @@ -0,0 +1 @@ +assets/maximize_unfocused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/unity/minimize.svg b/gtk/manta/unity/minimize.svg new file mode 120000 index 0000000..601bb67 --- /dev/null +++ b/gtk/manta/unity/minimize.svg @@ -0,0 +1 @@ +assets/minimize_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/minimize_dash.svg b/gtk/manta/unity/minimize_dash.svg new file mode 100644 index 0000000..34bc77b --- /dev/null +++ b/gtk/manta/unity/minimize_dash.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/minimize_dash_disabled.svg b/gtk/manta/unity/minimize_dash_disabled.svg new file mode 100644 index 0000000..0c8d9d6 --- /dev/null +++ b/gtk/manta/unity/minimize_dash_disabled.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF" opacity="0.3"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/minimize_dash_prelight.svg b/gtk/manta/unity/minimize_dash_prelight.svg new file mode 100644 index 0000000..4317f8a --- /dev/null +++ b/gtk/manta/unity/minimize_dash_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/minimize_dash_pressed.svg b/gtk/manta/unity/minimize_dash_pressed.svg new file mode 100644 index 0000000..7f21bb5 --- /dev/null +++ b/gtk/manta/unity/minimize_dash_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/gtk/manta/unity/minimize_focused_normal.svg b/gtk/manta/unity/minimize_focused_normal.svg new file mode 120000 index 0000000..601bb67 --- /dev/null +++ b/gtk/manta/unity/minimize_focused_normal.svg @@ -0,0 +1 @@ +assets/minimize_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/minimize_focused_prelight.svg b/gtk/manta/unity/minimize_focused_prelight.svg new file mode 120000 index 0000000..208db64 --- /dev/null +++ b/gtk/manta/unity/minimize_focused_prelight.svg @@ -0,0 +1 @@ +assets/minimize_focused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/minimize_focused_pressed.svg b/gtk/manta/unity/minimize_focused_pressed.svg new file mode 120000 index 0000000..b5152c1 --- /dev/null +++ b/gtk/manta/unity/minimize_focused_pressed.svg @@ -0,0 +1 @@ +assets/minimize_focused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/unity/minimize_unfocused.svg b/gtk/manta/unity/minimize_unfocused.svg new file mode 120000 index 0000000..ba15dbf --- /dev/null +++ b/gtk/manta/unity/minimize_unfocused.svg @@ -0,0 +1 @@ +assets/minimize_unfocused.svg \ No newline at end of file diff --git a/gtk/manta/unity/minimize_unfocused_prelight.svg b/gtk/manta/unity/minimize_unfocused_prelight.svg new file mode 120000 index 0000000..a9fd7f6 --- /dev/null +++ b/gtk/manta/unity/minimize_unfocused_prelight.svg @@ -0,0 +1 @@ +assets/minimize_unfocused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/minimize_unfocused_pressed.svg b/gtk/manta/unity/minimize_unfocused_pressed.svg new file mode 120000 index 0000000..b084747 --- /dev/null +++ b/gtk/manta/unity/minimize_unfocused_pressed.svg @@ -0,0 +1 @@ +assets/minimize_unfocused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/unity/progress_bar_fill.svg b/gtk/manta/unity/progress_bar_fill.svg new file mode 100644 index 0000000..8bd5392 --- /dev/null +++ b/gtk/manta/unity/progress_bar_fill.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="42" height="4" viewBox="0 0 42 4"> + <rect width="42" height="4" fill="#F0719B"/> +</svg> diff --git a/gtk/manta/unity/progress_bar_trough.svg b/gtk/manta/unity/progress_bar_trough.svg new file mode 100644 index 0000000..3ad066b --- /dev/null +++ b/gtk/manta/unity/progress_bar_trough.svg @@ -0,0 +1,22 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"> + <defs> + <filter id="a" color-interpolation-filters="sRGB" x="-0.5" y="-0.5" width="2" height="2"> + <!-- <feDropShadow dx="0" dy="1" stdDeviation="1.5" flood-color="#1E2541" flood-opacity="0.12"/> --> + <!-- <feDropShadow dx="0" dy="1" stdDeviation="1" flood-color="#1E2541" flood-opacity="0.24"/> --> + + <feFlood flood-color="#1E2541" flood-opacity="0.12" result="flood"/> + <feComposite operator="in" in="flood" in2="SourceGraphic" result="composite1"/> + <feGaussianBlur stdDeviation="1.5" in="composite1" result="blur"/> + <feOffset dx="0" dy="1" result="offset"/> + <feComposite in="SourceGraphic" in2="offset" result="fbSourceGraphic"/> + + <feFlood flood-color="#1E2541" flood-opacity="0.24" result="flood"/> + <feComposite operator="in" in="flood" in2="fbSourceGraphic" result="composite1"/> + <feGaussianBlur stdDeviation="1" in="composite1" result="blur"/> + <feOffset dx="0" dy="1" result="offset"/> + <feComposite in="fbSourceGraphic" in2="offset" result="composite2"/> + </filter> + </defs> + <rect x="4" y="23" width="46" height="8" rx="2" ry="2" fill="#EEFFFF" filter="url(#a)"/> + <rect x="6" y="25" width="42" height="4" fill="#1E2541" opacity="0.12"/> +</svg> diff --git a/gtk/manta/unity/sheet_style_close_focused.svg b/gtk/manta/unity/sheet_style_close_focused.svg new file mode 120000 index 0000000..b73ba6c --- /dev/null +++ b/gtk/manta/unity/sheet_style_close_focused.svg @@ -0,0 +1 @@ +assets/close_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/sheet_style_close_focused_prelight.svg b/gtk/manta/unity/sheet_style_close_focused_prelight.svg new file mode 120000 index 0000000..4357436 --- /dev/null +++ b/gtk/manta/unity/sheet_style_close_focused_prelight.svg @@ -0,0 +1 @@ +assets/close_focused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/sheet_style_close_focused_pressed.svg b/gtk/manta/unity/sheet_style_close_focused_pressed.svg new file mode 120000 index 0000000..6a8cf1d --- /dev/null +++ b/gtk/manta/unity/sheet_style_close_focused_pressed.svg @@ -0,0 +1 @@ +assets/close_focused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/unity/unmaximize.svg b/gtk/manta/unity/unmaximize.svg new file mode 120000 index 0000000..67467f7 --- /dev/null +++ b/gtk/manta/unity/unmaximize.svg @@ -0,0 +1 @@ +assets/unmaximize_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/unmaximize_dash.svg b/gtk/manta/unity/unmaximize_dash.svg new file mode 100644 index 0000000..d664da9 --- /dev/null +++ b/gtk/manta/unity/unmaximize_dash.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/unmaximize_dash_disabled.svg b/gtk/manta/unity/unmaximize_dash_disabled.svg new file mode 100644 index 0000000..93be812 --- /dev/null +++ b/gtk/manta/unity/unmaximize_dash_disabled.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF" opacity="0.3"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/unmaximize_dash_prelight.svg b/gtk/manta/unity/unmaximize_dash_prelight.svg new file mode 100644 index 0000000..25519b9 --- /dev/null +++ b/gtk/manta/unity/unmaximize_dash_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF"> + <circle cx="12" cy="12" r="10" opacity="0.15"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/unmaximize_dash_pressed.svg b/gtk/manta/unity/unmaximize_dash_pressed.svg new file mode 100644 index 0000000..faa8375 --- /dev/null +++ b/gtk/manta/unity/unmaximize_dash_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#EEFFFF"> + <circle cx="12" cy="12" r="10" opacity="0.3"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/gtk/manta/unity/unmaximize_focused_normal.svg b/gtk/manta/unity/unmaximize_focused_normal.svg new file mode 120000 index 0000000..67467f7 --- /dev/null +++ b/gtk/manta/unity/unmaximize_focused_normal.svg @@ -0,0 +1 @@ +assets/unmaximize_focused.svg \ No newline at end of file diff --git a/gtk/manta/unity/unmaximize_focused_prelight.svg b/gtk/manta/unity/unmaximize_focused_prelight.svg new file mode 120000 index 0000000..1d8e93e --- /dev/null +++ b/gtk/manta/unity/unmaximize_focused_prelight.svg @@ -0,0 +1 @@ +assets/unmaximize_focused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/unmaximize_focused_pressed.svg b/gtk/manta/unity/unmaximize_focused_pressed.svg new file mode 120000 index 0000000..cc56831 --- /dev/null +++ b/gtk/manta/unity/unmaximize_focused_pressed.svg @@ -0,0 +1 @@ +assets/unmaximize_focused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/unity/unmaximize_unfocused.svg b/gtk/manta/unity/unmaximize_unfocused.svg new file mode 120000 index 0000000..75a28d4 --- /dev/null +++ b/gtk/manta/unity/unmaximize_unfocused.svg @@ -0,0 +1 @@ +assets/unmaximize_unfocused.svg \ No newline at end of file diff --git a/gtk/manta/unity/unmaximize_unfocused_prelight.svg b/gtk/manta/unity/unmaximize_unfocused_prelight.svg new file mode 120000 index 0000000..6916a72 --- /dev/null +++ b/gtk/manta/unity/unmaximize_unfocused_prelight.svg @@ -0,0 +1 @@ +assets/unmaximize_unfocused_prelight.svg \ No newline at end of file diff --git a/gtk/manta/unity/unmaximize_unfocused_pressed.svg b/gtk/manta/unity/unmaximize_unfocused_pressed.svg new file mode 120000 index 0000000..adfee26 --- /dev/null +++ b/gtk/manta/unity/unmaximize_unfocused_pressed.svg @@ -0,0 +1 @@ +assets/unmaximize_unfocused_pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/assets/border.svg b/gtk/manta/xfwm4/assets/border.svg new file mode 100644 index 0000000..1115ac7 --- /dev/null +++ b/gtk/manta/xfwm4/assets/border.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1" viewBox="0 0 1 1"> + <rect width="1" height="1" fill="#F0719B"/> +</svg> diff --git a/gtk/manta/xfwm4/assets/close-active.svg b/gtk/manta/xfwm4/assets/close-active.svg new file mode 100644 index 0000000..5d659bf --- /dev/null +++ b/gtk/manta/xfwm4/assets/close-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12.4 11-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/close-inactive.svg b/gtk/manta/xfwm4/assets/close-inactive.svg new file mode 100644 index 0000000..11ddc7c --- /dev/null +++ b/gtk/manta/xfwm4/assets/close-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12.4 11-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/close-prelight.svg b/gtk/manta/xfwm4/assets/close-prelight.svg new file mode 100644 index 0000000..00b50ec --- /dev/null +++ b/gtk/manta/xfwm4/assets/close-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <path d="m12.4 11-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/close-pressed.svg b/gtk/manta/xfwm4/assets/close-pressed.svg new file mode 100644 index 0000000..5d390c8 --- /dev/null +++ b/gtk/manta/xfwm4/assets/close-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <path d="m12.4 11-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/hide-active.svg b/gtk/manta/xfwm4/assets/hide-active.svg new file mode 100644 index 0000000..916f1eb --- /dev/null +++ b/gtk/manta/xfwm4/assets/hide-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12 18h8v2h-8z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/hide-inactive.svg b/gtk/manta/xfwm4/assets/hide-inactive.svg new file mode 100644 index 0000000..1ada694 --- /dev/null +++ b/gtk/manta/xfwm4/assets/hide-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12 18h8v2h-8z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/hide-prelight.svg b/gtk/manta/xfwm4/assets/hide-prelight.svg new file mode 100644 index 0000000..fd4152a --- /dev/null +++ b/gtk/manta/xfwm4/assets/hide-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <path d="m12 18h8v2h-8z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/hide-pressed.svg b/gtk/manta/xfwm4/assets/hide-pressed.svg new file mode 100644 index 0000000..1ecf265 --- /dev/null +++ b/gtk/manta/xfwm4/assets/hide-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <path d="m12 18h8v2h-8z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/maximize-active.svg b/gtk/manta/xfwm4/assets/maximize-active.svg new file mode 100644 index 0000000..5631e90 --- /dev/null +++ b/gtk/manta/xfwm4/assets/maximize-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12 12v8h8v-8zm2 2h4v4h-4z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/maximize-inactive.svg b/gtk/manta/xfwm4/assets/maximize-inactive.svg new file mode 100644 index 0000000..e97cf17 --- /dev/null +++ b/gtk/manta/xfwm4/assets/maximize-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12 12v8h8v-8zm2 2h4v4h-4z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/maximize-prelight.svg b/gtk/manta/xfwm4/assets/maximize-prelight.svg new file mode 100644 index 0000000..aecf29e --- /dev/null +++ b/gtk/manta/xfwm4/assets/maximize-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <path d="m12 12v8h8v-8zm2 2h4v4h-4z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/maximize-pressed.svg b/gtk/manta/xfwm4/assets/maximize-pressed.svg new file mode 100644 index 0000000..3340c13 --- /dev/null +++ b/gtk/manta/xfwm4/assets/maximize-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <path d="m12 12v8h8v-8zm2 2h4v4h-4z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/maximize-toggled-active.svg b/gtk/manta/xfwm4/assets/maximize-toggled-active.svg new file mode 100644 index 0000000..e42a476 --- /dev/null +++ b/gtk/manta/xfwm4/assets/maximize-toggled-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m13 13v6h6v-6zm2 2h2v2h-2z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/maximize-toggled-inactive.svg b/gtk/manta/xfwm4/assets/maximize-toggled-inactive.svg new file mode 100644 index 0000000..3f17e13 --- /dev/null +++ b/gtk/manta/xfwm4/assets/maximize-toggled-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m13 13v6h6v-6zm2 2h2v2h-2z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/maximize-toggled-prelight.svg b/gtk/manta/xfwm4/assets/maximize-toggled-prelight.svg new file mode 100644 index 0000000..4c474af --- /dev/null +++ b/gtk/manta/xfwm4/assets/maximize-toggled-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <path d="m13 13v6h6v-6zm2 2h2v2h-2z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/maximize-toggled-pressed.svg b/gtk/manta/xfwm4/assets/maximize-toggled-pressed.svg new file mode 100644 index 0000000..a79b944 --- /dev/null +++ b/gtk/manta/xfwm4/assets/maximize-toggled-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <path d="m13 13v6h6v-6zm2 2h2v2h-2z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/menu-active.svg b/gtk/manta/xfwm4/assets/menu-active.svg new file mode 100644 index 0000000..f499e0c --- /dev/null +++ b/gtk/manta/xfwm4/assets/menu-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <circle cx="16" cy="16" r="2"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/menu-inactive.svg b/gtk/manta/xfwm4/assets/menu-inactive.svg new file mode 100644 index 0000000..64934aa --- /dev/null +++ b/gtk/manta/xfwm4/assets/menu-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <circle cx="16" cy="16" r="2"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/menu-prelight.svg b/gtk/manta/xfwm4/assets/menu-prelight.svg new file mode 100644 index 0000000..127ccaf --- /dev/null +++ b/gtk/manta/xfwm4/assets/menu-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <circle cx="16" cy="16" r="2"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/menu-pressed.svg b/gtk/manta/xfwm4/assets/menu-pressed.svg new file mode 100644 index 0000000..358b884 --- /dev/null +++ b/gtk/manta/xfwm4/assets/menu-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <circle cx="16" cy="16" r="2"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/shade-active.svg b/gtk/manta/xfwm4/assets/shade-active.svg new file mode 100644 index 0000000..0d9efe9 --- /dev/null +++ b/gtk/manta/xfwm4/assets/shade-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m10 18 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/shade-inactive.svg b/gtk/manta/xfwm4/assets/shade-inactive.svg new file mode 100644 index 0000000..3683c8d --- /dev/null +++ b/gtk/manta/xfwm4/assets/shade-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m10 18 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/shade-prelight.svg b/gtk/manta/xfwm4/assets/shade-prelight.svg new file mode 100644 index 0000000..85c6af6 --- /dev/null +++ b/gtk/manta/xfwm4/assets/shade-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <path d="m10 18 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/shade-pressed.svg b/gtk/manta/xfwm4/assets/shade-pressed.svg new file mode 100644 index 0000000..d2a4ffa --- /dev/null +++ b/gtk/manta/xfwm4/assets/shade-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <path d="m10 18 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/shade-toggled-active.svg b/gtk/manta/xfwm4/assets/shade-toggled-active.svg new file mode 100644 index 0000000..f01f5c0 --- /dev/null +++ b/gtk/manta/xfwm4/assets/shade-toggled-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m22 14-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/shade-toggled-inactive.svg b/gtk/manta/xfwm4/assets/shade-toggled-inactive.svg new file mode 100644 index 0000000..ffdef86 --- /dev/null +++ b/gtk/manta/xfwm4/assets/shade-toggled-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m22 14-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/shade-toggled-prelight.svg b/gtk/manta/xfwm4/assets/shade-toggled-prelight.svg new file mode 100644 index 0000000..d09001b --- /dev/null +++ b/gtk/manta/xfwm4/assets/shade-toggled-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <path d="m22 14-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/shade-toggled-pressed.svg b/gtk/manta/xfwm4/assets/shade-toggled-pressed.svg new file mode 100644 index 0000000..b164942 --- /dev/null +++ b/gtk/manta/xfwm4/assets/shade-toggled-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <path d="m22 14-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/stick-active.svg b/gtk/manta/xfwm4/assets/stick-active.svg new file mode 100644 index 0000000..cda7d33 --- /dev/null +++ b/gtk/manta/xfwm4/assets/stick-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/stick-inactive.svg b/gtk/manta/xfwm4/assets/stick-inactive.svg new file mode 100644 index 0000000..57ba074 --- /dev/null +++ b/gtk/manta/xfwm4/assets/stick-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/stick-prelight.svg b/gtk/manta/xfwm4/assets/stick-prelight.svg new file mode 100644 index 0000000..dac70e1 --- /dev/null +++ b/gtk/manta/xfwm4/assets/stick-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/stick-pressed.svg b/gtk/manta/xfwm4/assets/stick-pressed.svg new file mode 100644 index 0000000..dd2faa2 --- /dev/null +++ b/gtk/manta/xfwm4/assets/stick-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/stick-toggled-active.svg b/gtk/manta/xfwm4/assets/stick-toggled-active.svg new file mode 100644 index 0000000..2fd0510 --- /dev/null +++ b/gtk/manta/xfwm4/assets/stick-toggled-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.54"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4zm0 2a2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2 -2 2 2 0 0 0 -2 -2z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/stick-toggled-inactive.svg b/gtk/manta/xfwm4/assets/stick-toggled-inactive.svg new file mode 100644 index 0000000..04b6131 --- /dev/null +++ b/gtk/manta/xfwm4/assets/stick-toggled-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.38"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4zm0 2a2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2 -2 2 2 0 0 0 -2 -2z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/stick-toggled-prelight.svg b/gtk/manta/xfwm4/assets/stick-toggled-prelight.svg new file mode 100644 index 0000000..aa4275f --- /dev/null +++ b/gtk/manta/xfwm4/assets/stick-toggled-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.15"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4zm0 2a2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2 -2 2 2 0 0 0 -2 -2z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/stick-toggled-pressed.svg b/gtk/manta/xfwm4/assets/stick-toggled-pressed.svg new file mode 100644 index 0000000..47ec569 --- /dev/null +++ b/gtk/manta/xfwm4/assets/stick-toggled-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#F0719B"/> + <rect width="32" height="1" fill="#EEFFFF" fill-opacity="0.4"/> + <g fill="#1E2541" opacity="0.87"> + <circle cx="16" cy="16" r="12" opacity="0.3"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4zm0 2a2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2 -2 2 2 0 0 0 -2 -2z"/> + </g> +</svg> diff --git a/gtk/manta/xfwm4/assets/themerc b/gtk/manta/xfwm4/assets/themerc new file mode 100644 index 0000000..d612dd4 --- /dev/null +++ b/gtk/manta/xfwm4/assets/themerc @@ -0,0 +1,23 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#1E2541 +active_text_shadow_color=#1E2541 +inactive_text_color=#525b70 +inactive_text_shadow_color=#525b70 +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=0 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/gtk/manta/xfwm4/assets/title-side.svg b/gtk/manta/xfwm4/assets/title-side.svg new file mode 100644 index 0000000..acbd413 --- /dev/null +++ b/gtk/manta/xfwm4/assets/title-side.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="1" height="32" viewBox="0 -1 1 32"> + <rect width="1" height="32" fill="#F0719B"/> + <rect width="1" height="1" fill="#EEFFFF" fill-opacity="0.4"/> +</svg> diff --git a/gtk/manta/xfwm4/assets/title.svg b/gtk/manta/xfwm4/assets/title.svg new file mode 100644 index 0000000..4a9a3c9 --- /dev/null +++ b/gtk/manta/xfwm4/assets/title.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="1" height="32" viewBox="0 0 1 32"> + <rect width="1" height="32" fill="#F0719B"/> + <rect width="1" height="1" fill="#EEFFFF" fill-opacity="0.4"/> +</svg> diff --git a/gtk/manta/xfwm4/bottom-active.svg b/gtk/manta/xfwm4/bottom-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/bottom-active.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/bottom-inactive.svg b/gtk/manta/xfwm4/bottom-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/bottom-inactive.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/bottom-left-active.svg b/gtk/manta/xfwm4/bottom-left-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/bottom-left-active.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/bottom-left-inactive.svg b/gtk/manta/xfwm4/bottom-left-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/bottom-left-inactive.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/bottom-right-active.svg b/gtk/manta/xfwm4/bottom-right-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/bottom-right-active.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/bottom-right-inactive.svg b/gtk/manta/xfwm4/bottom-right-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/bottom-right-inactive.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/close-active.svg b/gtk/manta/xfwm4/close-active.svg new file mode 120000 index 0000000..fa253af --- /dev/null +++ b/gtk/manta/xfwm4/close-active.svg @@ -0,0 +1 @@ +assets/close-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/close-inactive.svg b/gtk/manta/xfwm4/close-inactive.svg new file mode 120000 index 0000000..d0a099a --- /dev/null +++ b/gtk/manta/xfwm4/close-inactive.svg @@ -0,0 +1 @@ +assets/close-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/close-prelight.svg b/gtk/manta/xfwm4/close-prelight.svg new file mode 120000 index 0000000..8ef9fbe --- /dev/null +++ b/gtk/manta/xfwm4/close-prelight.svg @@ -0,0 +1 @@ +assets/close-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/close-pressed.svg b/gtk/manta/xfwm4/close-pressed.svg new file mode 120000 index 0000000..f1c7470 --- /dev/null +++ b/gtk/manta/xfwm4/close-pressed.svg @@ -0,0 +1 @@ +assets/close-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/hide-active.svg b/gtk/manta/xfwm4/hide-active.svg new file mode 120000 index 0000000..8779541 --- /dev/null +++ b/gtk/manta/xfwm4/hide-active.svg @@ -0,0 +1 @@ +assets/hide-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/hide-inactive.svg b/gtk/manta/xfwm4/hide-inactive.svg new file mode 120000 index 0000000..5492868 --- /dev/null +++ b/gtk/manta/xfwm4/hide-inactive.svg @@ -0,0 +1 @@ +assets/hide-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/hide-prelight.svg b/gtk/manta/xfwm4/hide-prelight.svg new file mode 120000 index 0000000..4134f9f --- /dev/null +++ b/gtk/manta/xfwm4/hide-prelight.svg @@ -0,0 +1 @@ +assets/hide-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/hide-pressed.svg b/gtk/manta/xfwm4/hide-pressed.svg new file mode 120000 index 0000000..1965964 --- /dev/null +++ b/gtk/manta/xfwm4/hide-pressed.svg @@ -0,0 +1 @@ +assets/hide-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/left-active.svg b/gtk/manta/xfwm4/left-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/left-active.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/left-inactive.svg b/gtk/manta/xfwm4/left-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/left-inactive.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/maximize-active.svg b/gtk/manta/xfwm4/maximize-active.svg new file mode 120000 index 0000000..3cbfdb0 --- /dev/null +++ b/gtk/manta/xfwm4/maximize-active.svg @@ -0,0 +1 @@ +assets/maximize-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/maximize-inactive.svg b/gtk/manta/xfwm4/maximize-inactive.svg new file mode 120000 index 0000000..1f35d2a --- /dev/null +++ b/gtk/manta/xfwm4/maximize-inactive.svg @@ -0,0 +1 @@ +assets/maximize-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/maximize-prelight.svg b/gtk/manta/xfwm4/maximize-prelight.svg new file mode 120000 index 0000000..de7c8a6 --- /dev/null +++ b/gtk/manta/xfwm4/maximize-prelight.svg @@ -0,0 +1 @@ +assets/maximize-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/maximize-pressed.svg b/gtk/manta/xfwm4/maximize-pressed.svg new file mode 120000 index 0000000..9315905 --- /dev/null +++ b/gtk/manta/xfwm4/maximize-pressed.svg @@ -0,0 +1 @@ +assets/maximize-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/maximize-toggled-active.svg b/gtk/manta/xfwm4/maximize-toggled-active.svg new file mode 120000 index 0000000..281bc52 --- /dev/null +++ b/gtk/manta/xfwm4/maximize-toggled-active.svg @@ -0,0 +1 @@ +assets/maximize-toggled-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/maximize-toggled-inactive.svg b/gtk/manta/xfwm4/maximize-toggled-inactive.svg new file mode 120000 index 0000000..2c48981 --- /dev/null +++ b/gtk/manta/xfwm4/maximize-toggled-inactive.svg @@ -0,0 +1 @@ +assets/maximize-toggled-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/maximize-toggled-prelight.svg b/gtk/manta/xfwm4/maximize-toggled-prelight.svg new file mode 120000 index 0000000..a02ada8 --- /dev/null +++ b/gtk/manta/xfwm4/maximize-toggled-prelight.svg @@ -0,0 +1 @@ +assets/maximize-toggled-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/maximize-toggled-pressed.svg b/gtk/manta/xfwm4/maximize-toggled-pressed.svg new file mode 120000 index 0000000..bc997d0 --- /dev/null +++ b/gtk/manta/xfwm4/maximize-toggled-pressed.svg @@ -0,0 +1 @@ +assets/maximize-toggled-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/menu-active.svg b/gtk/manta/xfwm4/menu-active.svg new file mode 120000 index 0000000..26c4ca1 --- /dev/null +++ b/gtk/manta/xfwm4/menu-active.svg @@ -0,0 +1 @@ +assets/menu-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/menu-inactive.svg b/gtk/manta/xfwm4/menu-inactive.svg new file mode 120000 index 0000000..f192992 --- /dev/null +++ b/gtk/manta/xfwm4/menu-inactive.svg @@ -0,0 +1 @@ +assets/menu-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/menu-prelight.svg b/gtk/manta/xfwm4/menu-prelight.svg new file mode 120000 index 0000000..d52b110 --- /dev/null +++ b/gtk/manta/xfwm4/menu-prelight.svg @@ -0,0 +1 @@ +assets/menu-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/menu-pressed.svg b/gtk/manta/xfwm4/menu-pressed.svg new file mode 120000 index 0000000..c2d0565 --- /dev/null +++ b/gtk/manta/xfwm4/menu-pressed.svg @@ -0,0 +1 @@ +assets/menu-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/right-active.svg b/gtk/manta/xfwm4/right-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/right-active.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/right-inactive.svg b/gtk/manta/xfwm4/right-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/gtk/manta/xfwm4/right-inactive.svg @@ -0,0 +1 @@ +assets/border.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/shade-active.svg b/gtk/manta/xfwm4/shade-active.svg new file mode 120000 index 0000000..66e2e36 --- /dev/null +++ b/gtk/manta/xfwm4/shade-active.svg @@ -0,0 +1 @@ +assets/shade-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/shade-inactive.svg b/gtk/manta/xfwm4/shade-inactive.svg new file mode 120000 index 0000000..9cc6e4c --- /dev/null +++ b/gtk/manta/xfwm4/shade-inactive.svg @@ -0,0 +1 @@ +assets/shade-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/shade-prelight.svg b/gtk/manta/xfwm4/shade-prelight.svg new file mode 120000 index 0000000..ef22f69 --- /dev/null +++ b/gtk/manta/xfwm4/shade-prelight.svg @@ -0,0 +1 @@ +assets/shade-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/shade-pressed.svg b/gtk/manta/xfwm4/shade-pressed.svg new file mode 120000 index 0000000..18b0b9b --- /dev/null +++ b/gtk/manta/xfwm4/shade-pressed.svg @@ -0,0 +1 @@ +assets/shade-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/shade-toggled-active.svg b/gtk/manta/xfwm4/shade-toggled-active.svg new file mode 120000 index 0000000..f00cc03 --- /dev/null +++ b/gtk/manta/xfwm4/shade-toggled-active.svg @@ -0,0 +1 @@ +assets/shade-toggled-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/shade-toggled-inactive.svg b/gtk/manta/xfwm4/shade-toggled-inactive.svg new file mode 120000 index 0000000..639c43f --- /dev/null +++ b/gtk/manta/xfwm4/shade-toggled-inactive.svg @@ -0,0 +1 @@ +assets/shade-toggled-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/shade-toggled-prelight.svg b/gtk/manta/xfwm4/shade-toggled-prelight.svg new file mode 120000 index 0000000..3cf5b48 --- /dev/null +++ b/gtk/manta/xfwm4/shade-toggled-prelight.svg @@ -0,0 +1 @@ +assets/shade-toggled-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/shade-toggled-pressed.svg b/gtk/manta/xfwm4/shade-toggled-pressed.svg new file mode 120000 index 0000000..63615fc --- /dev/null +++ b/gtk/manta/xfwm4/shade-toggled-pressed.svg @@ -0,0 +1 @@ +assets/shade-toggled-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/stick-active.svg b/gtk/manta/xfwm4/stick-active.svg new file mode 120000 index 0000000..092f2ac --- /dev/null +++ b/gtk/manta/xfwm4/stick-active.svg @@ -0,0 +1 @@ +assets/stick-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/stick-inactive.svg b/gtk/manta/xfwm4/stick-inactive.svg new file mode 120000 index 0000000..1085f48 --- /dev/null +++ b/gtk/manta/xfwm4/stick-inactive.svg @@ -0,0 +1 @@ +assets/stick-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/stick-prelight.svg b/gtk/manta/xfwm4/stick-prelight.svg new file mode 120000 index 0000000..87a95c7 --- /dev/null +++ b/gtk/manta/xfwm4/stick-prelight.svg @@ -0,0 +1 @@ +assets/stick-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/stick-pressed.svg b/gtk/manta/xfwm4/stick-pressed.svg new file mode 120000 index 0000000..a371c37 --- /dev/null +++ b/gtk/manta/xfwm4/stick-pressed.svg @@ -0,0 +1 @@ +assets/stick-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/stick-toggled-active.svg b/gtk/manta/xfwm4/stick-toggled-active.svg new file mode 120000 index 0000000..76aa4bc --- /dev/null +++ b/gtk/manta/xfwm4/stick-toggled-active.svg @@ -0,0 +1 @@ +assets/stick-toggled-active.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/stick-toggled-inactive.svg b/gtk/manta/xfwm4/stick-toggled-inactive.svg new file mode 120000 index 0000000..c404b45 --- /dev/null +++ b/gtk/manta/xfwm4/stick-toggled-inactive.svg @@ -0,0 +1 @@ +assets/stick-toggled-inactive.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/stick-toggled-prelight.svg b/gtk/manta/xfwm4/stick-toggled-prelight.svg new file mode 120000 index 0000000..41442cf --- /dev/null +++ b/gtk/manta/xfwm4/stick-toggled-prelight.svg @@ -0,0 +1 @@ +assets/stick-toggled-prelight.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/stick-toggled-pressed.svg b/gtk/manta/xfwm4/stick-toggled-pressed.svg new file mode 120000 index 0000000..5a8b28c --- /dev/null +++ b/gtk/manta/xfwm4/stick-toggled-pressed.svg @@ -0,0 +1 @@ +assets/stick-toggled-pressed.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/themerc b/gtk/manta/xfwm4/themerc new file mode 120000 index 0000000..737ee25 --- /dev/null +++ b/gtk/manta/xfwm4/themerc @@ -0,0 +1 @@ +assets/themerc \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-1-active.svg b/gtk/manta/xfwm4/title-1-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-1-active.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-1-inactive.svg b/gtk/manta/xfwm4/title-1-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-1-inactive.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-2-active.svg b/gtk/manta/xfwm4/title-2-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-2-active.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-2-inactive.svg b/gtk/manta/xfwm4/title-2-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-2-inactive.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-3-active.svg b/gtk/manta/xfwm4/title-3-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-3-active.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-3-inactive.svg b/gtk/manta/xfwm4/title-3-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-3-inactive.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-4-active.svg b/gtk/manta/xfwm4/title-4-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-4-active.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-4-inactive.svg b/gtk/manta/xfwm4/title-4-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-4-inactive.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-5-active.svg b/gtk/manta/xfwm4/title-5-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-5-active.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/title-5-inactive.svg b/gtk/manta/xfwm4/title-5-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/gtk/manta/xfwm4/title-5-inactive.svg @@ -0,0 +1 @@ +assets/title.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/top-left-active.svg b/gtk/manta/xfwm4/top-left-active.svg new file mode 120000 index 0000000..22b1640 --- /dev/null +++ b/gtk/manta/xfwm4/top-left-active.svg @@ -0,0 +1 @@ +assets/title-side.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/top-left-inactive.svg b/gtk/manta/xfwm4/top-left-inactive.svg new file mode 120000 index 0000000..22b1640 --- /dev/null +++ b/gtk/manta/xfwm4/top-left-inactive.svg @@ -0,0 +1 @@ +assets/title-side.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/top-right-active.svg b/gtk/manta/xfwm4/top-right-active.svg new file mode 120000 index 0000000..22b1640 --- /dev/null +++ b/gtk/manta/xfwm4/top-right-active.svg @@ -0,0 +1 @@ +assets/title-side.svg \ No newline at end of file diff --git a/gtk/manta/xfwm4/top-right-inactive.svg b/gtk/manta/xfwm4/top-right-inactive.svg new file mode 120000 index 0000000..22b1640 --- /dev/null +++ b/gtk/manta/xfwm4/top-right-inactive.svg @@ -0,0 +1 @@ +assets/title-side.svg \ No newline at end of file