rounded windows and waybar edits
416
.config/dunst/dunstrc
Normal file
@ -0,0 +1,416 @@
|
|||||||
|
[global]
|
||||||
|
### Display ###
|
||||||
|
|
||||||
|
# Which monitor should the notifications be displayed on.
|
||||||
|
monitor = 0
|
||||||
|
|
||||||
|
# Display notification on focused monitor. Possible modes are:
|
||||||
|
# mouse: follow mouse pointer
|
||||||
|
# keyboard: follow window with keyboard focus
|
||||||
|
# none: don't follow anything
|
||||||
|
#
|
||||||
|
# "keyboard" needs a window manager that exports the
|
||||||
|
# _NET_ACTIVE_WINDOW property.
|
||||||
|
# This should be the case for almost all modern window managers.
|
||||||
|
#
|
||||||
|
# If this option is set to mouse or keyboard, the monitor option
|
||||||
|
# will be ignored.
|
||||||
|
follow = mouse
|
||||||
|
|
||||||
|
# The geometry of the window:
|
||||||
|
# [{width}]x{height}[+/-{x}+/-{y}]
|
||||||
|
# The geometry of the message window.
|
||||||
|
# The height is measured in number of notifications everything else
|
||||||
|
# in pixels. If the width is omitted but the height is given
|
||||||
|
# ("-geometry x2"), the message window expands over the whole screen
|
||||||
|
# (dmenu-like). If width is 0, the window expands to the longest
|
||||||
|
# message displayed. A positive x is measured from the left, a
|
||||||
|
# negative from the right side of the screen. Y is measured from
|
||||||
|
# the top and down respectively.
|
||||||
|
# The width can be negative. In this case the actual width is the
|
||||||
|
# screen width minus the width defined in within the geometry option.
|
||||||
|
geometry = "300x100-15+46"
|
||||||
|
|
||||||
|
# Show how many messages are currently hidden (because of geometry).
|
||||||
|
indicate_hidden = yes
|
||||||
|
|
||||||
|
# Shrink window if it's smaller than the width. Will be ignored if
|
||||||
|
# width is 0.
|
||||||
|
shrink = yes
|
||||||
|
|
||||||
|
# The transparency of the window. Range: [0; 100].
|
||||||
|
# This option will only work if a compositing window manager is
|
||||||
|
# present (e.g. xcompmgr, compiz, etc.).
|
||||||
|
transparency = 0
|
||||||
|
|
||||||
|
# The height of the entire notification. If the height is smaller
|
||||||
|
# than the font height and padding combined, it will be raised
|
||||||
|
# to the font height and padding.
|
||||||
|
notification_height = 0
|
||||||
|
|
||||||
|
# Draw a line of "separator_height" pixel height between two
|
||||||
|
# notifications.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
separator_height = 2
|
||||||
|
|
||||||
|
# Padding between text and separator.
|
||||||
|
padding = 8
|
||||||
|
|
||||||
|
# Horizontal padding.
|
||||||
|
horizontal_padding = 8
|
||||||
|
|
||||||
|
# Defines width in pixels of frame around the notification window.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
frame_width = 2
|
||||||
|
|
||||||
|
# Defines color of the frame around the notification window.
|
||||||
|
frame_color = "#000000"
|
||||||
|
|
||||||
|
# Define a color for the separator.
|
||||||
|
# possible values are:
|
||||||
|
# * auto: dunst tries to find a color fitting to the background;
|
||||||
|
# * foreground: use the same color as the foreground;
|
||||||
|
# * frame: use the same color as the frame;
|
||||||
|
# * anything else will be interpreted as a X color.
|
||||||
|
separator_color = frame
|
||||||
|
|
||||||
|
# Sort messages by urgency.
|
||||||
|
sort = yes
|
||||||
|
|
||||||
|
# Don't remove messages, if the user is idle (no mouse or keyboard input)
|
||||||
|
# for longer than idle_threshold seconds.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
# A client can set the 'transient' hint to bypass this. See the rules
|
||||||
|
# section for how to disable this if necessary
|
||||||
|
idle_threshold = 120
|
||||||
|
|
||||||
|
### Text ###
|
||||||
|
|
||||||
|
font = Museo Sans 10
|
||||||
|
|
||||||
|
# The spacing between lines. If the height is smaller than the
|
||||||
|
# font height, it will get raised to the font height.
|
||||||
|
line_height = 0
|
||||||
|
|
||||||
|
# Possible values are:
|
||||||
|
# full: Allow a small subset of html markup in notifications:
|
||||||
|
# <b>bold</b>
|
||||||
|
# <i>italic</i>
|
||||||
|
# <s>strikethrough</s>
|
||||||
|
# <u>underline</u>
|
||||||
|
#
|
||||||
|
# For a complete reference see
|
||||||
|
# <http://developer.gnome.org/pango/stable/PangoMarkupFormat.html>.
|
||||||
|
#
|
||||||
|
# strip: This setting is provided for compatibility with some broken
|
||||||
|
# clients that send markup even though it's not enabled on the
|
||||||
|
# server. Dunst will try to strip the markup but the parsing is
|
||||||
|
# simplistic so using this option outside of matching rules for
|
||||||
|
# specific applications *IS GREATLY DISCOURAGED*.
|
||||||
|
#
|
||||||
|
# no: Disable markup parsing, incoming notifications will be treated as
|
||||||
|
# plain text. Dunst will not advertise that it has the body-markup
|
||||||
|
# capability if this is set as a global setting.
|
||||||
|
#
|
||||||
|
# It's important to note that markup inside the format option will be parsed
|
||||||
|
# regardless of what this is set to.
|
||||||
|
markup = full
|
||||||
|
|
||||||
|
# The format of the message. Possible variables are:
|
||||||
|
# %a appname
|
||||||
|
# %s summary
|
||||||
|
# %b body
|
||||||
|
# %i iconname (including its path)
|
||||||
|
# %I iconname (without its path)
|
||||||
|
# %p progress value if set ([ 0%] to [100%]) or nothing
|
||||||
|
# %n progress value if set without any extra characters
|
||||||
|
# %% Literal %
|
||||||
|
# Markup is allowed
|
||||||
|
format = "<b>%s</b>\n%b"
|
||||||
|
|
||||||
|
# Alignment of message text.
|
||||||
|
# Possible values are "left", "center" and "right".
|
||||||
|
alignment = center
|
||||||
|
|
||||||
|
# Show age of message if message is older than show_age_threshold
|
||||||
|
# seconds.
|
||||||
|
# Set to -1 to disable.
|
||||||
|
show_age_threshold = 60
|
||||||
|
|
||||||
|
# Split notifications into multiple lines if they don't fit into
|
||||||
|
# geometry.
|
||||||
|
word_wrap = yes
|
||||||
|
|
||||||
|
# When word_wrap is set to no, specify where to make an ellipsis in long lines.
|
||||||
|
# Possible values are "start", "middle" and "end".
|
||||||
|
ellipsize = middle
|
||||||
|
|
||||||
|
# Ignore newlines '\n' in notifications.
|
||||||
|
ignore_newline = no
|
||||||
|
|
||||||
|
# Stack together notifications with the same content
|
||||||
|
stack_duplicates = true
|
||||||
|
|
||||||
|
# Hide the count of stacked notifications with the same content
|
||||||
|
hide_duplicate_count = false
|
||||||
|
|
||||||
|
# Display indicators for URLs (U) and actions (A).
|
||||||
|
show_indicators = yes
|
||||||
|
|
||||||
|
### Icons ###
|
||||||
|
|
||||||
|
# Align icons left/right/off
|
||||||
|
icon_position = left
|
||||||
|
|
||||||
|
# Scale larger icons down to this size, set to 0 to disable
|
||||||
|
max_icon_size = 32
|
||||||
|
|
||||||
|
# Paths to default icons.
|
||||||
|
icon_path = /usr/share/icons/candy-icons/apps/scalable:/usr/share/icons/candy-icons/devices/scalable/
|
||||||
|
|
||||||
|
### History ###
|
||||||
|
|
||||||
|
# Should a notification popped up from history be sticky or timeout
|
||||||
|
# as if it would normally do.
|
||||||
|
sticky_history = yes
|
||||||
|
|
||||||
|
# Maximum amount of notifications kept in history
|
||||||
|
history_length = 20
|
||||||
|
|
||||||
|
### Misc/Advanced ###
|
||||||
|
|
||||||
|
# dmenu path.
|
||||||
|
dmenu = /usr/bin/rofi -dmenu
|
||||||
|
|
||||||
|
# Browser for opening urls in context menu.
|
||||||
|
browser = /usr/bin/firefox -new-tab
|
||||||
|
|
||||||
|
# Always run rule-defined scripts, even if the notification is suppressed
|
||||||
|
always_run_script = true
|
||||||
|
|
||||||
|
# Define the title of the windows spawned by dunst
|
||||||
|
title = Dunst
|
||||||
|
|
||||||
|
# Define the class of the windows spawned by dunst
|
||||||
|
class = Dunst
|
||||||
|
|
||||||
|
# Print a notification on startup.
|
||||||
|
# This is mainly for error detection, since dbus (re-)starts dunst
|
||||||
|
# automatically after a crash.
|
||||||
|
startup_notification = false
|
||||||
|
|
||||||
|
# Manage dunst's desire for talking
|
||||||
|
# Can be one of the following values:
|
||||||
|
# crit: Critical features. Dunst aborts
|
||||||
|
# warn: Only non-fatal warnings
|
||||||
|
# mesg: Important Messages
|
||||||
|
# info: all unimportant stuff
|
||||||
|
# debug: all less than unimportant stuff
|
||||||
|
verbosity = mesg
|
||||||
|
|
||||||
|
# Define the corner radius of the notification window
|
||||||
|
# in pixel size. If the radius is 0, you have no rounded
|
||||||
|
# corners.
|
||||||
|
# The radius will be automatically lowered if it exceeds half of the
|
||||||
|
# notification height to avoid clipping text and/or icons.
|
||||||
|
corner_radius = 0
|
||||||
|
|
||||||
|
### Legacy
|
||||||
|
|
||||||
|
# Use the Xinerama extension instead of RandR for multi-monitor support.
|
||||||
|
# This setting is provided for compatibility with older nVidia drivers that
|
||||||
|
# do not support RandR and using it on systems that support RandR is highly
|
||||||
|
# discouraged.
|
||||||
|
#
|
||||||
|
# By enabling this setting dunst will not be able to detect when a monitor
|
||||||
|
# is connected or disconnected which might break follow mode if the screen
|
||||||
|
# layout changes.
|
||||||
|
force_xinerama = false
|
||||||
|
|
||||||
|
### mouse
|
||||||
|
|
||||||
|
# Defines action of mouse event
|
||||||
|
# Possible values are:
|
||||||
|
# * none: Don't do anything.
|
||||||
|
# * do_action: If the notification has exactly one action, or one is marked as default,
|
||||||
|
# invoke it. If there are multiple and no default, open the context menu.
|
||||||
|
# * close_current: Close current notification.
|
||||||
|
# * close_all: Close all notifications.
|
||||||
|
mouse_left_click = close_current
|
||||||
|
mouse_middle_click = do_action
|
||||||
|
mouse_right_click = close_all
|
||||||
|
|
||||||
|
# Experimental features that may or may not work correctly. Do not expect them
|
||||||
|
# to have a consistent behaviour across releases.
|
||||||
|
[experimental]
|
||||||
|
# Calculate the dpi to use on a per-monitor basis.
|
||||||
|
# If this setting is enabled the Xft.dpi value will be ignored and instead
|
||||||
|
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
||||||
|
# using the resolution and physical size. This might be useful in setups
|
||||||
|
# where there are multiple screens with very different dpi values.
|
||||||
|
per_monitor_dpi = false
|
||||||
|
|
||||||
|
[shortcuts]
|
||||||
|
|
||||||
|
# Shortcuts are specified as [modifier+][modifier+]...key
|
||||||
|
# Available modifiers are "ctrl", "mod1" (the alt-key), "mod2",
|
||||||
|
# "mod3" and "mod4" (windows-key).
|
||||||
|
# Xev might be helpful to find names for keys.
|
||||||
|
|
||||||
|
# Close notification.
|
||||||
|
close = ctrl+space
|
||||||
|
|
||||||
|
# Close all notifications.
|
||||||
|
close_all = ctrl+shift+space
|
||||||
|
|
||||||
|
# Redisplay last message(s).
|
||||||
|
# On the US keyboard layout "grave" is normally above TAB and left
|
||||||
|
# of "1". Make sure this key actually exists on your keyboard layout,
|
||||||
|
# e.g. check output of 'xmodmap -pke'
|
||||||
|
history = ctrl+grave
|
||||||
|
|
||||||
|
# Context menu.
|
||||||
|
context = ctrl+shift+grave
|
||||||
|
|
||||||
|
[urgency_low]
|
||||||
|
# IMPORTANT: colors have to be defined in quotation marks.
|
||||||
|
# Otherwise the "#" and following would be interpreted as a comment.
|
||||||
|
background = "#ebdbb2"
|
||||||
|
foreground = "#282828"
|
||||||
|
frame_color = "#b8bb26"
|
||||||
|
timeout = 7
|
||||||
|
# Icon for notifications with low urgency, uncomment to enable
|
||||||
|
icon = /home/javalsai/.config/dunst/images/notification-low.png
|
||||||
|
|
||||||
|
[urgency_normal]
|
||||||
|
foreground = "#ebdbb2"
|
||||||
|
background = "#282828"
|
||||||
|
frame_color = "#458588"
|
||||||
|
timeout = 10
|
||||||
|
# Icon for notifications with normal urgency, uncomment to enable
|
||||||
|
icon = /home/javalsai/.config/dunst/images/notification.png
|
||||||
|
|
||||||
|
[urgency_critical]
|
||||||
|
foreground = "#ebdbb2"
|
||||||
|
background = "#282828"
|
||||||
|
frame_color = "#fb4934"
|
||||||
|
timeout = 15
|
||||||
|
# Icon for notifications with critical urgency, uncomment to enable
|
||||||
|
icon = /home/javalsai/.config/dunst/images/notification-critical.png
|
||||||
|
|
||||||
|
# Every section that isn't one of the above is interpreted as a rules to
|
||||||
|
# override settings for certain messages.
|
||||||
|
#
|
||||||
|
# Messages can be matched by
|
||||||
|
# appname (discouraged, see desktop_entry)
|
||||||
|
# body
|
||||||
|
# category
|
||||||
|
# desktop_entry
|
||||||
|
# icon
|
||||||
|
# match_transient
|
||||||
|
# msg_urgency
|
||||||
|
# stack_tag
|
||||||
|
# summary
|
||||||
|
#
|
||||||
|
# and you can override the
|
||||||
|
# background
|
||||||
|
# foreground
|
||||||
|
# format
|
||||||
|
# frame_color
|
||||||
|
# fullscreen
|
||||||
|
# new_icon
|
||||||
|
# set_stack_tag
|
||||||
|
# set_transient
|
||||||
|
# timeout
|
||||||
|
# urgency
|
||||||
|
#
|
||||||
|
# Shell-like globbing will get expanded.
|
||||||
|
#
|
||||||
|
# Instead of the appname filter, it's recommended to use the desktop_entry filter.
|
||||||
|
# GLib based applications export their desktop-entry name. In comparison to the appname,
|
||||||
|
# the desktop-entry won't get localized.
|
||||||
|
#
|
||||||
|
# SCRIPTING
|
||||||
|
# You can specify a script that gets run when the rule matches by
|
||||||
|
# setting the "script" option.
|
||||||
|
# The script will be called as follows:
|
||||||
|
# script appname summary body icon urgency
|
||||||
|
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
|
||||||
|
#
|
||||||
|
# NOTE: if you don't want a notification to be displayed, set the format
|
||||||
|
# to "".
|
||||||
|
# NOTE: It might be helpful to run dunst -print in a terminal in order
|
||||||
|
# to find fitting options for rules.
|
||||||
|
|
||||||
|
# Disable the transient hint so that idle_threshold cannot be bypassed from the
|
||||||
|
# client
|
||||||
|
#[transient_disable]
|
||||||
|
# match_transient = yes
|
||||||
|
# set_transient = no
|
||||||
|
#
|
||||||
|
# Make the handling of transient notifications more strict by making them not
|
||||||
|
# be placed in history.
|
||||||
|
#[transient_history_ignore]
|
||||||
|
# match_transient = yes
|
||||||
|
# history_ignore = yes
|
||||||
|
|
||||||
|
# fullscreen values
|
||||||
|
# show: show the notifications, regardless if there is a fullscreen window opened
|
||||||
|
# delay: displays the new notification, if there is no fullscreen window active
|
||||||
|
# If the notification is already drawn, it won't get undrawn.
|
||||||
|
# pushback: same as delay, but when switching into fullscreen, the notification will get
|
||||||
|
# withdrawn from screen again and will get delayed like a new notification
|
||||||
|
#[fullscreen_delay_everything]
|
||||||
|
# fullscreen = delay
|
||||||
|
#[fullscreen_show_critical]
|
||||||
|
# msg_urgency = critical
|
||||||
|
# fullscreen = show
|
||||||
|
|
||||||
|
#[espeak]
|
||||||
|
# summary = "*"
|
||||||
|
# script = dunst_espeak.sh
|
||||||
|
|
||||||
|
#[script-test]
|
||||||
|
# summary = "*script*"
|
||||||
|
# script = dunst_test.sh
|
||||||
|
|
||||||
|
#[ignore]
|
||||||
|
# # This notification will not be displayed
|
||||||
|
# summary = "foobar"
|
||||||
|
# format = ""
|
||||||
|
|
||||||
|
#[history-ignore]
|
||||||
|
# # This notification will not be saved in history
|
||||||
|
# summary = "foobar"
|
||||||
|
# history_ignore = yes
|
||||||
|
|
||||||
|
#[skip-display]
|
||||||
|
# # This notification will not be displayed, but will be included in the history
|
||||||
|
# summary = "foobar"
|
||||||
|
# skip_display = yes
|
||||||
|
|
||||||
|
#[signed_on]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = "*signed on*"
|
||||||
|
# urgency = low
|
||||||
|
#
|
||||||
|
#[signed_off]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *signed off*
|
||||||
|
# urgency = low
|
||||||
|
#
|
||||||
|
#[says]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *says*
|
||||||
|
# urgency = critical
|
||||||
|
#
|
||||||
|
#[twitter]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *twitter.com*
|
||||||
|
# urgency = normal
|
||||||
|
#
|
||||||
|
#[stack-volumes]
|
||||||
|
# appname = "some_volume_notifiers"
|
||||||
|
# set_stack_tag = "volume"
|
||||||
|
#
|
||||||
|
# vim: ft=cfg
|
78
.config/fastfetch/config.jsonc
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
// _____ _____ _____ _____ _____ _____ _____ _____ _____
|
||||||
|
// | __| _ | __|_ _| __| __|_ _| | | |
|
||||||
|
// | __| |__ | | | | __| __| | | | --| |
|
||||||
|
// |__| |__|__|_____| |_| |__| |_____| |_| |_____|__|__| ARCH
|
||||||
|
//
|
||||||
|
// by Bina
|
||||||
|
|
||||||
|
|
||||||
|
// execute with: fastfetch --colors-block-range-start 9 --colors-block-width 3
|
||||||
|
|
||||||
|
{
|
||||||
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
|
"logo": {
|
||||||
|
"source": "~/pictures/pfp.png",
|
||||||
|
"width": 20,
|
||||||
|
"height": 10,
|
||||||
|
"padding": {
|
||||||
|
"top": 1,
|
||||||
|
"right": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"separator": " "
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
{
|
||||||
|
"type": "colors",
|
||||||
|
"key": " ",
|
||||||
|
"symbol": "circle"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "title",
|
||||||
|
"keyWidth": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "os",
|
||||||
|
"key": " ",
|
||||||
|
"keyColor": "33", // = color3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "kernel",
|
||||||
|
"key": " ",
|
||||||
|
"keyColor": "33",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"key": " ",
|
||||||
|
"keyColor": "33",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "terminal",
|
||||||
|
"key": " ",
|
||||||
|
"keyColor": "33",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "wm",
|
||||||
|
"key": " ",
|
||||||
|
"keyColor": "33",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "uptime",
|
||||||
|
"key": " ",
|
||||||
|
"keyColor": "33",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "media",
|
||||||
|
"key": " ",
|
||||||
|
"keyColor": "33",
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "colors",
|
||||||
|
"key": " ",
|
||||||
|
"symbol": "circle"
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
7
.config/fish/conf.d/abbreviations.fish
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
abbr ssh "kitten ssh"
|
||||||
|
abbr push "git push"
|
||||||
|
abbr --set-cursor=! commit "git commit -m \"!\""
|
||||||
|
abbr add "git add"
|
||||||
|
abbr vim "vim -N"
|
||||||
|
abbr in "sudo zypper in"
|
||||||
|
abbr up "sudo zypper up"
|
7
.config/fish/config.fish
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
if status is-interactive
|
||||||
|
# Commands to run in interactive sessions can go here
|
||||||
|
end
|
||||||
|
set -U fish_greeting
|
||||||
|
function fish_greeting
|
||||||
|
fastfetch
|
||||||
|
end
|
32
.config/fish/fish_variables
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# This file contains fish universal variable definitions.
|
||||||
|
# VERSION: 3.0
|
||||||
|
SETUVAR __fish_initialized:3400
|
||||||
|
SETUVAR fish_color_autosuggestion:brblack
|
||||||
|
SETUVAR fish_color_cancel:\x2dr
|
||||||
|
SETUVAR fish_color_command:blue
|
||||||
|
SETUVAR fish_color_comment:red
|
||||||
|
SETUVAR fish_color_cwd:green
|
||||||
|
SETUVAR fish_color_cwd_root:red
|
||||||
|
SETUVAR fish_color_end:green
|
||||||
|
SETUVAR fish_color_error:brred
|
||||||
|
SETUVAR fish_color_escape:brcyan
|
||||||
|
SETUVAR fish_color_history_current:\x2d\x2dbold
|
||||||
|
SETUVAR fish_color_host:normal
|
||||||
|
SETUVAR fish_color_host_remote:yellow
|
||||||
|
SETUVAR fish_color_normal:normal
|
||||||
|
SETUVAR fish_color_operator:brcyan
|
||||||
|
SETUVAR fish_color_param:cyan
|
||||||
|
SETUVAR fish_color_quote:yellow
|
||||||
|
SETUVAR fish_color_redirection:cyan\x1e\x2d\x2dbold
|
||||||
|
SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack
|
||||||
|
SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack
|
||||||
|
SETUVAR fish_color_status:red
|
||||||
|
SETUVAR fish_color_user:brgreen
|
||||||
|
SETUVAR fish_color_valid_path:\x2d\x2dunderline
|
||||||
|
SETUVAR fish_greeting:\x1d
|
||||||
|
SETUVAR fish_key_bindings:fish_default_key_bindings
|
||||||
|
SETUVAR fish_pager_color_completion:normal
|
||||||
|
SETUVAR fish_pager_color_description:yellow\x1e\x2di
|
||||||
|
SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||||
|
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
||||||
|
SETUVAR fish_pager_color_selected_background:\x2dr
|
BIN
.config/hypr/.hyprland.conf.swp
Normal file
@ -1,37 +1,76 @@
|
|||||||
exec-once="hyprpaper"
|
exec-once="hyprpaper"
|
||||||
|
exec-once="waybar"
|
||||||
|
exec-once="dunst"
|
||||||
|
|
||||||
|
env = XCURSOR_SIZE,24
|
||||||
|
env = HYPRCURSOR_SIZE,24
|
||||||
|
|
||||||
decoration {
|
decoration {
|
||||||
rounding = 0
|
rounding = 15
|
||||||
|
|
||||||
|
shadow {
|
||||||
|
range = 0
|
||||||
|
render_power = 1
|
||||||
|
color = rgba(282828ff)
|
||||||
|
color_inactive = rgba(000000ff)
|
||||||
|
offset = 0, 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blur {
|
||||||
|
enabled = true
|
||||||
|
size = 3
|
||||||
|
passes = 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
misc {
|
||||||
|
disable_hyprland_logo = true
|
||||||
|
disable_splash_rendering = true
|
||||||
|
}
|
||||||
|
|
||||||
general {
|
general {
|
||||||
col.active_border = rgb(b8bb26)
|
col.active_border = rgb(b8bb26)
|
||||||
col.inactive_border = rgb(282828)
|
col.inactive_border = rgb(282828)
|
||||||
border_size = 2
|
border_size = 2
|
||||||
gaps_in = 10
|
gaps_in = 10
|
||||||
gaps_out = 20
|
gaps_out = 20
|
||||||
|
layout = master
|
||||||
}
|
}
|
||||||
|
|
||||||
|
master {
|
||||||
|
new_on_top = true
|
||||||
|
new_status = "master"
|
||||||
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
kb_layout = gb
|
kb_layout = gb
|
||||||
}
|
}
|
||||||
bind = SUPER, Q, exec, kitty --hold fastfetch
|
bind = SUPER, Q, exec, kitty
|
||||||
bind = SUPER, C, killactive,
|
bind = SUPER, C, killactive,
|
||||||
bind = SUPER, M, fullscreen, 1
|
bind = SUPER, M, fullscreen, 1
|
||||||
|
bind = SUPER SHIFT, M, fullscreen,
|
||||||
bind = SUPER, V, togglefloating,
|
bind = SUPER, V, togglefloating,
|
||||||
bind = SUPER, Space, exec, fuzzel
|
bind = SUPER, Space, exec, fuzzel
|
||||||
bind = SUPER, P, exec, ~/bin/screenshot-w
|
bind = SUPER, P, exec, screenshot
|
||||||
bind = SUPER, J, togglesplit, # dwindle
|
|
||||||
bind = SUPER SHIFT, up, exec, pactl set-sink-volume 0 +5%
|
bind = SUPER SHIFT, up, exec, pactl set-sink-volume 0 +5%
|
||||||
bind = SUPER SHIFT, down, exec, pactl set-sink-volume 0 -5%
|
bind = SUPER SHIFT, down, exec, pactl set-sink-volume 0 -5%
|
||||||
bind = SUPER, F, fullscreen,
|
bind = SUPER, O, exec, hyprlock
|
||||||
bind = SUPER, L, exec, hyprlock
|
|
||||||
bind = SUPER SHIFT, E, exit
|
bind = SUPER SHIFT, E, exit
|
||||||
bind = SUPER SHIFT, F, exec, pcmanfm
|
bind = SUPER SHIFT, F, exec, pcmanfm
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
# Move focus with mainMod + arrow keys
|
||||||
bind = SUPER, left, movefocus, l
|
bind = SUPER, h, movefocus, l
|
||||||
bind = SUPER, right, movefocus, r
|
bind = SUPER, l, movefocus, r
|
||||||
bind = SUPER, up, movefocus, u
|
bind = SUPER, k, layoutmsg, cycleprev
|
||||||
bind = SUPER, down, movefocus, d
|
bind = SUPER, j, layoutmsg, cyclenext
|
||||||
|
|
||||||
|
bind = SUPER SHIFT, k, layoutmsg, swapprev
|
||||||
|
bind = SUPER SHIFT, j, layoutmsg, swapnext
|
||||||
|
|
||||||
|
bind = SUPER ALT, h, resizeactive, 15 0
|
||||||
|
bind = SUPER ALT, l, resizeactive, -15 0
|
||||||
|
bind = SUPER ALT, k, resizeactive, 0 -15
|
||||||
|
bind = SUPER ALT, j, resizeactive, 0 15
|
||||||
|
|
||||||
# Switch workspaces with mainMod + [0-9]
|
# Switch workspaces with mainMod + [0-9]
|
||||||
bind = SUPER, 1, workspace, 1
|
bind = SUPER, 1, workspace, 1
|
||||||
@ -60,3 +99,23 @@ bind = SUPER SHIFT, 0, movetoworkspace, 10
|
|||||||
# Mouse binds
|
# Mouse binds
|
||||||
bindm = SUPER, mouse:272, movewindow
|
bindm = SUPER, mouse:272, movewindow
|
||||||
bindm = SUPER, mouse:273, resizewindow
|
bindm = SUPER, mouse:273, resizewindow
|
||||||
|
|
||||||
|
# Media playback
|
||||||
|
bindle = , XF86AudioRaiseVolume, exec, amixer -q set Master 5%+
|
||||||
|
bindle = SHIFT, XF86AudioRaiseVolume, exec, amixer -q set Master 2%+
|
||||||
|
bindle = CTRL , XF86AudioRaiseVolume, exec, amixer -q set Master 15%+
|
||||||
|
bindle = , XF86AudioLowerVolume, exec, amixer -q set Master 5%-
|
||||||
|
bindle = SHIFT, XF86AudioLowerVolume, exec, amixer -q set Master 2%-
|
||||||
|
bindle = CTRL , XF86AudioLowerVolume, exec, amixer -q set Master 15%-
|
||||||
|
bindl = , XF86AudioMute , exec, amixer set Master toggle
|
||||||
|
bind = , XF86AudioStop , exec, playerctl stop
|
||||||
|
bind = , XF86AudioPlay , exec, playerctl play-pause
|
||||||
|
bind = , XF86AudioPrev , exec, playerctl previous
|
||||||
|
binde = SHIFT, XF86AudioPrev , exec, playerctl position 1.5-
|
||||||
|
binde = CTRL , XF86AudioPrev , exec, playerctl position 7.5-
|
||||||
|
bind = , XF86AudioNext , exec, playerctl next
|
||||||
|
binde = SHIFT, XF86AudioNext , exec, playerctl position 1.5+
|
||||||
|
binde = CTRL , XF86AudioNext , exec, playerctl position 7.5+
|
||||||
|
|
||||||
|
# Window rules
|
||||||
|
windowrule = float, mpv
|
||||||
|
111
.config/hypr/hyprlock.conf
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
background {
|
||||||
|
monitor =
|
||||||
|
path = screenshot
|
||||||
|
blur_passes = 2
|
||||||
|
blur_size = 10
|
||||||
|
}
|
||||||
|
|
||||||
|
background {
|
||||||
|
monitor =
|
||||||
|
color = rgba(0, 0, 0, 0.4)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
image {
|
||||||
|
# monitor = DP-1
|
||||||
|
path = $HOME/pictures/pfp.png
|
||||||
|
size = 220
|
||||||
|
rounding = -1
|
||||||
|
border_size = 4
|
||||||
|
border_color = rgb(184, 187, 38)
|
||||||
|
position = 0, 150
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = $USER
|
||||||
|
text_align = center
|
||||||
|
color = rgba(200, 200, 200, 1.0)
|
||||||
|
font_size = 35
|
||||||
|
font_family = Noto Sans
|
||||||
|
rotate = 0
|
||||||
|
|
||||||
|
position = 0, 0
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = cmd[update:500] date +%H:%M:%S
|
||||||
|
text_align = center
|
||||||
|
color = rgba(200, 200, 200, 1.0)
|
||||||
|
font_size = 20
|
||||||
|
font_family = Noto Sans
|
||||||
|
rotate = 0
|
||||||
|
|
||||||
|
position = 30, 30
|
||||||
|
halign = left
|
||||||
|
valign = bottom
|
||||||
|
}
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = cmd[update:500] num=5; echo $num; num=$num-1
|
||||||
|
text_align = center
|
||||||
|
color = rgba(200, 200, 200, 1.0)
|
||||||
|
font_size = 20
|
||||||
|
font_family = Noto Sans
|
||||||
|
rotate = 0
|
||||||
|
|
||||||
|
position = 30, -30
|
||||||
|
halign = left
|
||||||
|
valign = top
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = cmd[update:10000] uptime -p
|
||||||
|
text_align = center
|
||||||
|
color = rgba(200, 200, 200, 1.0)
|
||||||
|
font_size = 20
|
||||||
|
font_family = Noto Sans
|
||||||
|
rotate = 0
|
||||||
|
|
||||||
|
position = -30, 30
|
||||||
|
halign = right
|
||||||
|
valign = bottom
|
||||||
|
}
|
||||||
|
|
||||||
|
input-field {
|
||||||
|
monitor =
|
||||||
|
size = 240, 50
|
||||||
|
outline_thickness = 2
|
||||||
|
dots_size = 0.2
|
||||||
|
dots_spacing = 0.2
|
||||||
|
dots_center = false
|
||||||
|
dots_rounding = -1
|
||||||
|
outer_color = rgb(184, 187, 38)
|
||||||
|
inner_color = rgb(40, 40, 40)
|
||||||
|
font_color = rgb(200, 200, 200)
|
||||||
|
fade_on_empty = true
|
||||||
|
fade_timeout = 5000
|
||||||
|
placeholder_text = <i>password</i>
|
||||||
|
hide_input = false
|
||||||
|
rounding = -1
|
||||||
|
check_color = rgb(204, 136, 34)
|
||||||
|
fail_color = rgb(204, 34, 34)
|
||||||
|
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
|
||||||
|
fail_timeout = 2000
|
||||||
|
fail_transition = 300
|
||||||
|
capslock_color = -1
|
||||||
|
numlock_color = -1
|
||||||
|
bothlock_color = -1
|
||||||
|
invert_numlock = false
|
||||||
|
swap_font_color = false
|
||||||
|
|
||||||
|
position = 0, -80
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
@ -15,4 +15,5 @@ https://loadingartist.com/index.xml
|
|||||||
https://warandpeas.com/rss
|
https://warandpeas.com/rss
|
||||||
https://www.oglaf.com/feeds/rss/
|
https://www.oglaf.com/feeds/rss/
|
||||||
https://xkcd.com/rss.xml
|
https://xkcd.com/rss.xml
|
||||||
|
https://pcweenies.com/rss
|
||||||
|
|
||||||
|
@ -2,12 +2,26 @@
|
|||||||
{
|
{
|
||||||
"layer": "top",
|
"layer": "top",
|
||||||
"height": 30,
|
"height": 30,
|
||||||
"modules-left": ["hyprland/workspaces", "custom/lock", "custom/shutdown", "custom/reboot", "custom/temperature", "cpu", "memory"],
|
"modules-left": ["hyprland/workspaces", "custom/temperature", "cpu", "memory"],
|
||||||
"modules-center": ["custom/time", "hyprland/window"],
|
"modules-center": ["custom/time", "hyprland/window"],
|
||||||
"modules-right": ["custom/metar", "battery", "clock"],
|
"modules-right": ["custom/metar", "clock", "tray"],
|
||||||
|
"hyprland/workspaces": {
|
||||||
|
"disable-scroll": true,
|
||||||
|
"show-special": true,
|
||||||
|
"all-outputs": true,
|
||||||
|
"move-to-monitor": true,
|
||||||
|
"wrap-on-scroll": false,
|
||||||
|
"format": "{icon}{name}",
|
||||||
|
"format-active": "[{name}]",
|
||||||
|
"format-icons": {
|
||||||
|
"urgent": "!",
|
||||||
|
"active": "*",
|
||||||
|
"default": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
"clock": {
|
"clock": {
|
||||||
"format": "{:%a, %d %b %Y %H:%M:%S}",
|
"format": "{:%a, %d %b %Y %H:%M:%S}",
|
||||||
"inverval": 1
|
"interval": 1
|
||||||
},
|
},
|
||||||
"custom/temperature": {
|
"custom/temperature": {
|
||||||
"format": " {}",
|
"format": " {}",
|
||||||
@ -36,6 +50,6 @@
|
|||||||
"custom/reboot": {
|
"custom/reboot": {
|
||||||
"on-click": "reboot",
|
"on-click": "reboot",
|
||||||
"format": "",
|
"format": "",
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
61
.config/waybar/scripts/waymedia
Executable file
@ -0,0 +1,61 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
import json
|
||||||
|
from os.path import expanduser
|
||||||
|
import subprocess
|
||||||
|
import re
|
||||||
|
|
||||||
|
config_path = f"{expanduser('~')}/.config/waybar"
|
||||||
|
|
||||||
|
if os.path.exists(f"{config_path}/config.jsonc"):
|
||||||
|
config_path = f"{config_path}/config.jsonc"
|
||||||
|
else:
|
||||||
|
config_path = f"{config_path}/config"
|
||||||
|
|
||||||
|
def remove_comments(jsonc_str):
|
||||||
|
json_str = re.sub(r'//.*', '', jsonc_str) # remove single-line comments
|
||||||
|
json_str = re.sub(r'/\*.*?\*/', '', json_str, flags=re.DOTALL) # remove multi-line comments
|
||||||
|
return json_str
|
||||||
|
|
||||||
|
with open(config_path, "r", encoding="utf-8") as file:
|
||||||
|
jsonc_content = file.read()
|
||||||
|
|
||||||
|
clean_json_str = remove_comments(jsonc_content)
|
||||||
|
config_json = json.loads(clean_json_str)
|
||||||
|
|
||||||
|
module_configs = config_json.get("custom/waymedia", {})
|
||||||
|
pause_icon = module_configs.get("pause-icon", " ")
|
||||||
|
play_icon = module_configs.get("play-icon", " ")
|
||||||
|
divider = module_configs.get("divider", " - ")
|
||||||
|
format = module_configs.get("format", "{icon}{artist}{divider}{title}")
|
||||||
|
limit = module_configs.get("limit", 60)
|
||||||
|
|
||||||
|
def get_command_result(command) -> str:
|
||||||
|
return subprocess.run(command, shell=True, capture_output=True, text=True).stdout.strip()
|
||||||
|
|
||||||
|
metadata = get_command_result("playerctl metadata")
|
||||||
|
|
||||||
|
players = subprocess.run("playerctl --list-all", shell=True, capture_output=True, text=True).stdout.split("\n")
|
||||||
|
|
||||||
|
for player in players:
|
||||||
|
status = get_command_result(f"playerctl status -p {player}")
|
||||||
|
|
||||||
|
if status != "Stopped" and status != "":
|
||||||
|
icon = play_icon if status == "Paused" else pause_icon
|
||||||
|
artist = get_command_result("playerctl metadata --format '{{artist}}'")
|
||||||
|
title = get_command_result("playerctl metadata --format '{{title}}'")
|
||||||
|
|
||||||
|
if len(artist) == 0:
|
||||||
|
divider = ""
|
||||||
|
|
||||||
|
text = format.replace("{icon}", icon).replace("{title}", title).replace("{divider}", divider).replace("{artist}", artist).strip().replace("&", "&").replace("{}", "")
|
||||||
|
|
||||||
|
if len(text) > limit:
|
||||||
|
text = f"{text[:limit - 3]}..."
|
||||||
|
|
||||||
|
print(text, flush=True)
|
||||||
|
exit(0)
|
||||||
|
|
||||||
|
print("", flush=True)
|
||||||
|
exit(0)
|
58
.config/waybar/scripts/waymedia-buttons
Executable file
@ -0,0 +1,58 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
import json
|
||||||
|
from os.path import expanduser
|
||||||
|
import subprocess
|
||||||
|
import re
|
||||||
|
|
||||||
|
config_path = f"{expanduser("~")}/.config/waybar"
|
||||||
|
|
||||||
|
if os.path.exists(f"{config_path}/config.jsonc"):
|
||||||
|
config_path = f"{config_path}/config.jsonc"
|
||||||
|
else:
|
||||||
|
config_path = f"{config_path}/config"
|
||||||
|
|
||||||
|
def remove_comments(jsonc_str):
|
||||||
|
json_str = re.sub(r'//.*', '', jsonc_str) # remove single-line comments
|
||||||
|
json_str = re.sub(r'/\*.*?\*/', '', json_str, flags=re.DOTALL) # remove multi-line comments
|
||||||
|
return json_str
|
||||||
|
|
||||||
|
with open(config_path, "r", encoding="utf-8") as file:
|
||||||
|
jsonc_content = file.read()
|
||||||
|
|
||||||
|
clean_json_str = remove_comments(jsonc_content)
|
||||||
|
config_json = json.loads(clean_json_str)
|
||||||
|
|
||||||
|
|
||||||
|
module_configs = config_json.get("custom/waymedia-buttons", {})
|
||||||
|
play_icon = module_configs.get("play-icon") if "play-icon" in module_configs else " "
|
||||||
|
pause_icon = module_configs.get("pause-icon") if "pause-icon" in module_configs else " "
|
||||||
|
skip_icon = module_configs.get("skip-icon") if "skip-icon" in module_configs else " "
|
||||||
|
previous_icon = module_configs.get("previous-icon") if "previous-icon" in module_configs else " "
|
||||||
|
|
||||||
|
def get_command_result(command)-> str:
|
||||||
|
return subprocess.run(command, shell=True, capture_output=True, text=True).stdout.strip()
|
||||||
|
|
||||||
|
metadata = get_command_result("playerctl metadata")
|
||||||
|
|
||||||
|
players = subprocess.run("playerctl --list-all", shell=True, capture_output=True, text=True).stdout.split("\n")
|
||||||
|
|
||||||
|
for player in players:
|
||||||
|
status = get_command_result(f"playerctl status -p {player}")
|
||||||
|
|
||||||
|
if status != "Stopped" and status != "":
|
||||||
|
icon = play_icon if status == "Paused" else pause_icon
|
||||||
|
artist = get_command_result("playerctl metadata --format '{{artist}}'")
|
||||||
|
title = get_command_result("playerctl metadata --format '{{title}}'")
|
||||||
|
|
||||||
|
|
||||||
|
if len(artist) == 0:
|
||||||
|
divider = ""
|
||||||
|
|
||||||
|
|
||||||
|
print(f"{previous_icon} {icon} {skip_icon}", flush=True)
|
||||||
|
exit(0)
|
||||||
|
|
||||||
|
print("", flush=True)
|
||||||
|
exit(0)
|
@ -2,7 +2,7 @@ window#waybar.screenBorder {
|
|||||||
border: 2px solid #b8bb26;
|
border: 2px solid #b8bb26;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
box-shadow: 0px 0px 0px 60px black, 0px 0px 0px 0.5px #ebdbb2;
|
box-shadow: 0px 0px 0px 60px black, 0px 0px 0px 0.5px #ebdbb2;
|
||||||
border-radius: 0px;
|
border-radius: 10px;
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
window#waybar.top,
|
window#waybar.top,
|
||||||
@ -14,7 +14,6 @@ window#waybar.left {
|
|||||||
#workspaces button {
|
#workspaces button {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
color: #ebdbb2;
|
color: #ebdbb2;
|
||||||
background: #282828;
|
|
||||||
}
|
}
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
color: #b8bb26;
|
color: #b8bb26;
|
||||||
@ -26,15 +25,6 @@ window#waybar.left {
|
|||||||
color: #282828;
|
color: #282828;
|
||||||
background: #ebdbb2;
|
background: #ebdbb2;
|
||||||
}
|
}
|
||||||
#workspaces {
|
|
||||||
border: 2px solid #b8bb26;
|
|
||||||
border-radius: 0;
|
|
||||||
box-shadow: 12px 12px 0px 2px #000000;
|
|
||||||
padding: 0px;
|
|
||||||
margin: 6px;
|
|
||||||
padding: 0px 5px 0px 5px;
|
|
||||||
background: #282828;
|
|
||||||
}
|
|
||||||
#custom-caway {
|
#custom-caway {
|
||||||
color: #ebdbb2;
|
color: #ebdbb2;
|
||||||
background: #282828;
|
background: #282828;
|
||||||
@ -43,6 +33,7 @@ window#waybar.left {
|
|||||||
box-shadow: 12px 12px 0px 2px #000000;
|
box-shadow: 12px 12px 0px 2px #000000;
|
||||||
margin: 6px;
|
margin: 6px;
|
||||||
}
|
}
|
||||||
|
#workspaces,
|
||||||
#custom-clock,
|
#custom-clock,
|
||||||
#clock,
|
#clock,
|
||||||
#custom-time,
|
#custom-time,
|
||||||
@ -74,12 +65,14 @@ window#waybar.left {
|
|||||||
#custom-lock,
|
#custom-lock,
|
||||||
#custom-shutdown,
|
#custom-shutdown,
|
||||||
#custom-reboot,
|
#custom-reboot,
|
||||||
#window {
|
#window,
|
||||||
|
#tray {
|
||||||
color: #ebdbb2;
|
color: #ebdbb2;
|
||||||
background: #282828;
|
background: #282828;
|
||||||
border: 2px solid #b8bb26;
|
border: 2px solid #b8bb26;
|
||||||
border-radius: 0;
|
border-radius: 15;
|
||||||
box-shadow: 12px 12px 0px 2px #000000;
|
/*box-shadow: 12px 12px 0px 2px #282828;*/
|
||||||
padding: 3px;
|
padding-left: 3px;
|
||||||
|
padding-right: 3px;
|
||||||
margin: 6px;
|
margin: 6px;
|
||||||
}
|
}
|
||||||
|
@ -13,8 +13,8 @@ chatnets = {
|
|||||||
type = "IRC";
|
type = "IRC";
|
||||||
nick = "deadvey";
|
nick = "deadvey";
|
||||||
alternate_nick = "deadlydave";
|
alternate_nick = "deadlydave";
|
||||||
}
|
};
|
||||||
}
|
};
|
||||||
channels = (
|
channels = (
|
||||||
{ name = "#d_general"; chatnet = "tuxcord"; autojoin = "yes"; },
|
{ name = "#d_general"; chatnet = "tuxcord"; autojoin = "yes"; },
|
||||||
{ name = "#d_off-topic"; chatnet = "tuxcord"; autojoin = "yes"; },
|
{ name = "#d_off-topic"; chatnet = "tuxcord"; autojoin = "yes"; },
|
||||||
@ -24,5 +24,12 @@ channels = (
|
|||||||
{ name = "#d_memes"; chatnet = "tuxcord"; autojoin = "yes"; },
|
{ name = "#d_memes"; chatnet = "tuxcord"; autojoin = "yes"; },
|
||||||
{ name = "#d_counting"; chatnet = "tuxcord"; autojoin = "yes"; },
|
{ name = "#d_counting"; chatnet = "tuxcord"; autojoin = "yes"; },
|
||||||
{ name = "#d_computers"; chatnet = "tuxcord"; autojoin = "yes"; },
|
{ name = "#d_computers"; chatnet = "tuxcord"; autojoin = "yes"; },
|
||||||
{ name = "#d_projects"; chatnet = "tuxcord"; autojoin = "yes"; },
|
{ name = "#d_projects"; chatnet = "tuxcord"; autojoin = "yes"; }
|
||||||
);
|
);
|
||||||
|
settings = {
|
||||||
|
core = {
|
||||||
|
real_name = "deadvey";
|
||||||
|
user_name = "deadvey";
|
||||||
|
nick = "deadvey";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
2
.irssi/otr/otr.instag
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# WARNING! You shouldn't copy this file to another computer. It is unnecessary and can cause problems.
|
||||||
|
tuxcord IRC 26040c9c
|
BIN
.themes/Klaus/cinnamon/assets/add-workspace-hover.png
Normal file
After Width: | Height: | Size: 806 B |
BIN
.themes/Klaus/cinnamon/assets/add-workspace.png
Normal file
After Width: | Height: | Size: 713 B |
82
.themes/Klaus/cinnamon/assets/calendar-arrow-left.svg
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.2 r9819"
|
||||||
|
sodipodi:docname="calendar-arrow-left.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="30"
|
||||||
|
inkscape:cx="1.6333333"
|
||||||
|
inkscape:cy="8"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
borderlayer="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-width="930"
|
||||||
|
inkscape:window-height="681"
|
||||||
|
inkscape:window-x="225"
|
||||||
|
inkscape:window-y="204"
|
||||||
|
inkscape:window-maximized="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid17403"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1036.3622)">
|
||||||
|
<path
|
||||||
|
sodipodi:type="star"
|
||||||
|
style="fill:#d5c4a1;fill-opacity:1;stroke:#d5c4a1;stroke-width:0.43015847000000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||||
|
id="path18028"
|
||||||
|
sodipodi:sides="3"
|
||||||
|
sodipodi:cx="84.5"
|
||||||
|
sodipodi:cy="337.5"
|
||||||
|
sodipodi:r1="5"
|
||||||
|
sodipodi:r2="2.5"
|
||||||
|
sodipodi:arg1="0.52359878"
|
||||||
|
sodipodi:arg2="1.5707963"
|
||||||
|
inkscape:flatsided="true"
|
||||||
|
inkscape:rounded="0"
|
||||||
|
inkscape:randomized="0"
|
||||||
|
d="M 88.830127,340 80.169873,340 84.5,332.5 z"
|
||||||
|
transform="matrix(0,1.3621708,0.99186247,0,-325.48222,929.32667)" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
82
.themes/Klaus/cinnamon/assets/calendar-arrow-right.svg
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.2 r9819"
|
||||||
|
sodipodi:docname="calendar-arrow-right.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="30"
|
||||||
|
inkscape:cx="1.6333333"
|
||||||
|
inkscape:cy="8"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
borderlayer="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-width="930"
|
||||||
|
inkscape:window-height="681"
|
||||||
|
inkscape:window-x="987"
|
||||||
|
inkscape:window-y="243"
|
||||||
|
inkscape:window-maximized="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid17403"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1036.3622)">
|
||||||
|
<path
|
||||||
|
sodipodi:type="star"
|
||||||
|
style="fill:#d5c4a1;fill-opacity:1;stroke:#d5c4a1;stroke-width:0.43015847000000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||||
|
id="path18028"
|
||||||
|
sodipodi:sides="3"
|
||||||
|
sodipodi:cx="84.5"
|
||||||
|
sodipodi:cy="337.5"
|
||||||
|
sodipodi:r1="5"
|
||||||
|
sodipodi:r2="2.5"
|
||||||
|
sodipodi:arg1="0.52359878"
|
||||||
|
sodipodi:arg2="1.5707963"
|
||||||
|
inkscape:flatsided="true"
|
||||||
|
inkscape:rounded="0"
|
||||||
|
inkscape:randomized="0"
|
||||||
|
d="M 88.830127,340 80.169873,340 84.5,332.5 z"
|
||||||
|
transform="matrix(0,1.3621708,-0.99186247,0,342.48324,929.32667)" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
98
.themes/Klaus/cinnamon/assets/checkbox-off.svg
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="checkbox-off.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient4140">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4142" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#3c3836;stop-opacity:1"
|
||||||
|
offset="1"
|
||||||
|
id="stop4144" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4140"
|
||||||
|
id="linearGradient4146"
|
||||||
|
x1="8"
|
||||||
|
y1="1037.3622"
|
||||||
|
x2="8"
|
||||||
|
y2="1045.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="31.678384"
|
||||||
|
inkscape:cx="5.443714"
|
||||||
|
inkscape:cy="8.4765013"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="px"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
inkscape:window-width="1275"
|
||||||
|
inkscape:window-height="843"
|
||||||
|
inkscape:window-x="528"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid3336" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1036.3622)">
|
||||||
|
<rect
|
||||||
|
style="fill:url(#linearGradient4146);fill-rule:evenodd;stroke:#d5c4a1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||||
|
id="rect3338"
|
||||||
|
width="15"
|
||||||
|
height="15"
|
||||||
|
x="0.5"
|
||||||
|
y="1036.8622"
|
||||||
|
rx="2.823529"
|
||||||
|
ry="2.823544" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
104
.themes/Klaus/cinnamon/assets/checkbox.svg
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="checkbox.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient4140">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4142" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#3c3836;stop-opacity:1"
|
||||||
|
offset="1"
|
||||||
|
id="stop4144" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4140"
|
||||||
|
id="linearGradient4146"
|
||||||
|
x1="8"
|
||||||
|
y1="1037.3622"
|
||||||
|
x2="8"
|
||||||
|
y2="1045.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="31.678384"
|
||||||
|
inkscape:cx="5.443714"
|
||||||
|
inkscape:cy="8.4765013"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="px"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
inkscape:window-width="1275"
|
||||||
|
inkscape:window-height="843"
|
||||||
|
inkscape:window-x="528"
|
||||||
|
inkscape:window-y="26"
|
||||||
|
inkscape:window-maximized="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid3336" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1036.3622)">
|
||||||
|
<rect
|
||||||
|
style="fill:url(#linearGradient4146);fill-rule:evenodd;stroke:#d5c4a1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||||
|
id="rect3338"
|
||||||
|
width="15"
|
||||||
|
height="15"
|
||||||
|
x="0.5"
|
||||||
|
y="1036.8622"
|
||||||
|
rx="2.823529"
|
||||||
|
ry="2.823544" />
|
||||||
|
<path
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#b8bb26;stroke-width:2.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 3.1680701,1045.2435 3.394596,2.7033 6.3652989,-7.1528"
|
||||||
|
id="path4148"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
152
.themes/Klaus/cinnamon/assets/close-window.svg
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.0"
|
||||||
|
id="Foreground"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="32"
|
||||||
|
height="32"
|
||||||
|
viewBox="0 0 23.272727 23.272727"
|
||||||
|
enable-background="new 0 0 16 16"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.48+devel r10081 custom"
|
||||||
|
sodipodi:docname="close-window.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||||
|
id="metadata2399"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs2397"><linearGradient
|
||||||
|
id="linearGradient3173"><stop
|
||||||
|
style="stop-color:#d5c4a1;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3175" /><stop
|
||||||
|
style="stop-color:#d5c4a1;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3177" /></linearGradient><inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 8 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="16 : 8 : 1"
|
||||||
|
inkscape:persp3d-origin="8 : 5.3333333 : 1"
|
||||||
|
id="perspective2401" /><filter
|
||||||
|
color-interpolation-filters="sRGB"
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="filter16494-4"
|
||||||
|
x="-0.20989846"
|
||||||
|
width="1.4197969"
|
||||||
|
y="-0.20903821"
|
||||||
|
height="1.4180764"><feGaussianBlur
|
||||||
|
inkscape:collect="always"
|
||||||
|
stdDeviation="1.3282637"
|
||||||
|
id="feGaussianBlur16496-8" /></filter><radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient16498-6"
|
||||||
|
id="radialGradient16504-1"
|
||||||
|
cx="7.6582627"
|
||||||
|
cy="5.8191104"
|
||||||
|
fx="7.6582627"
|
||||||
|
fy="5.8191104"
|
||||||
|
r="8.6928644"
|
||||||
|
gradientTransform="matrix(1.0474339,0,0,1.0517402,-0.3632615,-0.42032492)"
|
||||||
|
gradientUnits="userSpaceOnUse" /><linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient16498-6"><stop
|
||||||
|
style="stop-color:#3c3836;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop16500-8" /><stop
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="1"
|
||||||
|
id="stop16502-0" /></linearGradient><filter
|
||||||
|
color-interpolation-filters="sRGB"
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="filter16524-9"
|
||||||
|
x="-0.212979"
|
||||||
|
width="1.425958"
|
||||||
|
y="-0.21305652"
|
||||||
|
height="1.426113"><feGaussianBlur
|
||||||
|
inkscape:collect="always"
|
||||||
|
stdDeviation="0.71020915"
|
||||||
|
id="feGaussianBlur16526-0" /></filter></defs><sodipodi:namedview
|
||||||
|
inkscape:window-height="1114"
|
||||||
|
inkscape:window-width="1463"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
guidetolerance="10.0"
|
||||||
|
gridtolerance="10.0"
|
||||||
|
objecttolerance="10.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#000000"
|
||||||
|
id="base"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="1"
|
||||||
|
inkscape:cx="10.720189"
|
||||||
|
inkscape:cy="13.739577"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="26"
|
||||||
|
inkscape:current-layer="Foreground"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
borderlayer="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-maximized="0"><inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid11246"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true" /></sodipodi:namedview>
|
||||||
|
|
||||||
|
<g
|
||||||
|
style="display:inline"
|
||||||
|
id="g16402-8"
|
||||||
|
transform="translate(4.7533483,2.8238929)"><g
|
||||||
|
id="g3175-4"><path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="0"
|
||||||
|
inkscape:original="M 7.65625 0.125 C 3.2589349 0.125 -0.3125 3.7070002 -0.3125 8.125 C -0.3125 12.543001 3.2589349 16.125 7.65625 16.125 C 12.053566 16.125 15.625 12.543001 15.625 8.125 C 15.625 3.7070002 12.053566 0.125 7.65625 0.125 z "
|
||||||
|
xlink:href="#path2394-32"
|
||||||
|
style="opacity:0.52994014;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.18181825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter16494-4);enable-background:accumulate"
|
||||||
|
id="path16480-5"
|
||||||
|
inkscape:href="#path2394-32"
|
||||||
|
d="m 7.65625,0.125 c -4.3973151,0 -7.96875,3.5820002 -7.96875,8 0,4.418001 3.5714349,8 7.96875,8 4.397316,0 7.96875,-3.581999 7.96875,-8 0,-4.4179998 -3.571434,-8 -7.96875,-8 z"
|
||||||
|
transform="translate(0,1.028519)" /><path
|
||||||
|
clip-rule="evenodd"
|
||||||
|
d="m -0.30428257,8.1237596 c 0,-4.4179998 3.56522987,-7.9999996 7.96254497,-7.9999996 4.3973156,0 7.9625456,3.5819998 7.9625456,7.9999996 0,4.4180014 -3.56523,8.0000004 -7.9625456,8.0000004 -4.3973151,0 -7.96254497,-3.581999 -7.96254497,-8.0000004 z"
|
||||||
|
id="path2394-32"
|
||||||
|
style="color:#000000;fill:url(#radialGradient16504-1);fill-opacity:1;fill-rule:nonzero;stroke:#d5c4a1;stroke-width:1.4545455;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
sodipodi:nodetypes="csssc"
|
||||||
|
inkscape:connector-curvature="0" /><g
|
||||||
|
id="g3172-6" /></g><g
|
||||||
|
transform="matrix(0.72727273,0,0,0.72727273,2.368236,2.1803254)"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;display:inline"
|
||||||
|
id="g27275-6-6"
|
||||||
|
inkscape:label="window-close"><g
|
||||||
|
style="fill:#ffffff;fill-opacity:1;display:inline"
|
||||||
|
id="g27277-1-1"
|
||||||
|
transform="translate(-41,-760)"><path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="0"
|
||||||
|
inkscape:original="M 44.21875 764.1875 L 44.21875 765.1875 C 44.19684 765.46825 44.289258 765.74287 44.5 765.9375 L 46.78125 768.21875 L 44.5 770.46875 C 44.31181 770.65692 44.218747 770.92221 44.21875 771.1875 L 44.21875 772.1875 L 45.21875 772.1875 C 45.48404 772.1875 45.749336 772.09444 45.9375 771.90625 L 48.21875 769.625 L 50.5 771.90625 C 50.688164 772.0944 50.953449 772.18749 51.21875 772.1875 L 52.21875 772.1875 L 52.21875 771.1875 C 52.218742 770.9222 52.125688 770.65692 51.9375 770.46875 L 49.6875 768.21875 L 51.96875 765.9375 C 52.18441 765.73815 52.21875 765.47397 52.21875 765.1875 L 52.21875 764.1875 L 51.21875 764.1875 C 50.977922 764.1945 50.796875 764.2695 50.53125 764.5 L 48.21875 766.78125 L 45.9375 764.5 C 45.75987 764.31608 45.504951 764.1987 45.25 764.1875 C 45.23954 764.18704 45.22912 764.18738 45.21875 764.1875 L 44.21875 764.1875 z "
|
||||||
|
xlink:href="#path27279-0-5"
|
||||||
|
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#bebebe;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter16524-9);enable-background:new;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
|
||||||
|
id="path16506-5"
|
||||||
|
inkscape:href="#path27279-0-5"
|
||||||
|
d="m 44.21875,764.1875 0,1 c -0.02191,0.28075 0.07051,0.55537 0.28125,0.75 l 2.28125,2.28125 -2.28125,2.25 c -0.18819,0.18817 -0.281253,0.45346 -0.28125,0.71875 l 0,1 1,0 c 0.26529,0 0.530586,-0.0931 0.71875,-0.28125 L 48.21875,769.625 50.5,771.90625 c 0.188164,0.18815 0.453449,0.28124 0.71875,0.28125 l 1,0 0,-1 c -8e-6,-0.2653 -0.09306,-0.53058 -0.28125,-0.71875 l -2.25,-2.25 2.28125,-2.28125 c 0.21566,-0.19935 0.25,-0.46353 0.25,-0.75 l 0,-1 -1,0 c -0.240828,0.007 -0.421875,0.082 -0.6875,0.3125 l -2.3125,2.28125 L 45.9375,764.5 c -0.17763,-0.18392 -0.432549,-0.3013 -0.6875,-0.3125 -0.01046,-4.6e-4 -0.02088,-1.2e-4 -0.03125,0 l -1,0 z"
|
||||||
|
transform="translate(0,1.3535534)" /><path
|
||||||
|
sodipodi:nodetypes="ccsccccccccccccccccccccccc"
|
||||||
|
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#bebebe;fill:#d5c4a1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
|
||||||
|
id="path27279-0-5"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z" /></g></g></g></svg>
|
After Width: | Height: | Size: 9.4 KiB |
BIN
.themes/Klaus/cinnamon/assets/corner-ripple.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
91
.themes/Klaus/cinnamon/assets/radiobutton-off.svg
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
id="svg4140"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="radiobutton-off.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4142">
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient4692">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4694" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#3c3836;stop-opacity:1"
|
||||||
|
offset="1"
|
||||||
|
id="stop4696" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4692"
|
||||||
|
id="linearGradient4698"
|
||||||
|
x1="8"
|
||||||
|
y1="1037.3622"
|
||||||
|
x2="8"
|
||||||
|
y2="1044.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="22.4"
|
||||||
|
inkscape:cx="10.772517"
|
||||||
|
inkscape:cy="8.2994035"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="1274"
|
||||||
|
inkscape:window-height="725"
|
||||||
|
inkscape:window-x="302"
|
||||||
|
inkscape:window-y="129"
|
||||||
|
inkscape:window-maximized="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4688" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata4145">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1036.3622)">
|
||||||
|
<circle
|
||||||
|
style="fill:url(#linearGradient4698);fill-opacity:1;stroke:#d5c4a1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path4690"
|
||||||
|
cx="8"
|
||||||
|
cy="1044.3622"
|
||||||
|
r="7.5" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
97
.themes/Klaus/cinnamon/assets/radiobutton.svg
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
id="svg4140"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="radiobutton.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4142">
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient4692">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4694" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#3c3836;stop-opacity:1"
|
||||||
|
offset="1"
|
||||||
|
id="stop4696" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4692"
|
||||||
|
id="linearGradient4698"
|
||||||
|
x1="8"
|
||||||
|
y1="1037.3622"
|
||||||
|
x2="8"
|
||||||
|
y2="1044.3622"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="22.4"
|
||||||
|
inkscape:cx="10.772517"
|
||||||
|
inkscape:cy="8.2994035"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="1274"
|
||||||
|
inkscape:window-height="725"
|
||||||
|
inkscape:window-x="302"
|
||||||
|
inkscape:window-y="129"
|
||||||
|
inkscape:window-maximized="0">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4688" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata4145">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1036.3622)">
|
||||||
|
<circle
|
||||||
|
style="fill:url(#linearGradient4698);fill-opacity:1;stroke:#d5c4a1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path4690"
|
||||||
|
cx="8"
|
||||||
|
cy="1044.3622"
|
||||||
|
r="7.5" />
|
||||||
|
<circle
|
||||||
|
style="fill:#b8bb26;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path4741"
|
||||||
|
cx="8"
|
||||||
|
cy="1044.3622"
|
||||||
|
r="4" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
951
.themes/Klaus/cinnamon/assets/toggle-off-intl.svg
Normal file
@ -0,0 +1,951 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
width="64"
|
||||||
|
height="22"
|
||||||
|
id="svg3273"
|
||||||
|
inkscape:version="0.48.2 r9819"
|
||||||
|
sodipodi:docname="toggle-off-intl.svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#1e1e1e"
|
||||||
|
bordercolor="#bc1010"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1280"
|
||||||
|
inkscape:window-height="740"
|
||||||
|
id="namedview68"
|
||||||
|
showgrid="true"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
showborder="false"
|
||||||
|
inkscape:zoom="11.971257"
|
||||||
|
inkscape:cx="4.2457376"
|
||||||
|
inkscape:cy="10.414796"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer2">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid3045"
|
||||||
|
empspacing="8"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="0,14"
|
||||||
|
id="guide4279" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="38,22"
|
||||||
|
id="guide4281" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="35,0"
|
||||||
|
id="guide4283" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="64,7"
|
||||||
|
id="guide4285" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<defs
|
||||||
|
id="defs3275">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3883">
|
||||||
|
<stop
|
||||||
|
id="stop3885"
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3887"
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4649">
|
||||||
|
<stop
|
||||||
|
id="stop4651"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop4653"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.27450982;"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3921">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
id="stop3923" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.15686275;"
|
||||||
|
id="stop3925" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient3985">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3987" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3989" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3938">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#a0a0a0;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3940" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dcdcdc;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3942" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4095">
|
||||||
|
<stop
|
||||||
|
id="stop4097"
|
||||||
|
style="stop-color:#131313;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop4099"
|
||||||
|
style="stop-color:#131313;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3921"
|
||||||
|
id="linearGradient3152"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-64.499996,-20.499994)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="19.5"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="-0.5" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3128"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3990-9">
|
||||||
|
<stop
|
||||||
|
id="stop3992-5"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3994-0"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="39"
|
||||||
|
x2="41"
|
||||||
|
y1="1"
|
||||||
|
x1="41"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3077-4"
|
||||||
|
xlink:href="#linearGradient4095"
|
||||||
|
inkscape:collect="always"
|
||||||
|
gradientTransform="matrix(1,0,0,-1,-32,22)" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient4013"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-448,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3988">
|
||||||
|
<stop
|
||||||
|
id="stop3990"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.70588237;"
|
||||||
|
offset="0.60000002"
|
||||||
|
id="stop3997" />
|
||||||
|
<stop
|
||||||
|
id="stop3993"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient4011"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-447,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3976">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3978" />
|
||||||
|
<stop
|
||||||
|
id="stop3995"
|
||||||
|
offset="0.60000002"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3980" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient4005"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-452,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient4003"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-451,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient3986"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-456,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
r="0.5"
|
||||||
|
fy="11"
|
||||||
|
fx="42.5"
|
||||||
|
cy="11"
|
||||||
|
cx="42.5"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-455,-99)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="radialGradient4077"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3951"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3990-9"
|
||||||
|
id="linearGradient3953"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="41"
|
||||||
|
y1="1"
|
||||||
|
x2="41"
|
||||||
|
y2="28" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient3955"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-455,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient3957"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-456,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient3959"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-451,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient3961"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-452,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient3963"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-447,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient3965"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-448,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3971"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3975"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3978"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3983"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient4062"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient4066"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient4071"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3985"
|
||||||
|
id="linearGradient4074"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,-1,-32,22)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="-4" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5"
|
||||||
|
id="radialGradient4013-9"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-448,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3988-5">
|
||||||
|
<stop
|
||||||
|
id="stop3990-8"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.70588237;"
|
||||||
|
offset="0.60000002"
|
||||||
|
id="stop3997-5" />
|
||||||
|
<stop
|
||||||
|
id="stop3993-8"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976-2"
|
||||||
|
id="radialGradient4011-7"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-447,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3976-2">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3978-8" />
|
||||||
|
<stop
|
||||||
|
id="stop3995-9"
|
||||||
|
offset="0.60000002"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3980-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5"
|
||||||
|
id="radialGradient4005-9"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-452,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976-2"
|
||||||
|
id="radialGradient4003-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-451,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5"
|
||||||
|
id="radialGradient3986-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-456,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
r="0.5"
|
||||||
|
fy="11"
|
||||||
|
fx="42.5"
|
||||||
|
cy="11"
|
||||||
|
cx="42.5"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-455,-99)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="radialGradient4077-8"
|
||||||
|
xlink:href="#linearGradient3976-2"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
y2="28"
|
||||||
|
x2="41"
|
||||||
|
y1="1"
|
||||||
|
x1="41"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3077-4-9"
|
||||||
|
xlink:href="#linearGradient3990-9-4"
|
||||||
|
inkscape:collect="always"
|
||||||
|
gradientTransform="translate(-32,0)" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3990-9-4">
|
||||||
|
<stop
|
||||||
|
id="stop3992-5-7"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3994-0-8"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3938-4">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#a0a0a0;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3940-9" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dcdcdc;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3942-9" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="2"
|
||||||
|
x2="48"
|
||||||
|
y1="21"
|
||||||
|
x1="48"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3228"
|
||||||
|
xlink:href="#linearGradient3938-4"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938-4"
|
||||||
|
id="linearGradient4265"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5-7"
|
||||||
|
id="radialGradient4013-9-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-447,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3988-5-7">
|
||||||
|
<stop
|
||||||
|
id="stop3990-8-2"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.70588237;"
|
||||||
|
offset="0.60000002"
|
||||||
|
id="stop3997-5-7" />
|
||||||
|
<stop
|
||||||
|
id="stop3993-8-6"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976-2-0"
|
||||||
|
id="radialGradient4011-7-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-446,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3976-2-0">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3978-8-5" />
|
||||||
|
<stop
|
||||||
|
id="stop3995-9-0"
|
||||||
|
offset="0.60000002"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3980-6-1" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5-7"
|
||||||
|
id="radialGradient4005-9-8"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-451,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976-2-0"
|
||||||
|
id="radialGradient4003-1-6"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-450,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5-7"
|
||||||
|
id="radialGradient3986-1-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-455,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
r="0.5"
|
||||||
|
fy="11"
|
||||||
|
fx="42.5"
|
||||||
|
cy="11"
|
||||||
|
cx="42.5"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-454,-99)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="radialGradient4077-8-1"
|
||||||
|
xlink:href="#linearGradient3976-2-0"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
y2="28"
|
||||||
|
x2="41"
|
||||||
|
y1="1"
|
||||||
|
x1="41"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3077-4-9-4"
|
||||||
|
xlink:href="#linearGradient3990-9-4-5"
|
||||||
|
inkscape:collect="always"
|
||||||
|
gradientTransform="translate(-32,-1)" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3990-9-4-5">
|
||||||
|
<stop
|
||||||
|
id="stop3992-5-7-1"
|
||||||
|
style="stop-color:#d5c4a1;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3994-0-8-2"
|
||||||
|
style="stop-color:#d5c4a1;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="2"
|
||||||
|
x2="48"
|
||||||
|
y1="21"
|
||||||
|
x1="48"
|
||||||
|
gradientTransform="translate(-32,-1)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3228-0"
|
||||||
|
xlink:href="#linearGradient3938-4-7"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3938-4-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3940-9-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#3c3836;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3942-9-2" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3921-5"
|
||||||
|
id="linearGradient3152-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-64.499996,-20.499994)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="0.49999401" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3921-5">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
id="stop3923-6" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.15686275;"
|
||||||
|
id="stop3925-4" />
|
||||||
|
</linearGradient>
|
||||||
|
<filter
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="filter4131-3"
|
||||||
|
x="-0.12"
|
||||||
|
width="1.24"
|
||||||
|
y="-0.12"
|
||||||
|
height="1.24"
|
||||||
|
color-interpolation-filters="sRGB">
|
||||||
|
<feGaussianBlur
|
||||||
|
inkscape:collect="always"
|
||||||
|
stdDeviation="0.5"
|
||||||
|
id="feGaussianBlur4133-2" />
|
||||||
|
</filter>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3921-5"
|
||||||
|
id="linearGradient4525"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-64.499996,-20.499994)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="0.49999401" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938-4-7"
|
||||||
|
id="linearGradient4529"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,-1)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4649"
|
||||||
|
id="linearGradient4550"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-1,0,0,1,64.499996,1.500006)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="0.49999401" />
|
||||||
|
<linearGradient
|
||||||
|
y2="0.49999401"
|
||||||
|
x2="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x1="40.8125"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4443"
|
||||||
|
xlink:href="#linearGradient3921-5-9"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3921-5-9">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
id="stop3923-6-1" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.11764706;"
|
||||||
|
id="stop3925-4-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="0.49999401"
|
||||||
|
x2="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x1="40.8125"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4615"
|
||||||
|
xlink:href="#linearGradient3921-5-9"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3921-5-9-9"
|
||||||
|
id="linearGradient4621"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="0.49999401" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3921-5-9-9">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#333333;stop-opacity:1;"
|
||||||
|
id="stop3923-6-1-6" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#555555;stop-opacity:1;"
|
||||||
|
id="stop3925-4-6-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="0.49999401"
|
||||||
|
x2="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x1="40.8125"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4641"
|
||||||
|
xlink:href="#linearGradient3883"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
</defs>
|
||||||
|
<metadata
|
||||||
|
id="metadata3278">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Trough">
|
||||||
|
<path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="-1.0053965"
|
||||||
|
inkscape:original="M 5 2 C 3.338 2 2 3.338 2 5 L 2 17 C 2 18.662 3.338 20 5 20 L 59 20 C 60.662 20 62 18.662 62 17 L 62 5 C 62 3.338 60.662 2 59 2 L 5 2 z "
|
||||||
|
style="color:#000000;fill:url(#linearGradient4641);fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="path4619"
|
||||||
|
d="M 5,3 C 3.8775991,3 3,3.8775991 3,5 l 0,12 c 0,1.122401 0.8775991,2 2,2 l 54,0 c 1.122401,0 2,-0.877599 2,-2 L 61,5 C 61,3.8775991 60.122401,3 59,3 L 5,3 z" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="sssssssssccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.07999998;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,3 54,0 0,12 -54,0 z"
|
||||||
|
id="rect4052" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ssssssssssssssssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.12000002;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,2 54,0 c 0.5825,0 1,0.4175 1,1 l 0,12 c 0,0.5825 -0.4175,1 -1,1 L 5,18 C 4.4175,18 4,17.5825 4,17 L 4,5 C 4,4.4175 4.4175,4 5,4 z"
|
||||||
|
id="rect4042" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ssssssssssssssssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.2;color:#000000;fill:#d5c4a1;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,1 54,0 c 1.117387,0 2,0.882613 2,2 l 0,12 c 0,1.117387 -0.882613,2 -2,2 L 5,19 C 3.8826128,19 3,18.117387 3,17 L 3,5 C 3,3.882613 3.8826128,3 5,3 z"
|
||||||
|
id="rect4038" />
|
||||||
|
<g
|
||||||
|
id="g4655"
|
||||||
|
transform="translate(-1,0)"
|
||||||
|
style="opacity:0.5">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4131-3);enable-background:accumulate"
|
||||||
|
d="m 48,6.5 c -2.761424,0 -5,2.2385763 -5,5 0,2.761424 2.238576,5 5,5 2.761424,0 5,-2.238576 5,-5 0,-2.7614237 -2.238576,-5 -5,-5 z m 0,2 c 1.656854,0 3,1.3431458 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.6568542 1.343146,-3 3,-3 z"
|
||||||
|
id="path4125" />
|
||||||
|
<path
|
||||||
|
id="path4120"
|
||||||
|
d="m 48,6 c -2.761424,0 -5,2.2385763 -5,5 0,2.761424 2.238576,5 5,5 2.761424,0 5,-2.238576 5,-5 0,-2.7614237 -2.238576,-5 -5,-5 z m 0,2 c 1.656854,0 3,1.3431458 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.6568542 1.343146,-3 3,-3 z"
|
||||||
|
style="color:#000000;fill:#d5c4a1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Button"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="0.94267464"
|
||||||
|
inkscape:original="M 5 0 C 2.2642981 0 0 2.2642981 0 5 L 0 17 C 0 19.735702 2.2642982 22 5 22 L 29 22 C 31.735702 22 34 19.735702 34 17 L 34 5 C 34 2.2642982 31.735702 0 29 0 L 5 0 z "
|
||||||
|
style="opacity:0.05;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="path4541"
|
||||||
|
d="m 5,-0.9375 c -3.25586,0 -5.9375,2.68164 -5.9375,5.9375 l 0,12 c 0,3.25586 2.6816401,5.9375 5.9375,5.9375 l 24,0 c 3.25586,0 5.9375,-2.68164 5.9375,-5.9375 l 0,-12 c 0,-3.2558599 -2.68164,-5.9375 -5.9375,-5.9375 l -24,0 z" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="1.0204744"
|
||||||
|
inkscape:original="M 5 1.03125 C 2.8258474 1.03125 1.03125 2.8258474 1.03125 5 L 1.03125 17 C 1.03125 19.174153 2.8258474 20.96875 5 20.96875 L 29 20.96875 C 31.174153 20.96875 32.96875 19.174153 32.96875 17 L 32.96875 5 C 32.96875 2.8258474 31.174153 1.03125 29 1.03125 L 5 1.03125 z "
|
||||||
|
style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="path4537"
|
||||||
|
d="M 5,0 C 2.2642981,0 0,2.2642981 0,5 l 0,12 c 0,2.735702 2.2642982,5 5,5 l 24,0 c 2.735702,0 5,-2.264298 5,-5 L 34,5 C 34,2.2642982 31.735702,0 29,0 L 5,0 z" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="0.95425737"
|
||||||
|
inkscape:original="M 5 2 C 3.338 2 2 3.338 2 5 L 2 17 C 2 18.662 3.338 20 5 20 L 29 20 C 30.662 20 32 18.662 32 17 L 32 5 C 32 3.338 30.662 2 29 2 L 5 2 z "
|
||||||
|
style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="path4531"
|
||||||
|
d="M 5,1.03125 C 2.8258474,1.03125 1.03125,2.8258474 1.03125,5 l 0,12 c 0,2.174153 1.7945974,3.96875 3.96875,3.96875 l 24,0 c 2.174153,0 3.96875,-1.794597 3.96875,-3.96875 l 0,-12 C 32.96875,2.8258474 31.174153,1.03125 29,1.03125 l -24,0 z" />
|
||||||
|
<rect
|
||||||
|
style="color:#000000;fill:url(#linearGradient3228-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="rect3936"
|
||||||
|
width="30.00001"
|
||||||
|
height="18.00001"
|
||||||
|
x="2"
|
||||||
|
y="2"
|
||||||
|
rx="3"
|
||||||
|
ry="3" />
|
||||||
|
<path
|
||||||
|
style="opacity:0.6;color:#000000;fill:url(#linearGradient3077-4-9-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 24,0 c 1.662,0 3,-1.338 3,-3 L 32,5 C 32,3.338 30.662,2 29,2 z m 0,1 24,0 c 1.12561,0 2,0.8743885 2,2 l 0,12 c 0,1.125612 -0.87439,2 -2,2 L 5,19 C 3.874388,19 3,18.125612 3,17 L 3,5 C 3,3.8743885 3.874388,3 5,3 z"
|
||||||
|
id="rect4059"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ssssssssssssssssss" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 30 KiB |
951
.themes/Klaus/cinnamon/assets/toggle-off-us.svg
Normal file
@ -0,0 +1,951 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
width="64"
|
||||||
|
height="22"
|
||||||
|
id="svg3273"
|
||||||
|
inkscape:version="0.48.2 r9819"
|
||||||
|
sodipodi:docname="toggle-off-intl.svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#1e1e1e"
|
||||||
|
bordercolor="#bc1010"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="1"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1280"
|
||||||
|
inkscape:window-height="740"
|
||||||
|
id="namedview68"
|
||||||
|
showgrid="true"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
showborder="false"
|
||||||
|
inkscape:zoom="11.971257"
|
||||||
|
inkscape:cx="4.2457376"
|
||||||
|
inkscape:cy="10.414796"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer2">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid3045"
|
||||||
|
empspacing="8"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="0,14"
|
||||||
|
id="guide4279" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="38,22"
|
||||||
|
id="guide4281" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="35,0"
|
||||||
|
id="guide4283" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="64,7"
|
||||||
|
id="guide4285" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<defs
|
||||||
|
id="defs3275">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3883">
|
||||||
|
<stop
|
||||||
|
id="stop3885"
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3887"
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4649">
|
||||||
|
<stop
|
||||||
|
id="stop4651"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop4653"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.27450982;"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3921">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
id="stop3923" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.15686275;"
|
||||||
|
id="stop3925" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient3985">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3987" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3989" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3938">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#a0a0a0;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3940" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dcdcdc;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3942" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4095">
|
||||||
|
<stop
|
||||||
|
id="stop4097"
|
||||||
|
style="stop-color:#131313;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop4099"
|
||||||
|
style="stop-color:#131313;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3921"
|
||||||
|
id="linearGradient3152"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-64.499996,-20.499994)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="19.5"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="-0.5" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3128"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3990-9">
|
||||||
|
<stop
|
||||||
|
id="stop3992-5"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3994-0"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="39"
|
||||||
|
x2="41"
|
||||||
|
y1="1"
|
||||||
|
x1="41"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3077-4"
|
||||||
|
xlink:href="#linearGradient4095"
|
||||||
|
inkscape:collect="always"
|
||||||
|
gradientTransform="matrix(1,0,0,-1,-32,22)" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient4013"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-448,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3988">
|
||||||
|
<stop
|
||||||
|
id="stop3990"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.70588237;"
|
||||||
|
offset="0.60000002"
|
||||||
|
id="stop3997" />
|
||||||
|
<stop
|
||||||
|
id="stop3993"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient4011"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-447,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3976">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3978" />
|
||||||
|
<stop
|
||||||
|
id="stop3995"
|
||||||
|
offset="0.60000002"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3980" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient4005"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-452,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient4003"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-451,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient3986"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-456,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
r="0.5"
|
||||||
|
fy="11"
|
||||||
|
fx="42.5"
|
||||||
|
cy="11"
|
||||||
|
cx="42.5"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-455,-99)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="radialGradient4077"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3951"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3990-9"
|
||||||
|
id="linearGradient3953"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="41"
|
||||||
|
y1="1"
|
||||||
|
x2="41"
|
||||||
|
y2="28" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient3955"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-455,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient3957"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-456,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient3959"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-451,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient3961"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-452,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976"
|
||||||
|
id="radialGradient3963"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-447,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988"
|
||||||
|
id="radialGradient3965"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-448,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3971"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3975"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3978"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient3983"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient4062"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient4066"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938"
|
||||||
|
id="linearGradient4071"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3985"
|
||||||
|
id="linearGradient4074"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,-1,-32,22)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="-4" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5"
|
||||||
|
id="radialGradient4013-9"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-448,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3988-5">
|
||||||
|
<stop
|
||||||
|
id="stop3990-8"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.70588237;"
|
||||||
|
offset="0.60000002"
|
||||||
|
id="stop3997-5" />
|
||||||
|
<stop
|
||||||
|
id="stop3993-8"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976-2"
|
||||||
|
id="radialGradient4011-7"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-447,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3976-2">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3978-8" />
|
||||||
|
<stop
|
||||||
|
id="stop3995-9"
|
||||||
|
offset="0.60000002"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3980-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5"
|
||||||
|
id="radialGradient4005-9"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-452,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976-2"
|
||||||
|
id="radialGradient4003-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-451,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5"
|
||||||
|
id="radialGradient3986-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-456,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
r="0.5"
|
||||||
|
fy="11"
|
||||||
|
fx="42.5"
|
||||||
|
cy="11"
|
||||||
|
cx="42.5"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-455,-99)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="radialGradient4077-8"
|
||||||
|
xlink:href="#linearGradient3976-2"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
y2="28"
|
||||||
|
x2="41"
|
||||||
|
y1="1"
|
||||||
|
x1="41"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3077-4-9"
|
||||||
|
xlink:href="#linearGradient3990-9-4"
|
||||||
|
inkscape:collect="always"
|
||||||
|
gradientTransform="translate(-32,0)" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3990-9-4">
|
||||||
|
<stop
|
||||||
|
id="stop3992-5-7"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3994-0-8"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3938-4">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#a0a0a0;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3940-9" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#dcdcdc;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3942-9" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="2"
|
||||||
|
x2="48"
|
||||||
|
y1="21"
|
||||||
|
x1="48"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3228"
|
||||||
|
xlink:href="#linearGradient3938-4"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938-4"
|
||||||
|
id="linearGradient4265"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,0)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5-7"
|
||||||
|
id="radialGradient4013-9-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-447,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3988-5-7">
|
||||||
|
<stop
|
||||||
|
id="stop3990-8-2"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#000000;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#000000;stop-opacity:0.70588237;"
|
||||||
|
offset="0.60000002"
|
||||||
|
id="stop3997-5-7" />
|
||||||
|
<stop
|
||||||
|
id="stop3993-8-6"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000;stop-opacity:0;" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976-2-0"
|
||||||
|
id="radialGradient4011-7-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-446,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3976-2-0">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3978-8-5" />
|
||||||
|
<stop
|
||||||
|
id="stop3995-9-0"
|
||||||
|
offset="0.60000002"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3980-6-1" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5-7"
|
||||||
|
id="radialGradient4005-9-8"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-451,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3976-2-0"
|
||||||
|
id="radialGradient4003-1-6"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-450,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3988-5-7"
|
||||||
|
id="radialGradient3986-1-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-455,-99)"
|
||||||
|
cx="42.5"
|
||||||
|
cy="11"
|
||||||
|
fx="42.5"
|
||||||
|
fy="11"
|
||||||
|
r="0.5" />
|
||||||
|
<radialGradient
|
||||||
|
r="0.5"
|
||||||
|
fy="11"
|
||||||
|
fx="42.5"
|
||||||
|
cy="11"
|
||||||
|
cx="42.5"
|
||||||
|
gradientTransform="matrix(11,0,0,10,-454,-99)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="radialGradient4077-8-1"
|
||||||
|
xlink:href="#linearGradient3976-2-0"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
y2="28"
|
||||||
|
x2="41"
|
||||||
|
y1="1"
|
||||||
|
x1="41"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3077-4-9-4"
|
||||||
|
xlink:href="#linearGradient3990-9-4-5"
|
||||||
|
inkscape:collect="always"
|
||||||
|
gradientTransform="translate(-32,-1)" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3990-9-4-5">
|
||||||
|
<stop
|
||||||
|
id="stop3992-5-7-1"
|
||||||
|
style="stop-color:#d5c4a1;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3994-0-8-2"
|
||||||
|
style="stop-color:#d5c4a1;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="2"
|
||||||
|
x2="48"
|
||||||
|
y1="21"
|
||||||
|
x1="48"
|
||||||
|
gradientTransform="translate(-32,-1)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3228-0"
|
||||||
|
xlink:href="#linearGradient3938-4-7"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3938-4-7">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#1d2021;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3940-9-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#3c3836;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3942-9-2" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3921-5"
|
||||||
|
id="linearGradient3152-1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-64.499996,-20.499994)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="0.49999401" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3921-5">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
id="stop3923-6" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.15686275;"
|
||||||
|
id="stop3925-4" />
|
||||||
|
</linearGradient>
|
||||||
|
<filter
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="filter4131-3"
|
||||||
|
x="-0.12"
|
||||||
|
width="1.24"
|
||||||
|
y="-0.12"
|
||||||
|
height="1.24"
|
||||||
|
color-interpolation-filters="sRGB">
|
||||||
|
<feGaussianBlur
|
||||||
|
inkscape:collect="always"
|
||||||
|
stdDeviation="0.5"
|
||||||
|
id="feGaussianBlur4133-2" />
|
||||||
|
</filter>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3921-5"
|
||||||
|
id="linearGradient4525"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-64.499996,-20.499994)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="0.49999401" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3938-4-7"
|
||||||
|
id="linearGradient4529"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-32,-1)"
|
||||||
|
x1="48"
|
||||||
|
y1="21"
|
||||||
|
x2="48"
|
||||||
|
y2="2" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4649"
|
||||||
|
id="linearGradient4550"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-1,0,0,1,64.499996,1.500006)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="0.49999401" />
|
||||||
|
<linearGradient
|
||||||
|
y2="0.49999401"
|
||||||
|
x2="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x1="40.8125"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4443"
|
||||||
|
xlink:href="#linearGradient3921-5-9"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3921-5-9">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
id="stop3923-6-1" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.11764706;"
|
||||||
|
id="stop3925-4-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="0.49999401"
|
||||||
|
x2="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x1="40.8125"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4615"
|
||||||
|
xlink:href="#linearGradient3921-5-9"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3921-5-9-9"
|
||||||
|
id="linearGradient4621"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
|
||||||
|
x1="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x2="40.8125"
|
||||||
|
y2="0.49999401" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3921-5-9-9">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#333333;stop-opacity:1;"
|
||||||
|
id="stop3923-6-1-6" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#555555;stop-opacity:1;"
|
||||||
|
id="stop3925-4-6-6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="0.49999401"
|
||||||
|
x2="40.8125"
|
||||||
|
y1="18.499994"
|
||||||
|
x1="40.8125"
|
||||||
|
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4641"
|
||||||
|
xlink:href="#linearGradient3883"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
</defs>
|
||||||
|
<metadata
|
||||||
|
id="metadata3278">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Trough">
|
||||||
|
<path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="-1.0053965"
|
||||||
|
inkscape:original="M 5 2 C 3.338 2 2 3.338 2 5 L 2 17 C 2 18.662 3.338 20 5 20 L 59 20 C 60.662 20 62 18.662 62 17 L 62 5 C 62 3.338 60.662 2 59 2 L 5 2 z "
|
||||||
|
style="color:#000000;fill:url(#linearGradient4641);fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="path4619"
|
||||||
|
d="M 5,3 C 3.8775991,3 3,3.8775991 3,5 l 0,12 c 0,1.122401 0.8775991,2 2,2 l 54,0 c 1.122401,0 2,-0.877599 2,-2 L 61,5 C 61,3.8775991 60.122401,3 59,3 L 5,3 z" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="sssssssssccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.07999998;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,3 54,0 0,12 -54,0 z"
|
||||||
|
id="rect4052" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ssssssssssssssssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.12000002;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,2 54,0 c 0.5825,0 1,0.4175 1,1 l 0,12 c 0,0.5825 -0.4175,1 -1,1 L 5,18 C 4.4175,18 4,17.5825 4,17 L 4,5 C 4,4.4175 4.4175,4 5,4 z"
|
||||||
|
id="rect4042" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ssssssssssssssssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.2;color:#000000;fill:#d5c4a1;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,1 54,0 c 1.117387,0 2,0.882613 2,2 l 0,12 c 0,1.117387 -0.882613,2 -2,2 L 5,19 C 3.8826128,19 3,18.117387 3,17 L 3,5 C 3,3.882613 3.8826128,3 5,3 z"
|
||||||
|
id="rect4038" />
|
||||||
|
<g
|
||||||
|
id="g4655"
|
||||||
|
transform="translate(-1,0)"
|
||||||
|
style="opacity:0.5">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4131-3);enable-background:accumulate"
|
||||||
|
d="m 48,6.5 c -2.761424,0 -5,2.2385763 -5,5 0,2.761424 2.238576,5 5,5 2.761424,0 5,-2.238576 5,-5 0,-2.7614237 -2.238576,-5 -5,-5 z m 0,2 c 1.656854,0 3,1.3431458 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.6568542 1.343146,-3 3,-3 z"
|
||||||
|
id="path4125" />
|
||||||
|
<path
|
||||||
|
id="path4120"
|
||||||
|
d="m 48,6 c -2.761424,0 -5,2.2385763 -5,5 0,2.761424 2.238576,5 5,5 2.761424,0 5,-2.238576 5,-5 0,-2.7614237 -2.238576,-5 -5,-5 z m 0,2 c 1.656854,0 3,1.3431458 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.6568542 1.343146,-3 3,-3 z"
|
||||||
|
style="color:#000000;fill:#d5c4a1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Button"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="0.94267464"
|
||||||
|
inkscape:original="M 5 0 C 2.2642981 0 0 2.2642981 0 5 L 0 17 C 0 19.735702 2.2642982 22 5 22 L 29 22 C 31.735702 22 34 19.735702 34 17 L 34 5 C 34 2.2642982 31.735702 0 29 0 L 5 0 z "
|
||||||
|
style="opacity:0.05;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="path4541"
|
||||||
|
d="m 5,-0.9375 c -3.25586,0 -5.9375,2.68164 -5.9375,5.9375 l 0,12 c 0,3.25586 2.6816401,5.9375 5.9375,5.9375 l 24,0 c 3.25586,0 5.9375,-2.68164 5.9375,-5.9375 l 0,-12 c 0,-3.2558599 -2.68164,-5.9375 -5.9375,-5.9375 l -24,0 z" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="1.0204744"
|
||||||
|
inkscape:original="M 5 1.03125 C 2.8258474 1.03125 1.03125 2.8258474 1.03125 5 L 1.03125 17 C 1.03125 19.174153 2.8258474 20.96875 5 20.96875 L 29 20.96875 C 31.174153 20.96875 32.96875 19.174153 32.96875 17 L 32.96875 5 C 32.96875 2.8258474 31.174153 1.03125 29 1.03125 L 5 1.03125 z "
|
||||||
|
style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="path4537"
|
||||||
|
d="M 5,0 C 2.2642981,0 0,2.2642981 0,5 l 0,12 c 0,2.735702 2.2642982,5 5,5 l 24,0 c 2.735702,0 5,-2.264298 5,-5 L 34,5 C 34,2.2642982 31.735702,0 29,0 L 5,0 z" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="inkscape:offset"
|
||||||
|
inkscape:radius="0.95425737"
|
||||||
|
inkscape:original="M 5 2 C 3.338 2 2 3.338 2 5 L 2 17 C 2 18.662 3.338 20 5 20 L 29 20 C 30.662 20 32 18.662 32 17 L 32 5 C 32 3.338 30.662 2 29 2 L 5 2 z "
|
||||||
|
style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="path4531"
|
||||||
|
d="M 5,1.03125 C 2.8258474,1.03125 1.03125,2.8258474 1.03125,5 l 0,12 c 0,2.174153 1.7945974,3.96875 3.96875,3.96875 l 24,0 c 2.174153,0 3.96875,-1.794597 3.96875,-3.96875 l 0,-12 C 32.96875,2.8258474 31.174153,1.03125 29,1.03125 l -24,0 z" />
|
||||||
|
<rect
|
||||||
|
style="color:#000000;fill:url(#linearGradient3228-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
id="rect3936"
|
||||||
|
width="30.00001"
|
||||||
|
height="18.00001"
|
||||||
|
x="2"
|
||||||
|
y="2"
|
||||||
|
rx="3"
|
||||||
|
ry="3" />
|
||||||
|
<path
|
||||||
|
style="opacity:0.6;color:#000000;fill:url(#linearGradient3077-4-9-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||||
|
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 24,0 c 1.662,0 3,-1.338 3,-3 L 32,5 C 32,3.338 30.662,2 29,2 z m 0,1 24,0 c 1.12561,0 2,0.8743885 2,2 l 0,12 c 0,1.125612 -0.87439,2 -2,2 L 5,19 C 3.874388,19 3,18.125612 3,17 L 3,5 C 3,3.8743885 3.874388,3 5,3 z"
|
||||||
|
id="rect4059"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ssssssssssssssssss" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 30 KiB |
1537
.themes/Klaus/cinnamon/assets/toggle-on-intl.svg
Normal file
After Width: | Height: | Size: 46 KiB |
1537
.themes/Klaus/cinnamon/assets/toggle-on-us.svg
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
.themes/Klaus/cinnamon/assets/trash-icon.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
1362
.themes/Klaus/cinnamon/cinnamon.css
Normal file
18
.themes/Klaus/cinnamon/common-assets/menu/menu-hover.svg
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg6927" inkscape:version="0.91 r13725" sodipodi:docname="menu-hover.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 25.6 26.4"
|
||||||
|
style="enable-background:new 0 0 25.6 26.4;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#898989;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="false" inkscape:current-layer="layer1" inkscape:cx="16.532799" inkscape:cy="17.338845" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:window-height="1032" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="11.2" pagecolor="#ffffff" showgrid="true">
|
||||||
|
<inkscape:grid id="grid4140" originx="0" originy="1.2503989e-05" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(-137,-382.36221)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<g id="g6908" transform="matrix(0.0689655,0,0,1.0000001,71.275885,274.36218)">
|
||||||
|
<rect id="rect5271" x="999.4" y="108" class="st0" width="278.4" height="26.4"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
60
.themes/Klaus/cinnamon/common-assets/menu/menu-separator.svg
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="90.311111mm"
|
||||||
|
height="0.56444442mm"
|
||||||
|
viewBox="0 0 320 1.9999999"
|
||||||
|
id="svg7537"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="menu-separator.svg">
|
||||||
|
<defs
|
||||||
|
id="defs7539" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.2"
|
||||||
|
inkscape:cx="115.53549"
|
||||||
|
inkscape:cy="8.9322818"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="723"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="23"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7542">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(340,-443.3622)" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
BIN
.themes/Klaus/cinnamon/common-assets/misc/1D69F471.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="add-workspace-active.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 35 200"
|
||||||
|
style="enable-background:new 0 0 35 200;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#898989;}
|
||||||
|
.st1{opacity:0.5;}
|
||||||
|
.st2{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="-12.039549" inkscape:cy="88.924726" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:window-height="696" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="8" pagecolor="#ffffff" showgrid="true" showguides="true">
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid3040" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
<sodipodi:guide id="guide3893" orientation="0,1" position="20,100"></sodipodi:guide>
|
||||||
|
<sodipodi:guide id="guide3895" orientation="1,0" position="18,190"></sodipodi:guide>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-852.36218)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect3810" class="st0" d="M3,852.4c-1.7,0-3,1.3-3,3v194c0,1.7,1.3,3,3,3h33c1.7,0,3-1.3,3-3v-194c0-1.7-1.3-3-3-3H3z
|
||||||
|
M3,853.4h33c1.1,0,2,0.9,2,2v194c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2v-194C1,854.3,1.9,853.4,3,853.4z"/>
|
||||||
|
<g id="g3917-7" transform="translate(0,-0.9999969)" class="st1">
|
||||||
|
</g>
|
||||||
|
<path id="rect3812" class="st0" d="M3,853.4h33c1.1,0,2,0.9,2,2v194c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2v-194
|
||||||
|
C1,854.3,1.9,853.4,3,853.4z"/>
|
||||||
|
<g id="g3917">
|
||||||
|
<path id="rect3897" class="st2" d="M18,944.4L18,944.4c0.6,0,1,0.5,1,1.1v13.7c0,0.6-0.4,1.1-1,1.1l0,0c-0.6,0-1-0.5-1-1.1v-13.7
|
||||||
|
C17,944.9,17.4,944.4,18,944.4z"/>
|
||||||
|
<path id="rect3897-6" class="st2" d="M26,952.4L26,952.4c0,0.6-0.5,1-1.1,1H11.1c-0.6,0-1.1-0.4-1.1-1l0,0c0-0.6,0.5-1,1.1-1h13.7
|
||||||
|
C25.5,951.4,26,951.8,26,952.4z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="add-workspace-hover.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 35 200"
|
||||||
|
style="enable-background:new 0 0 35 200;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.45;enable-background:new ;}
|
||||||
|
.st1{opacity:0.5;}
|
||||||
|
.st2{opacity:0.45;fill:#222222;enable-background:new ;}
|
||||||
|
.st3{fill:#C2C2C2;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="-12.039549" inkscape:cy="128.92473" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:window-height="696" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="8" pagecolor="#ffffff" showgrid="true" showguides="true">
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid3040" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
<sodipodi:guide id="guide3893" orientation="0,1" position="20,100"></sodipodi:guide>
|
||||||
|
<sodipodi:guide id="guide3895" orientation="1,0" position="18,190"></sodipodi:guide>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-852.36218)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect3810" class="st0" d="M3,852.4c-1.7,0-3,1.3-3,3v194c0,1.7,1.3,3,3,3h33c1.7,0,3-1.3,3-3v-194c0-1.7-1.3-3-3-3H3z
|
||||||
|
M3,853.4h33c1.1,0,2,0.9,2,2v194c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2v-194C1,854.3,1.9,853.4,3,853.4z"/>
|
||||||
|
<g id="g3917-7" transform="translate(0,-0.9999969)" class="st1">
|
||||||
|
</g>
|
||||||
|
<path id="rect3812" class="st2" d="M3,853.4h33c1.1,0,2,0.9,2,2v194c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2v-194
|
||||||
|
C1,854.3,1.9,853.4,3,853.4z"/>
|
||||||
|
<g id="g3917">
|
||||||
|
<path id="rect3897" class="st3" d="M18,944.4L18,944.4c0.6,0,1,0.5,1,1.1v13.7c0,0.6-0.4,1.1-1,1.1l0,0c-0.6,0-1-0.5-1-1.1v-13.7
|
||||||
|
C17,944.9,17.4,944.4,18,944.4z"/>
|
||||||
|
<path id="rect3897-6" class="st3" d="M26,952.4L26,952.4c0,0.6-0.5,1-1.1,1H11.1c-0.6,0-1.1-0.4-1.1-1l0,0c0-0.6,0.5-1,1.1-1h13.7
|
||||||
|
C25.5,951.4,26,951.8,26,952.4z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
33
.themes/Klaus/cinnamon/common-assets/misc/add-workspace.svg
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="add-workspace.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 35 200"
|
||||||
|
style="enable-background:new 0 0 35 200;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.45;enable-background:new ;}
|
||||||
|
.st1{opacity:0.5;}
|
||||||
|
.st2{opacity:0.3;enable-background:new ;}
|
||||||
|
.st3{fill:#C2C2C2;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="-12.039549" inkscape:cy="128.92473" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:window-height="696" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="8" pagecolor="#ffffff" showgrid="true" showguides="true">
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid3040" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
<sodipodi:guide id="guide3893" orientation="0,1" position="20,100"></sodipodi:guide>
|
||||||
|
<sodipodi:guide id="guide3895" orientation="1,0" position="18,190"></sodipodi:guide>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-852.36218)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect3810" class="st0" d="M3,852.4c-1.7,0-3,1.3-3,3v194c0,1.7,1.3,3,3,3h33c1.7,0,3-1.3,3-3v-194c0-1.7-1.3-3-3-3H3z
|
||||||
|
M3,853.4h33c1.1,0,2,0.9,2,2v194c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2v-194C1,854.3,1.9,853.4,3,853.4z"/>
|
||||||
|
<g id="g3917-7" transform="translate(0,-0.9999969)" class="st1">
|
||||||
|
</g>
|
||||||
|
<path id="rect3812" class="st2" d="M3,853.4h33c1.1,0,2,0.9,2,2v194c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2v-194
|
||||||
|
C1,854.3,1.9,853.4,3,853.4z"/>
|
||||||
|
<g id="g3917">
|
||||||
|
<path id="rect3897" class="st3" d="M18,944.4L18,944.4c0.6,0,1,0.5,1,1.1v13.7c0,0.6-0.4,1.1-1,1.1l0,0c-0.6,0-1-0.5-1-1.1v-13.7
|
||||||
|
C17,944.9,17.4,944.4,18,944.4z"/>
|
||||||
|
<path id="rect3897-6" class="st3" d="M26,952.4L26,952.4c0,0.6-0.5,1-1.1,1H11.1c-0.6,0-1.1-0.4-1.1-1l0,0c0-0.6,0.5-1,1.1-1h13.7
|
||||||
|
C25.5,951.4,26,951.8,26,952.4z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
38
.themes/Klaus/cinnamon/common-assets/misc/bg.svg
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg5386" inkscape:version="0.91 r13725" sodipodi:docname="bg.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32"
|
||||||
|
style="enable-background:new 0 0 32 32;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.81;fill:none;stroke:#1A1A1A;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st1{opacity:0.95;fill:#393939;enable-background:new ;}
|
||||||
|
.st2{opacity:0.65;}
|
||||||
|
.st3{opacity:2.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st4{opacity:7.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st5{opacity:0.13;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st6{opacity:0.2;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st7{opacity:0.25;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="18.271674" inkscape:cy="5.838404" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="11.313708" pagecolor="#ffffff" showgrid="false" units="px">
|
||||||
|
<inkscape:grid id="grid5954" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1020.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect4164-4-3" class="st0" d="M6.5,1024.9h19c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2h-19c-1.1,0-2-0.9-2-2v-18
|
||||||
|
C4.5,1025.8,5.4,1024.9,6.5,1024.9z"/>
|
||||||
|
<path id="rect4164" class="st1" d="M6.4,1025.4h19.2c0.8,0,1.4,0.6,1.4,1.4v18.2c0,0.8-0.6,1.4-1.4,1.4H6.4c-0.8,0-1.4-0.6-1.4-1.4
|
||||||
|
v-18.2C5,1026,5.6,1025.4,6.4,1025.4z"/>
|
||||||
|
<g id="g4271" transform="translate(-425.99995,658.36226)" class="st2">
|
||||||
|
<path id="rect4164-4-7-5-3-8-8" class="st3" d="M434.5,362.5h15c4.4,0,8,3.6,8,8v15c0,4.4-3.6,8-8,8h-15c-4.4,0-8-3.6-8-8v-15
|
||||||
|
C426.5,366.1,430.1,362.5,434.5,362.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3-8" class="st4" d="M434.5,363.5h15c3.9,0,7,3.1,7,7v15c0,3.9-3.1,7-7,7h-15c-3.9,0-7-3.1-7-7v-15
|
||||||
|
C427.5,366.6,430.6,363.5,434.5,363.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3" class="st5" d="M434.5,364.5h15c3.3,0,6,2.7,6,6v15c0,3.3-2.7,6-6,6h-15c-3.3,0-6-2.7-6-6v-15
|
||||||
|
C428.5,367.2,431.2,364.5,434.5,364.5z"/>
|
||||||
|
<path id="rect4164-4-7-5" class="st6" d="M434.5,365.5h15c2.8,0,5,2.2,5,5v15c0,2.8-2.2,5-5,5h-15c-2.8,0-5-2.2-5-5v-15
|
||||||
|
C429.5,367.7,431.7,365.5,434.5,365.5z"/>
|
||||||
|
<path id="rect4164-4-7" inkscape:connector-curvature="0" sodipodi:nodetypes="csscssc" class="st7" d="M431.6,388.3
|
||||||
|
c0.7,0.7,1.7,1.2,2.9,1.2h15c1.1,0,2.1-0.5,2.9-1.2c-0.3,0.1-0.5,0.2-0.9,0.2h-19C432.2,388.5,431.9,388.4,431.6,388.3z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg7384" inkscape:version="0.91 r13725" sodipodi:docname="calendar-arrow-left-hover.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||||
|
style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#898989;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview88" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer12" inkscape:cx="14.072123" inkscape:cy="8.0207106" inkscape:guide-bbox="true" inkscape:object-nodes="false" inkscape:object-paths="false" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-global="true" inkscape:snap-grids="true" inkscape:snap-nodes="true" inkscape:snap-others="false" inkscape:snap-to-guides="true" inkscape:window-height="720" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="22.627417" objecttolerance="10" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="2" enabled="true" id="grid4866" originx="141px" originy="530px" snapvisiblegridlinesonly="true" spacingx="1px" spacingy="1px" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
|
||||||
|
<inkscape:grid color="#000000" empcolor="#000000" empopacity="0" empspacing="4" enabled="true" id="grid5968" opacity="0.1254902" originx="141px" originy="530px" snapvisiblegridlinesonly="true" spacingx="0.5px" spacingy="0.5px" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<title id="title9167">Gnome Symbolic Icon Theme</title>
|
||||||
|
<g id="layer9" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="status">
|
||||||
|
</g>
|
||||||
|
<g id="layer10" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="devices">
|
||||||
|
</g>
|
||||||
|
<g id="layer11" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="apps">
|
||||||
|
</g>
|
||||||
|
<g id="layer13" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="places">
|
||||||
|
</g>
|
||||||
|
<g id="layer14" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="mimetypes">
|
||||||
|
</g>
|
||||||
|
<g id="layer15" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="emblems">
|
||||||
|
</g>
|
||||||
|
<g id="g71291" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="emotes">
|
||||||
|
</g>
|
||||||
|
<g id="g4953" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="categories">
|
||||||
|
</g>
|
||||||
|
<g id="layer12" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="actions">
|
||||||
|
<path id="path6040" inkscape:connector-curvature="0" class="st0" d="M109.8,751c0,0-0.1,0-0.1,0c-0.2,0-0.3,0.1-0.4,0.2l-3.4,3.3
|
||||||
|
l-0.5,0.5l0.5,0.5l3.4,3.3c0.2,0.2,0.5,0.2,0.7,0.2c0,0,0.1,0,0.1,0c0.2,0,0.3-0.1,0.3-0.3c0,0,0-0.1,0-0.1c0.1-0.2,0-0.5-0.2-0.7
|
||||||
|
l-2.9-2.8l2.9-2.8c0.2-0.2,0.3-0.5,0.2-0.7c0,0,0-0.1,0-0.1c0-0.2-0.1-0.3-0.3-0.3c0,0-0.1,0-0.1,0C110,751,109.9,751,109.8,751
|
||||||
|
L109.8,751z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg7384" inkscape:version="0.91 r13725" sodipodi:docname="calendar-arrow-left.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||||
|
style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#A1A1A1;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview88" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer12" inkscape:cx="13.983735" inkscape:cy="8.0207106" inkscape:guide-bbox="true" inkscape:object-nodes="false" inkscape:object-paths="false" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-global="true" inkscape:snap-grids="true" inkscape:snap-nodes="true" inkscape:snap-others="false" inkscape:snap-to-guides="true" inkscape:window-height="720" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="22.627417" objecttolerance="10" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="2" enabled="true" id="grid4866" originx="141px" originy="530px" snapvisiblegridlinesonly="true" spacingx="1px" spacingy="1px" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
|
||||||
|
<inkscape:grid color="#000000" empcolor="#000000" empopacity="0" empspacing="4" enabled="true" id="grid5968" opacity="0.1254902" originx="141px" originy="530px" snapvisiblegridlinesonly="true" spacingx="0.5px" spacingy="0.5px" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<title id="title9167">Gnome Symbolic Icon Theme</title>
|
||||||
|
<g id="layer9" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="status">
|
||||||
|
</g>
|
||||||
|
<g id="layer10" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="devices">
|
||||||
|
</g>
|
||||||
|
<g id="layer11" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="apps">
|
||||||
|
</g>
|
||||||
|
<g id="layer13" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="places">
|
||||||
|
</g>
|
||||||
|
<g id="layer14" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="mimetypes">
|
||||||
|
</g>
|
||||||
|
<g id="layer15" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="emblems">
|
||||||
|
</g>
|
||||||
|
<g id="g71291" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="emotes">
|
||||||
|
</g>
|
||||||
|
<g id="g4953" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="categories">
|
||||||
|
</g>
|
||||||
|
<g id="layer12" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="actions">
|
||||||
|
<path id="path6040" inkscape:connector-curvature="0" class="st0" d="M109.8,751c0,0-0.1,0-0.1,0c-0.2,0-0.3,0.1-0.4,0.2l-3.4,3.3
|
||||||
|
l-0.5,0.5l0.5,0.5l3.4,3.3c0.2,0.2,0.5,0.2,0.7,0.2c0,0,0.1,0,0.1,0c0.2,0,0.3-0.1,0.3-0.3c0,0,0-0.1,0-0.1c0.1-0.2,0-0.5-0.2-0.7
|
||||||
|
l-2.9-2.8l2.9-2.8c0.2-0.2,0.3-0.5,0.2-0.7c0,0,0-0.1,0-0.1c0-0.2-0.1-0.3-0.3-0.3c0,0-0.1,0-0.1,0C110,751,109.9,751,109.8,751
|
||||||
|
L109.8,751z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg7384" inkscape:version="0.91 r13725" sodipodi:docname="calendar-arrow-right-hover.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||||
|
style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#898989;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview88" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer12" inkscape:cx="14.072123" inkscape:cy="8.0207106" inkscape:guide-bbox="true" inkscape:object-nodes="false" inkscape:object-paths="false" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-global="true" inkscape:snap-grids="true" inkscape:snap-nodes="true" inkscape:snap-others="false" inkscape:snap-to-guides="true" inkscape:window-height="720" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="22.627417" objecttolerance="10" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="2" enabled="true" id="grid4866" originx="141px" originy="530px" snapvisiblegridlinesonly="true" spacingx="1px" spacingy="1px" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
|
||||||
|
<inkscape:grid color="#000000" empcolor="#000000" empopacity="0" empspacing="4" enabled="true" id="grid5968" opacity="0.1254902" originx="141px" originy="530px" snapvisiblegridlinesonly="true" spacingx="0.5px" spacingy="0.5px" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<title id="title9167">Gnome Symbolic Icon Theme</title>
|
||||||
|
<g id="layer9" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="status">
|
||||||
|
</g>
|
||||||
|
<g id="layer10" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="devices">
|
||||||
|
</g>
|
||||||
|
<g id="layer11" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="apps">
|
||||||
|
</g>
|
||||||
|
<g id="layer13" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="places">
|
||||||
|
</g>
|
||||||
|
<g id="layer14" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="mimetypes">
|
||||||
|
</g>
|
||||||
|
<g id="layer15" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="emblems">
|
||||||
|
</g>
|
||||||
|
<g id="g71291" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="emotes">
|
||||||
|
</g>
|
||||||
|
<g id="g4953" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="categories">
|
||||||
|
</g>
|
||||||
|
<g id="layer12" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="actions">
|
||||||
|
<path id="path6040" inkscape:connector-curvature="0" class="st0" d="M106.2,751c0,0,0.1,0,0.1,0c0.2,0,0.3,0.1,0.4,0.2l3.4,3.3
|
||||||
|
l0.5,0.5l-0.5,0.5l-3.4,3.3c-0.2,0.2-0.5,0.2-0.7,0.2c0,0-0.1,0-0.1,0c-0.2,0-0.3-0.1-0.3-0.3c0,0,0-0.1,0-0.1
|
||||||
|
c-0.1-0.2,0-0.5,0.2-0.7l2.9-2.8l-2.9-2.8c-0.2-0.2-0.3-0.5-0.2-0.7c0,0,0-0.1,0-0.1c0-0.2,0.1-0.3,0.3-0.3c0,0,0.1,0,0.1,0
|
||||||
|
C106,751,106.1,751,106.2,751L106.2,751z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg7384" inkscape:version="0.91 r13725" sodipodi:docname="calendar-arrow-right.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||||
|
style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#A1A1A1;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview88" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer12" inkscape:cx="13.983735" inkscape:cy="8.0207106" inkscape:guide-bbox="true" inkscape:object-nodes="false" inkscape:object-paths="false" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-global="true" inkscape:snap-grids="true" inkscape:snap-nodes="true" inkscape:snap-others="false" inkscape:snap-to-guides="true" inkscape:window-height="720" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="22.627417" objecttolerance="10" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="2" enabled="true" id="grid4866" originx="141px" originy="530px" snapvisiblegridlinesonly="true" spacingx="1px" spacingy="1px" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
|
||||||
|
<inkscape:grid color="#000000" empcolor="#000000" empopacity="0" empspacing="4" enabled="true" id="grid5968" opacity="0.1254902" originx="141px" originy="530px" snapvisiblegridlinesonly="true" spacingx="0.5px" spacingy="0.5px" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<title id="title9167">Gnome Symbolic Icon Theme</title>
|
||||||
|
<g id="layer9" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="status">
|
||||||
|
</g>
|
||||||
|
<g id="layer10" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="devices">
|
||||||
|
</g>
|
||||||
|
<g id="layer11" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="apps">
|
||||||
|
</g>
|
||||||
|
<g id="layer13" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="places">
|
||||||
|
</g>
|
||||||
|
<g id="layer14" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="mimetypes">
|
||||||
|
</g>
|
||||||
|
<g id="layer15" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="emblems">
|
||||||
|
</g>
|
||||||
|
<g id="g71291" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="emotes">
|
||||||
|
</g>
|
||||||
|
<g id="g4953" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="categories">
|
||||||
|
</g>
|
||||||
|
<g id="layer12" transform="translate(-100.0002,-747)" inkscape:groupmode="layer" inkscape:label="actions">
|
||||||
|
<path id="path6040" inkscape:connector-curvature="0" class="st0" d="M106.2,751c0,0,0.1,0,0.1,0c0.2,0,0.3,0.1,0.4,0.2l3.4,3.3
|
||||||
|
l0.5,0.5l-0.5,0.5l-3.4,3.3c-0.2,0.2-0.5,0.2-0.7,0.2c0,0-0.1,0-0.1,0c-0.2,0-0.3-0.1-0.3-0.3c0,0,0-0.1,0-0.1
|
||||||
|
c-0.1-0.2,0-0.5,0.2-0.7l2.9-2.8l-2.9-2.8c-0.2-0.2-0.3-0.5-0.2-0.7c0,0,0-0.1,0-0.1c0-0.2,0.1-0.3,0.3-0.3c0,0,0.1,0,0.1,0
|
||||||
|
C106,751,106.1,751,106.2,751L106.2,751z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
100
.themes/Klaus/cinnamon/common-assets/misc/close-active.svg
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.0"
|
||||||
|
id="Foreground"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="26"
|
||||||
|
height="26"
|
||||||
|
viewBox="0 0 18.909091 18.909091"
|
||||||
|
enable-background="new 0 0 16 16"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="close-active.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||||
|
id="metadata2399"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs2397" /><sodipodi:namedview
|
||||||
|
inkscape:window-height="720"
|
||||||
|
inkscape:window-width="1364"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
guidetolerance="10.0"
|
||||||
|
gridtolerance="10.0"
|
||||||
|
objecttolerance="10.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#3e3e3e"
|
||||||
|
id="base"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="11.313708"
|
||||||
|
inkscape:cx="6.9788731"
|
||||||
|
inkscape:cy="7.4229136"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="23"
|
||||||
|
inkscape:current-layer="Foreground"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
borderlayer="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid11246"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="-3.6363603"
|
||||||
|
originy="-2.9090857" /></sodipodi:namedview><g
|
||||||
|
id="g3175-4"
|
||||||
|
transform="translate(1.8442616,0.64207471)"
|
||||||
|
style="opacity:0.8"><g
|
||||||
|
id="g3172-6" /></g><circle
|
||||||
|
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path3808-4"
|
||||||
|
cx="9.4545488"
|
||||||
|
cy="10.181814"
|
||||||
|
r="8" /><circle
|
||||||
|
style="opacity:1;fill:#d8354a;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path3808"
|
||||||
|
cx="9.4545488"
|
||||||
|
cy="9.454545"
|
||||||
|
r="8" /><g
|
||||||
|
inkscape:label="window-close"
|
||||||
|
id="g27275-6-6-6"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1"
|
||||||
|
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||||
|
transform="translate(-41,-760)"
|
||||||
|
id="g27277-1-1-2"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||||
|
inkscape:label="window-close"
|
||||||
|
id="g27275-6-6"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||||
|
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||||
|
transform="translate(-41,-760)"
|
||||||
|
id="g27277-1-1"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||||
|
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path27279-0-5"
|
||||||
|
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||||
|
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
After Width: | Height: | Size: 4.9 KiB |
100
.themes/Klaus/cinnamon/common-assets/misc/close-hover.svg
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.0"
|
||||||
|
id="Foreground"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="26"
|
||||||
|
height="26"
|
||||||
|
viewBox="0 0 18.909091 18.909091"
|
||||||
|
enable-background="new 0 0 16 16"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="close-hover.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||||
|
id="metadata2399"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs2397" /><sodipodi:namedview
|
||||||
|
inkscape:window-height="720"
|
||||||
|
inkscape:window-width="1364"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
guidetolerance="10.0"
|
||||||
|
gridtolerance="10.0"
|
||||||
|
objecttolerance="10.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#3e3e3e"
|
||||||
|
id="base"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="11.313708"
|
||||||
|
inkscape:cx="6.9788731"
|
||||||
|
inkscape:cy="7.4229136"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="23"
|
||||||
|
inkscape:current-layer="Foreground"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
borderlayer="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid11246"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="-3.6363603"
|
||||||
|
originy="-2.9090857" /></sodipodi:namedview><g
|
||||||
|
id="g3175-4"
|
||||||
|
transform="translate(1.8442616,0.64207471)"
|
||||||
|
style="opacity:0.8"><g
|
||||||
|
id="g3172-6" /></g><circle
|
||||||
|
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path3808-4"
|
||||||
|
cx="9.4545488"
|
||||||
|
cy="10.181814"
|
||||||
|
r="8" /><circle
|
||||||
|
style="opacity:1;fill:#ff7a80;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path3808"
|
||||||
|
cx="9.4545488"
|
||||||
|
cy="9.454545"
|
||||||
|
r="8" /><g
|
||||||
|
inkscape:label="window-close"
|
||||||
|
id="g27275-6-6-6"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1"
|
||||||
|
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||||
|
transform="translate(-41,-760)"
|
||||||
|
id="g27277-1-1-2"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||||
|
inkscape:label="window-close"
|
||||||
|
id="g27275-6-6"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||||
|
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||||
|
transform="translate(-41,-760)"
|
||||||
|
id="g27277-1-1"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||||
|
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path27279-0-5"
|
||||||
|
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||||
|
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
After Width: | Height: | Size: 4.9 KiB |
100
.themes/Klaus/cinnamon/common-assets/misc/close.svg
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.0"
|
||||||
|
id="Foreground"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="26"
|
||||||
|
height="26"
|
||||||
|
viewBox="0 0 18.909091 18.909091"
|
||||||
|
enable-background="new 0 0 16 16"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="close.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||||
|
id="metadata2399"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs2397" /><sodipodi:namedview
|
||||||
|
inkscape:window-height="720"
|
||||||
|
inkscape:window-width="1364"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
guidetolerance="10.0"
|
||||||
|
gridtolerance="10.0"
|
||||||
|
objecttolerance="10.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#3e3e3e"
|
||||||
|
id="base"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="11.313708"
|
||||||
|
inkscape:cx="6.9788731"
|
||||||
|
inkscape:cy="7.4229136"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="23"
|
||||||
|
inkscape:current-layer="Foreground"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
borderlayer="true"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid11246"
|
||||||
|
empspacing="5"
|
||||||
|
visible="true"
|
||||||
|
enabled="true"
|
||||||
|
snapvisiblegridlinesonly="true"
|
||||||
|
originx="-3.6363603"
|
||||||
|
originy="-2.9090857" /></sodipodi:namedview><g
|
||||||
|
id="g3175-4"
|
||||||
|
transform="translate(1.8442616,0.64207471)"
|
||||||
|
style="opacity:0.8"><g
|
||||||
|
id="g3172-6" /></g><circle
|
||||||
|
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path3808-4"
|
||||||
|
cx="9.4545488"
|
||||||
|
cy="10.181814"
|
||||||
|
r="8" /><circle
|
||||||
|
style="opacity:1;fill:#f75a61;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path3808"
|
||||||
|
cx="9.4545488"
|
||||||
|
cy="9.454545"
|
||||||
|
r="8" /><g
|
||||||
|
inkscape:label="window-close"
|
||||||
|
id="g27275-6-6-6"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1"
|
||||||
|
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||||
|
transform="translate(-41,-760)"
|
||||||
|
id="g27277-1-1-2"
|
||||||
|
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||||
|
inkscape:label="window-close"
|
||||||
|
id="g27275-6-6"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||||
|
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||||
|
transform="translate(-41,-760)"
|
||||||
|
id="g27277-1-1"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||||
|
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path27279-0-5"
|
||||||
|
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||||
|
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
After Width: | Height: | Size: 4.8 KiB |
21
.themes/Klaus/cinnamon/common-assets/misc/corner-ripple.svg
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="corner-ripple.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 104 104"
|
||||||
|
style="enable-background:new 0 0 104 104;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:url(#path2991_1_);}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" gridtolerance="10" guidetolerance="10" id="namedview955" inkscape:current-layer="svg2" inkscape:cx="-38.639816" inkscape:cy="27.143174" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-width="640" inkscape:zoom="2.3864854" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(4.9999999e-6,-948.3622)">
|
||||||
|
|
||||||
|
<radialGradient id="path2991_1_" cx="-5.000000e-006" cy="1052.2522" r="52" gradientTransform="matrix(1 0 0 -1 52 2052.6145)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" style="stop-color:#7C7C7C;stop-opacity:0"/>
|
||||||
|
<stop offset="1" style="stop-color:#7B7B7B"/>
|
||||||
|
</radialGradient>
|
||||||
|
<path id="path2991" inkscape:connector-curvature="0" class="st0" d="M104,1000.4c0,28.7-23.3,52-52,52s-52-23.3-52-52
|
||||||
|
c0-28.7,23.3-52,52-52S104,971.6,104,1000.4z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
51
.themes/Klaus/cinnamon/common-assets/misc/desklet-header.svg
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg5386" inkscape:version="0.91 r13725" sodipodi:docname="desklet-header.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 23"
|
||||||
|
style="enable-background:new 0 0 32 23;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{clip-path:url(#SVGID_2_);}
|
||||||
|
.st1{opacity:0.84;fill:none;stroke:#1A1A1A;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st2{opacity:0.95;fill:#2F2F2F;enable-background:new ;}
|
||||||
|
.st3{opacity:0.75;}
|
||||||
|
.st4{opacity:2.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st5{opacity:7.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st6{opacity:0.13;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st7{opacity:0.2;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st8{opacity:0.25;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st9{opacity:0.2;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="13.051047" inkscape:cy="8.8454562" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="15.999999" pagecolor="#ffffff" showgrid="true" showguides="false" units="px">
|
||||||
|
<inkscape:grid id="grid5954" originx="1.0975551e-05" originy="-9.0000174" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(1.0975552e-5,-1020.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<g>
|
||||||
|
<defs>
|
||||||
|
<rect id="SVGID_1_" x="-7" y="1016.4" width="48" height="27"/>
|
||||||
|
</defs>
|
||||||
|
<clipPath id="SVGID_2_">
|
||||||
|
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g id="g4146" class="st0">
|
||||||
|
<path id="rect4164-4-3" class="st1" d="M6.5,1024.9h19c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2h-19c-1.1,0-2-0.9-2-2v-18
|
||||||
|
C4.5,1025.8,5.4,1024.9,6.5,1024.9z"/>
|
||||||
|
<path id="rect4164" class="st2" d="M6.4,1025.4h19.2c0.8,0,1.4,0.6,1.4,1.4v18.2c0,0.8-0.6,1.4-1.4,1.4H6.4
|
||||||
|
c-0.8,0-1.4-0.6-1.4-1.4v-18.2C5,1026,5.6,1025.4,6.4,1025.4z"/>
|
||||||
|
<g id="g4271" transform="translate(-425.99995,658.36226)" class="st3">
|
||||||
|
<path id="rect4164-4-7-5-3-8-8" class="st4" d="M434.5,362.5h15c4.4,0,8,3.6,8,8v15c0,4.4-3.6,8-8,8h-15c-4.4,0-8-3.6-8-8v-15
|
||||||
|
C426.5,366.1,430.1,362.5,434.5,362.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3-8" class="st5" d="M434.5,363.5h15c3.9,0,7,3.1,7,7v15c0,3.9-3.1,7-7,7h-15c-3.9,0-7-3.1-7-7v-15
|
||||||
|
C427.5,366.6,430.6,363.5,434.5,363.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3" class="st6" d="M434.5,364.5h15c3.3,0,6,2.7,6,6v15c0,3.3-2.7,6-6,6h-15c-3.3,0-6-2.7-6-6v-15
|
||||||
|
C428.5,367.2,431.2,364.5,434.5,364.5z"/>
|
||||||
|
<path id="rect4164-4-7-5" class="st7" d="M434.5,365.5h15c2.8,0,5,2.2,5,5v15c0,2.8-2.2,5-5,5h-15c-2.8,0-5-2.2-5-5v-15
|
||||||
|
C429.5,367.7,431.7,365.5,434.5,365.5z"/>
|
||||||
|
<path id="rect4164-4-7" inkscape:connector-curvature="0" sodipodi:nodetypes="csscssc" class="st8" d="M431.6,388.3
|
||||||
|
c0.7,0.7,1.7,1.2,2.9,1.2h15c1.1,0,2.1-0.5,2.9-1.2c-0.3,0.1-0.5,0.2-0.9,0.2h-19C432.2,388.5,431.9,388.4,431.6,388.3z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect id="rect4145" x="5" y="1042.4" class="st9" width="22" height="1"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
49
.themes/Klaus/cinnamon/common-assets/misc/desklet.svg
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg5386" inkscape:version="0.91 r13725" sodipodi:docname="desklet.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 23"
|
||||||
|
style="enable-background:new 0 0 32 23;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{clip-path:url(#SVGID_2_);}
|
||||||
|
.st1{opacity:0.72;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st2{opacity:0.95;fill:#404040;enable-background:new ;}
|
||||||
|
.st3{opacity:0.75;}
|
||||||
|
.st4{opacity:2.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st5{opacity:7.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st6{opacity:0.13;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st7{opacity:0.2;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st8{opacity:0.25;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="22.308942" inkscape:cy="7.633471" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="11.313708" pagecolor="#ffffff" showgrid="true" showguides="false" units="px">
|
||||||
|
<inkscape:grid id="grid5954" originx="1.0975551e-05" originy="-9.0000174" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(1.0975552e-5,-1020.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<g>
|
||||||
|
<defs>
|
||||||
|
<rect id="SVGID_1_" x="-7" y="1020.4" width="48" height="23"/>
|
||||||
|
</defs>
|
||||||
|
<clipPath id="SVGID_2_">
|
||||||
|
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g id="g4146" transform="translate(0,-8.8000161)" class="st0">
|
||||||
|
<path id="rect4164-4-3" class="st1" d="M6.5,1024.9h19c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2h-19c-1.1,0-2-0.9-2-2v-18
|
||||||
|
C4.5,1025.8,5.4,1024.9,6.5,1024.9z"/>
|
||||||
|
<path id="rect4164" class="st2" d="M6.4,1025.4h19.2c0.8,0,1.4,0.6,1.4,1.4v18.2c0,0.8-0.6,1.4-1.4,1.4H6.4
|
||||||
|
c-0.8,0-1.4-0.6-1.4-1.4v-18.2C5,1026,5.6,1025.4,6.4,1025.4z"/>
|
||||||
|
<g id="g4271" transform="translate(-425.99995,658.36226)" class="st3">
|
||||||
|
<path id="rect4164-4-7-5-3-8-8" class="st4" d="M434.5,362.5h15c4.4,0,8,3.6,8,8v15c0,4.4-3.6,8-8,8h-15c-4.4,0-8-3.6-8-8v-15
|
||||||
|
C426.5,366.1,430.1,362.5,434.5,362.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3-8" class="st5" d="M434.5,363.5h15c3.9,0,7,3.1,7,7v15c0,3.9-3.1,7-7,7h-15c-3.9,0-7-3.1-7-7v-15
|
||||||
|
C427.5,366.6,430.6,363.5,434.5,363.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3" class="st6" d="M434.5,364.5h15c3.3,0,6,2.7,6,6v15c0,3.3-2.7,6-6,6h-15c-3.3,0-6-2.7-6-6v-15
|
||||||
|
C428.5,367.2,431.2,364.5,434.5,364.5z"/>
|
||||||
|
<path id="rect4164-4-7-5" class="st7" d="M434.5,365.5h15c2.8,0,5,2.2,5,5v15c0,2.8-2.2,5-5,5h-15c-2.8,0-5-2.2-5-5v-15
|
||||||
|
C429.5,367.7,431.7,365.5,434.5,365.5z"/>
|
||||||
|
<path id="rect4164-4-7" inkscape:connector-curvature="0" sodipodi:nodetypes="csscssc" class="st8" d="M431.6,388.3
|
||||||
|
c0.7,0.7,1.7,1.2,2.9,1.2h15c1.1,0,2.1-0.5,2.9-1.2c-0.3,0.1-0.5,0.2-0.9,0.2h-19C432.2,388.5,431.9,388.4,431.6,388.3z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
38
.themes/Klaus/cinnamon/common-assets/misc/osd.svg
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg5386" inkscape:version="0.91 r13725" sodipodi:docname="osd.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32"
|
||||||
|
style="enable-background:new 0 0 32 32;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.85;fill:none;stroke:#111111;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st1{opacity:0.95;fill:#2A2A2A;enable-background:new ;}
|
||||||
|
.st2{opacity:0.65;}
|
||||||
|
.st3{opacity:2.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st4{opacity:7.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st5{opacity:0.13;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st6{opacity:0.2;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st7{opacity:0.25;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="23.210075" inkscape:cy="11.575503" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="16" pagecolor="#ffffff" showgrid="false" units="px">
|
||||||
|
<inkscape:grid id="grid5954" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1020.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect4164-4-3" class="st0" d="M6.5,1024.9h19c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2h-19c-1.1,0-2-0.9-2-2v-18
|
||||||
|
C4.5,1025.8,5.4,1024.9,6.5,1024.9z"/>
|
||||||
|
<path id="rect4164" class="st1" d="M6.4,1025.4h19.2c0.8,0,1.4,0.6,1.4,1.4v18.2c0,0.8-0.6,1.4-1.4,1.4H6.4c-0.8,0-1.4-0.6-1.4-1.4
|
||||||
|
v-18.2C5,1026,5.6,1025.4,6.4,1025.4z"/>
|
||||||
|
<g id="g4271" transform="translate(-425.99995,658.36226)" class="st2">
|
||||||
|
<path id="rect4164-4-7-5-3-8-8" class="st3" d="M434.5,362.5h15c4.4,0,8,3.6,8,8v15c0,4.4-3.6,8-8,8h-15c-4.4,0-8-3.6-8-8v-15
|
||||||
|
C426.5,366.1,430.1,362.5,434.5,362.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3-8" class="st4" d="M434.5,363.5h15c3.9,0,7,3.1,7,7v15c0,3.9-3.1,7-7,7h-15c-3.9,0-7-3.1-7-7v-15
|
||||||
|
C427.5,366.6,430.6,363.5,434.5,363.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3" class="st5" d="M434.5,364.5h15c3.3,0,6,2.7,6,6v15c0,3.3-2.7,6-6,6h-15c-3.3,0-6-2.7-6-6v-15
|
||||||
|
C428.5,367.2,431.2,364.5,434.5,364.5z"/>
|
||||||
|
<path id="rect4164-4-7-5" class="st6" d="M434.5,365.5h15c2.8,0,5,2.2,5,5v15c0,2.8-2.2,5-5,5h-15c-2.8,0-5-2.2-5-5v-15
|
||||||
|
C429.5,367.7,431.7,365.5,434.5,365.5z"/>
|
||||||
|
<path id="rect4164-4-7" inkscape:connector-curvature="0" sodipodi:nodetypes="csscssc" class="st7" d="M431.6,388.3
|
||||||
|
c0.7,0.7,1.7,1.2,2.9,1.2h15c1.1,0,2.1-0.5,2.9-1.2c-0.3,0.1-0.5,0.2-0.9,0.2h-19C432.2,388.5,431.9,388.4,431.6,388.3z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
BIN
.themes/Klaus/cinnamon/common-assets/misc/overview-hover.png
Normal file
After Width: | Height: | Size: 838 B |
BIN
.themes/Klaus/cinnamon/common-assets/misc/overview.png
Normal file
After Width: | Height: | Size: 680 B |
25
.themes/Klaus/cinnamon/common-assets/misc/trash-icon.svg
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="trash-icon.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 400 120"
|
||||||
|
style="enable-background:new 0 0 400 120;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.45;enable-background:new ;}
|
||||||
|
.st1{opacity:0.3;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="36.193504" inkscape:cy="50.945434" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:window-height="721" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="1.28" pagecolor="#ffffff" showgrid="true" showguides="true">
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid2985" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
<sodipodi:guide id="guide3920" orientation="1,0" position="200,105"></sodipodi:guide>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-932.36218)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect4179-2-0-9-8" class="st0" d="M8,938.4c-1.1,0-2,0.9-2,2v113c0,1.1,0.9,2,2,2h384c1.1,0,2-0.9,2-2v-113
|
||||||
|
c0-1.1-0.9-2-2-2H8z M8,939.4h384c0.6,0,1,0.4,1,1v113c0,0.6-0.4,1-1,1H8c-0.6,0-1-0.4-1-1v-113C7,939.8,7.4,939.4,8,939.4z"/>
|
||||||
|
<path id="rect4179-2-0-9" class="st1" d="M8,939.4h384c0.6,0,1,0.4,1,1v113c0,0.6-0.4,1-1,1H8c-0.6,0-1-0.4-1-1v-113
|
||||||
|
C7,939.8,7.4,939.4,8,939.4z"/>
|
||||||
|
|
||||||
|
<image style="overflow:visible;" width="256" height="256" id="image3917_1_" xlink:href="1D69F471.png" transform="matrix(0.25 0 0 0.25 168 964.3622)">
|
||||||
|
</image>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg11300" inkscape:export-xdpi="90.000000" inkscape:export-ydpi="90.000000" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:version="0.91 r13725" sodipodi:docname="activities-active.svg" sodipodi:version="0.32" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24"
|
||||||
|
style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#898989;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#525252" borderlayer="true" borderopacity="1" fill="#f57900" gridtolerance="10000" guidecolor="#ff0b00" guidehicolor="#001aff" guidehiopacity="0.49803922" guideopacity="1" guidetolerance="10000" height="300px" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="false" inkscape:current-layer="layer1" inkscape:cx="3.5498385" inkscape:cy="11.547553" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:guide-bbox="true" inkscape:object-nodes="true" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:showpageshadow="true" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="false" inkscape:snap-bbox-midpoints="false" inkscape:snap-grids="true" inkscape:snap-nodes="true" inkscape:window-height="848" inkscape:window-maximized="1" inkscape:window-width="1600" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="22.627417" objecttolerance="10000" pagecolor="#bebebe" showborder="true" showgrid="true" showguides="false" stroke="#ef2929" width="400px">
|
||||||
|
<inkscape:grid empspacing="4" enabled="true" id="grid3123" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
<sodipodi:guide id="guide4135" orientation="1,0" position="12,12"></sodipodi:guide>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-276)" inkscape:groupmode="layer" inkscape:label="Base">
|
||||||
|
<rect id="rect4138" x="5" y="287" class="st0" width="2" height="2"/>
|
||||||
|
<rect id="rect4138-6" x="11" y="287" class="st0" width="2" height="2"/>
|
||||||
|
<rect id="rect4138-9" x="17" y="287" class="st0" width="2" height="2"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
20
.themes/Klaus/cinnamon/common-assets/panel/activities.svg
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg11300" inkscape:export-xdpi="90.000000" inkscape:export-ydpi="90.000000" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:version="0.91 r13725" sodipodi:docname="activities.svg" sodipodi:version="0.32" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24"
|
||||||
|
style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#525252" borderlayer="true" borderopacity="1" fill="#f57900" gridtolerance="10000" guidecolor="#ff0b00" guidehicolor="#001aff" guidehiopacity="0.49803922" guideopacity="1" guidetolerance="10000" height="300px" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="false" inkscape:current-layer="layer1" inkscape:cx="11.305916" inkscape:cy="11.635941" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:guide-bbox="true" inkscape:object-nodes="true" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:showpageshadow="true" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="false" inkscape:snap-bbox-midpoints="false" inkscape:snap-grids="true" inkscape:snap-nodes="true" inkscape:window-height="848" inkscape:window-maximized="1" inkscape:window-width="1600" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="22.627417" objecttolerance="10000" pagecolor="#bebebe" showborder="true" showgrid="true" showguides="false" stroke="#ef2929" width="400px">
|
||||||
|
<inkscape:grid empspacing="4" enabled="true" id="grid3123" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
<sodipodi:guide id="guide4135" orientation="1,0" position="12,12"></sodipodi:guide>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-276)" inkscape:groupmode="layer" inkscape:label="Base">
|
||||||
|
<rect id="rect4138" x="5" y="287" class="st0" width="2" height="2"/>
|
||||||
|
<rect id="rect4138-6" x="11" y="287" class="st0" width="2" height="2"/>
|
||||||
|
<rect id="rect4138-9" x="17" y="287" class="st0" width="2" height="2"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
20
.themes/Klaus/cinnamon/common-assets/panel/panel-bottom.svg
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg4196" inkscape:version="0.91 r13725" sodipodi:docname="panel-bottom.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 27 27"
|
||||||
|
style="enable-background:new 0 0 27 27;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.95;fill:#2A2A2A;enable-background:new ;}
|
||||||
|
.st1{opacity:0.85;fill:#111111;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="3.5273194" inkscape:cy="2.920327" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="22.627416" pagecolor="#ffffff" showgrid="true" units="px">
|
||||||
|
<inkscape:grid id="grid4762" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1025.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<g id="g4136" transform="matrix(1,0,0,-1,0,2077.7244)">
|
||||||
|
<rect id="rect4713" y="1051.4" class="st0" width="27" height="-26"/>
|
||||||
|
<rect id="rect4713-4" y="1052.4" class="st1" width="27" height="-1"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
18
.themes/Klaus/cinnamon/common-assets/panel/panel-top.svg
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg4196" inkscape:version="0.91 r13725" sodipodi:docname="panel.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 27 27"
|
||||||
|
style="enable-background:new 0 0 27 27;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.95;fill:#2A2A2A;enable-background:new ;}
|
||||||
|
.st1{opacity:0.85;fill:#111111;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="11.460174" inkscape:cy="2.920327" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="22.627416" pagecolor="#ffffff" showgrid="true" units="px">
|
||||||
|
<inkscape:grid id="grid4762" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1025.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<rect id="rect4713" y="1025.4" class="st0" width="27" height="26"/>
|
||||||
|
<rect id="rect4713-4" y="1051.4" class="st1" width="27" height="1"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg11300" inkscape:export-xdpi="90.000000" inkscape:export-ydpi="90.000000" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:version="0.91 r13725" sodipodi:docname="running1.svg" sodipodi:version="0.32" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 28 4"
|
||||||
|
style="enable-background:new 0 0 28 4;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#898989;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#808080" borderlayer="true" borderopacity="1" fill="#f57900" gridtolerance="10000" guidecolor="#ff0b00" guidehicolor="#001aff" guidehiopacity="0.49803922" guideopacity="1" guidetolerance="10000" height="300px" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="false" inkscape:current-layer="layer1" inkscape:cx="15.988499" inkscape:cy="3.1982956" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:guide-bbox="true" inkscape:object-nodes="true" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:showpageshadow="true" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="false" inkscape:snap-bbox-midpoints="false" inkscape:snap-grids="true" inkscape:snap-nodes="true" inkscape:snap-page="true" inkscape:snap-smooth-nodes="false" inkscape:window-height="851" inkscape:window-maximized="1" inkscape:window-width="1600" inkscape:window-x="0" inkscape:window-y="24" inkscape:zoom="19.769528" objecttolerance="10000" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true" stroke="#ef2929" width="400px">
|
||||||
|
<inkscape:grid empspacing="4" enabled="true" id="grid3123" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-296)" inkscape:groupmode="layer" inkscape:label="Base">
|
||||||
|
<rect id="rect4270-9" x="2" y="298" class="st0" width="24" height="2"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg11300" inkscape:export-xdpi="90.000000" inkscape:export-ydpi="90.000000" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:version="0.91 r13725" sodipodi:docname="window-list-active-top.svg" sodipodi:version="0.32" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 28 4"
|
||||||
|
style="enable-background:new 0 0 28 4;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#898989;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#808080" borderlayer="true" borderopacity="1" fill="#f57900" gridtolerance="10000" guidecolor="#ff0b00" guidehicolor="#001aff" guidehiopacity="0.49803922" guideopacity="1" guidetolerance="10000" height="300px" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="false" inkscape:current-layer="layer1" inkscape:cx="6.908869" inkscape:cy="3.1982956" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:guide-bbox="true" inkscape:object-nodes="true" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:showpageshadow="true" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="false" inkscape:snap-bbox-midpoints="false" inkscape:snap-grids="true" inkscape:snap-nodes="true" inkscape:snap-page="true" inkscape:snap-smooth-nodes="false" inkscape:window-height="851" inkscape:window-maximized="1" inkscape:window-width="1600" inkscape:window-x="0" inkscape:window-y="24" inkscape:zoom="19.769528" objecttolerance="10000" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true" stroke="#ef2929" width="400px">
|
||||||
|
<inkscape:grid empspacing="4" enabled="true" id="grid3123" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-296)" inkscape:groupmode="layer" inkscape:label="Base">
|
||||||
|
<rect id="rect4270-9" x="2" y="296" class="st0" width="24" height="2"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
@ -0,0 +1,36 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg7539" inkscape:version="0.91 r13725" sodipodi:docname="switch-off-selected.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 50 20"
|
||||||
|
style="enable-background:new 0 0 50 20;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#434343;fill-opacity:0;}
|
||||||
|
.st1{opacity:0.2;enable-background:new ;}
|
||||||
|
.st2{fill:#FFFFFF;}
|
||||||
|
.st3{opacity:0.6;fill:#FFFFFF;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="-2.2858532" inkscape:cy="2.3994423" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:window-height="1032" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="0" inkscape:window-y="23" inkscape:zoom="8.2495794" pagecolor="#ffffff" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid3019" originx="-4" originy="2.6171874e-06" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(-120,87.999997)" inkscape:groupmode="layer" inkscape:label="Layer 1">
|
||||||
|
<g id="switch-selected" transform="translate(-886,-418)" inkscape:label="#g4820">
|
||||||
|
<g id="layer1-9-3" transform="matrix(-1,0,0,1,1177,420)" inkscape:label="Layer 1">
|
||||||
|
<g id="switch-active-2-8" transform="translate(120,-116.99998)" inkscape:label="Layer 1">
|
||||||
|
<g id="g3900-12-2" transform="translate(0,-1004.3622)">
|
||||||
|
<rect id="rect5465-3-32-9" y="1053.4" class="st0" width="52" height="-24"/>
|
||||||
|
<path id="rect2987-07-3" class="st1" d="M12,1031.4h28c6.1,0,11,4.5,11,10l0,0c0,5.5-4.9,10-11,10H12c-6.1,0-11-4.5-11-10l0,0
|
||||||
|
C1,1035.8,5.9,1031.4,12,1031.4z"/>
|
||||||
|
<circle id="path3759-7-1" class="st2" cx="41" cy="1041.4" r="9"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path id="path10839-9-8-2-2-5-7" inkscape:connector-curvature="0" class="st3" d="M1043,337h0.8c0,0,0,0,0,0
|
||||||
|
c0.2,0,0.4,0.1,0.5,0.2l1.7,1.7l1.7-1.7c0.2-0.2,0.3-0.2,0.5-0.2h0.8v0.8c0,0.2,0,0.4-0.2,0.6l-1.7,1.7l1.7,1.7
|
||||||
|
c0.1,0.1,0.2,0.3,0.2,0.5v0.8h-0.8c-0.2,0-0.4-0.1-0.5-0.2l-1.7-1.7l-1.7,1.7c-0.1,0.1-0.3,0.2-0.5,0.2h-0.8v-0.8
|
||||||
|
c0-0.2,0.1-0.4,0.2-0.5l1.7-1.7l-1.7-1.7c-0.2-0.1-0.2-0.4-0.2-0.6L1043,337L1043,337z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.0 KiB |
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg7539" inkscape:version="0.91 r13725" sodipodi:docname="switch-on-selected.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 50 20"
|
||||||
|
style="enable-background:new 0 0 50 20;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#434343;fill-opacity:0;}
|
||||||
|
.st1{fill:#FFFFFF;}
|
||||||
|
.st2{fill:#898989;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="20.556458" inkscape:cy="-1.6685358" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:window-height="1032" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="0" inkscape:window-y="23" inkscape:zoom="11.666667" pagecolor="#ffffff" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid3019" originx="-4" originy="2.6171874e-06" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(-120,87.999997)" inkscape:groupmode="layer" inkscape:label="Layer 1">
|
||||||
|
<g id="switch-active-selected" transform="translate(-886,-448)" inkscape:label="#g4829">
|
||||||
|
<g id="layer1-9-0-0" transform="translate(885,450)" inkscape:label="Layer 1">
|
||||||
|
<g id="switch-active-8-4" transform="translate(120,-116.99998)" inkscape:label="Layer 1">
|
||||||
|
<g id="g3900-1-87-6" transform="translate(0,-1004.3622)">
|
||||||
|
<rect id="rect5465-3-3-6" y="1029.4" class="st0" width="52" height="24"/>
|
||||||
|
<path id="rect2987-0-8-4" class="st1" d="M12,1031.4h28c6.1,0,11,4.5,11,10l0,0c0,5.5-4.9,10-11,10H12c-6.1,0-11-4.5-11-10l0,0
|
||||||
|
C1,1035.8,5.9,1031.4,12,1031.4z"/>
|
||||||
|
<circle id="path3759-0-7" class="st2" cx="41" cy="1041.4" r="9"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="g4816-0" transform="translate(-1.0003162,0)">
|
||||||
|
<path id="rect3977-39-2-1" class="st2" d="M1014.2,369.2l2.6,2.6c0.3,0.3,0.3,0.7,0,0.9l-0.5,0.5c-0.3,0.3-0.7,0.3-0.9,0
|
||||||
|
l-2.6-2.6c-0.3-0.3-0.3-0.7,0-0.9l0.5-0.5C1013.5,368.9,1014,368.9,1014.2,369.2z"/>
|
||||||
|
|
||||||
|
<rect id="rect3979-7-0-8" x="1014" y="369.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 36.4326 828.2335)" class="st2" width="8" height="2"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,55 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" inkscape:version="0.91 r13725" sodipodi:docname="checkbox-checked-focused.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||||
|
style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:none;}
|
||||||
|
.st1{fill:#898989;}
|
||||||
|
.st2{opacity:0.85;}
|
||||||
|
.st3{fill:#303030;}
|
||||||
|
.st4{fill:#EEEEEE;fill-opacity:0;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="-7.2080158" inkscape:cy="7.7067432" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="false" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:window-height="723" inkscape:window-maximized="0" inkscape:window-width="1006" inkscape:window-x="358" inkscape:window-y="22" inkscape:zoom="11.313709" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true">
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid2985" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1036.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<g id="checkbox-checked-dark" transform="translate(-36,1036)" inkscape:label="#g10758">
|
||||||
|
<g id="checkbox-unchecked-5-59" transform="translate(19,0)" inkscape:label="#g22047">
|
||||||
|
<g id="sdsd-7-54" inkscape:label="#g21853">
|
||||||
|
<g id="scdsdcd-5-8" transform="translate(0,-30)" inkscape:label="#g14325">
|
||||||
|
<g id="g15812-6-6-1-5-4" transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
|
||||||
|
<g id="g5489-2-9-6-8-8-53-5" transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
|
||||||
|
<g id="g5428-8-1-4-0-0-4-2">
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect id="rect13523-7-11" x="17" y="30.4" class="st0" width="16" height="16"/>
|
||||||
|
<g id="g5400-6-68">
|
||||||
|
<path id="rect5147-9-1-5-7-6-7-4" class="st1" d="M20,31.4h10c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H20c-1.1,0-2-0.9-2-2v-10
|
||||||
|
C18,32.3,18.9,31.4,20,31.4z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="checkbox-checked-dark-7-37" transform="translate(36,-1036)" inkscape:label="Ebene 1">
|
||||||
|
<g id="g3981-6-4-97" transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" class="st2">
|
||||||
|
</g>
|
||||||
|
<g id="g4049-2-5" transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)">
|
||||||
|
<g id="g4056-7-6" transform="translate(12.374375,11.531233)">
|
||||||
|
<g id="g3981-0-8" transform="translate(-3,-4.9999826)">
|
||||||
|
<path id="rect3977-39-90" class="st3" d="M8.7,1033.4h3.7c0.4,0,0.7,0.3,0.7,0.7v0.7c0,0.4-0.3,0.7-0.7,0.7H8.7
|
||||||
|
c-0.4,0-0.7-0.3-0.7-0.7v-0.7C8,1033.7,8.3,1033.4,8.7,1033.4z"/>
|
||||||
|
|
||||||
|
<rect id="rect3979-7-60" x="8" y="1030.4" transform="matrix(2.535182e-006 1 -1 2.535182e-006 1043.3618 1019.3593)" class="st3" width="8" height="2"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<rect id="rect4047-81-5" x="6" y="1027.4" transform="matrix(2.535182e-006 1 -1 2.535182e-006 1035.3618 1022.3593)" class="st4" width="1" height="3"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
@ -0,0 +1,55 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" inkscape:version="0.91 r13725" sodipodi:docname="checkbox-checked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||||
|
style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:none;}
|
||||||
|
.st1{fill:#898989;}
|
||||||
|
.st2{opacity:0.85;}
|
||||||
|
.st3{fill:#303030;}
|
||||||
|
.st4{fill:#EEEEEE;fill-opacity:0;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="-7.3847925" inkscape:cy="7.7067432" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="false" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:window-height="723" inkscape:window-maximized="0" inkscape:window-width="1006" inkscape:window-x="358" inkscape:window-y="22" inkscape:zoom="11.313709" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true">
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid2985" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1036.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<g id="checkbox-checked-dark" transform="translate(-36,1036)" inkscape:label="#g10758">
|
||||||
|
<g id="checkbox-unchecked-5-59" transform="translate(19,0)" inkscape:label="#g22047">
|
||||||
|
<g id="sdsd-7-54" inkscape:label="#g21853">
|
||||||
|
<g id="scdsdcd-5-8" transform="translate(0,-30)" inkscape:label="#g14325">
|
||||||
|
<g id="g15812-6-6-1-5-4" transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
|
||||||
|
<g id="g5489-2-9-6-8-8-53-5" transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
|
||||||
|
<g id="g5428-8-1-4-0-0-4-2">
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect id="rect13523-7-11" x="17" y="30.4" class="st0" width="16" height="16"/>
|
||||||
|
<g id="g5400-6-68">
|
||||||
|
<path id="rect5147-9-1-5-7-6-7-4" class="st1" d="M20,31.4h10c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H20c-1.1,0-2-0.9-2-2v-10
|
||||||
|
C18,32.3,18.9,31.4,20,31.4z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="checkbox-checked-dark-7-37" transform="translate(36,-1036)" inkscape:label="Ebene 1">
|
||||||
|
<g id="g3981-6-4-97" transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" class="st2">
|
||||||
|
</g>
|
||||||
|
<g id="g4049-2-5" transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)">
|
||||||
|
<g id="g4056-7-6" transform="translate(12.374375,11.531233)">
|
||||||
|
<g id="g3981-0-8" transform="translate(-3,-4.9999826)">
|
||||||
|
<path id="rect3977-39-90" class="st3" d="M8.7,1033.4h3.7c0.4,0,0.7,0.3,0.7,0.7v0.7c0,0.4-0.3,0.7-0.7,0.7H8.7
|
||||||
|
c-0.4,0-0.7-0.3-0.7-0.7v-0.7C8,1033.7,8.3,1033.4,8.7,1033.4z"/>
|
||||||
|
|
||||||
|
<rect id="rect3979-7-60" x="8" y="1030.4" transform="matrix(2.535182e-006 1 -1 2.535182e-006 1043.3618 1019.3593)" class="st3" width="8" height="2"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<rect id="rect4047-81-5" x="6" y="1027.4" transform="matrix(2.535182e-006 1 -1 2.535182e-006 1035.3618 1022.3593)" class="st4" width="1" height="3"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
@ -0,0 +1,34 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" inkscape:version="0.91 r13725" sodipodi:docname="checkbox-unchecked-focused.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||||
|
style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:none;}
|
||||||
|
.st1{fill:#323232;stroke:#898989;stroke-linejoin:round;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="-7.2080158" inkscape:cy="7.7067432" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="false" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:window-height="723" inkscape:window-maximized="0" inkscape:window-width="1006" inkscape:window-x="358" inkscape:window-y="22" inkscape:zoom="11.313709" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true">
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid2985" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1036.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<g id="checkbox-unchecked-dark" transform="translate(-17,1036)" inkscape:label="#g22047">
|
||||||
|
<g id="sdsd-0-1" inkscape:label="#g21853">
|
||||||
|
<g id="scdsdcd-0-4" transform="translate(0,-30)" inkscape:label="#g14325">
|
||||||
|
<g id="g15812-6-6-1-4-4" transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
|
||||||
|
<g id="g5489-2-9-6-8-8-9-7" transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
|
||||||
|
<g id="g5428-8-1-4-0-0-65-8">
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect id="rect13523-4-0" x="17" y="30.4" class="st0" width="16" height="16"/>
|
||||||
|
<g id="g5400-2-47">
|
||||||
|
<path id="rect5147-9-1-5-7-6-3-70" class="st1" d="M20.5,31.9h9c1.1,0,2,0.9,2,2v9c0,1.1-0.9,2-2,2h-9c-1.1,0-2-0.9-2-2v-9
|
||||||
|
C18.5,32.8,19.4,31.9,20.5,31.9z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,34 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg2" inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" inkscape:version="0.91 r13725" sodipodi:docname="checkbox-unchecked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||||
|
style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:none;}
|
||||||
|
.st1{fill:#323232;stroke:#292929;stroke-linejoin:round;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="-7.3847925" inkscape:cy="7.7067432" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="false" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:window-height="723" inkscape:window-maximized="0" inkscape:window-width="1006" inkscape:window-x="358" inkscape:window-y="22" inkscape:zoom="11.313709" pagecolor="#ffffff" showborder="true" showgrid="true" showguides="true">
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid2985" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1036.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<g id="checkbox-unchecked-dark" transform="translate(-17,1036)" inkscape:label="#g22047">
|
||||||
|
<g id="sdsd-0-1" inkscape:label="#g21853">
|
||||||
|
<g id="scdsdcd-0-4" transform="translate(0,-30)" inkscape:label="#g14325">
|
||||||
|
<g id="g15812-6-6-1-4-4" transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
|
||||||
|
<g id="g5489-2-9-6-8-8-9-7" transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
|
||||||
|
<g id="g5428-8-1-4-0-0-65-8">
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect id="rect13523-4-0" x="17" y="30.4" class="st0" width="16" height="16"/>
|
||||||
|
<g id="g5400-2-47">
|
||||||
|
<path id="rect5147-9-1-5-7-6-3-70" class="st1" d="M20.5,31.9h9c1.1,0,2,0.9,2,2v9c0,1.1-0.9,2-2,2h-9c-1.1,0-2-0.9-2-2v-9
|
||||||
|
C18.5,32.8,19.4,31.9,20.5,31.9z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
38
.themes/Klaus/cinnamon/dark-assets/menu/menu.svg
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg5386" inkscape:version="0.91 r13725" sodipodi:docname="menu.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32"
|
||||||
|
style="enable-background:new 0 0 32 32;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.83;fill:none;stroke:#1C1C1C;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st1{fill:#3C3C3C;}
|
||||||
|
.st2{opacity:0.65;}
|
||||||
|
.st3{opacity:2.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st4{opacity:7.000002e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st5{opacity:0.13;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st6{opacity:0.2;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st7{opacity:0.25;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="10.702765" inkscape:cy="22.873719" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="22.627416" pagecolor="#ffffff" showgrid="false" units="px">
|
||||||
|
<inkscape:grid id="grid5954" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1020.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect4164-4-3" class="st0" d="M6.5,1024.9h19c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2h-19c-1.1,0-2-0.9-2-2v-18
|
||||||
|
C4.5,1025.8,5.4,1024.9,6.5,1024.9z"/>
|
||||||
|
<path id="rect4164" class="st1" d="M6.4,1025.4h19.2c0.8,0,1.4,0.6,1.4,1.4v18.2c0,0.8-0.6,1.4-1.4,1.4H6.4c-0.8,0-1.4-0.6-1.4-1.4
|
||||||
|
v-18.2C5,1026,5.6,1025.4,6.4,1025.4z"/>
|
||||||
|
<g id="g4271" transform="translate(-425.99995,658.36226)" class="st2">
|
||||||
|
<path id="rect4164-4-7-5-3-8-8" class="st3" d="M434.5,362.5h15c4.4,0,8,3.6,8,8v15c0,4.4-3.6,8-8,8h-15c-4.4,0-8-3.6-8-8v-15
|
||||||
|
C426.5,366.1,430.1,362.5,434.5,362.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3-8" class="st4" d="M434.5,363.5h15c3.9,0,7,3.1,7,7v15c0,3.9-3.1,7-7,7h-15c-3.9,0-7-3.1-7-7v-15
|
||||||
|
C427.5,366.6,430.6,363.5,434.5,363.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3" class="st5" d="M434.5,364.5h15c3.3,0,6,2.7,6,6v15c0,3.3-2.7,6-6,6h-15c-3.3,0-6-2.7-6-6v-15
|
||||||
|
C428.5,367.2,431.2,364.5,434.5,364.5z"/>
|
||||||
|
<path id="rect4164-4-7-5" class="st6" d="M434.5,365.5h15c2.8,0,5,2.2,5,5v15c0,2.8-2.2,5-5,5h-15c-2.8,0-5-2.2-5-5v-15
|
||||||
|
C429.5,367.7,431.7,365.5,434.5,365.5z"/>
|
||||||
|
<path id="rect4164-4-7" inkscape:connector-curvature="0" sodipodi:nodetypes="csscssc" class="st7" d="M431.6,388.3
|
||||||
|
c0.7,0.7,1.7,1.2,2.9,1.2h15c1.1,0,2.1-0.5,2.9-1.2c-0.3,0.1-0.5,0.2-0.9,0.2h-19C432.2,388.5,431.9,388.4,431.6,388.3z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
27
.themes/Klaus/cinnamon/dark-assets/menu/submenu.svg
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg3783" inkscape:export-filename="/home/steffen/.local/share/themes/Vertex_Shell/gnome-shell/menu.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" inkscape:version="0.91 r13725" sodipodi:docname="submenu.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 37 18"
|
||||||
|
style="enable-background:new 0 0 37 18;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.15;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="g3027" inkscape:cx="6.5686977" inkscape:cy="6.4384088" inkscape:document-units="px" inkscape:guide-bbox="true" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:showpageshadow="false" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-global="true" inkscape:window-height="718" inkscape:window-maximized="0" inkscape:window-width="1364" inkscape:window-x="0" inkscape:window-y="25" inkscape:zoom="16.000001" pagecolor="#838383" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="8" enabled="true" id="grid4301" originx="0" originy="0" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
<sodipodi:guide id="guide3831" orientation="0,1" position="14.052204,22.065004"></sodipodi:guide>
|
||||||
|
<sodipodi:guide id="guide3835" orientation="0,1" position="14.052204,-3.9349962"></sodipodi:guide>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(-5.9477962,-1025.4272)" inkscape:groupmode="layer" inkscape:label="Calque 1">
|
||||||
|
<g id="g3027" transform="matrix(0,-1,1,0,-1048.3622,1052.3622)">
|
||||||
|
|
||||||
|
<rect id="rect3092" x="3.4" y="1063.8" transform="matrix(-2.535182e-006 -1 1 -2.535182e-006 -1054.875 1090.7478)" class="st0" width="29" height="18"/>
|
||||||
|
|
||||||
|
<rect id="rect3883" x="-5.1" y="1072.3" transform="matrix(-2.535182e-006 -1 1 -2.535182e-006 -1063.375 1082.2478)" class="st0" width="29" height="1"/>
|
||||||
|
|
||||||
|
<rect id="rect3883-1" x="11.9" y="1072.3" transform="matrix(-2.535182e-006 -1 1 -2.535182e-006 -1046.3749 1099.2477)" class="st0" width="29" height="1"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
19
.themes/Klaus/cinnamon/dark-assets/misc/button-box.svg
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg5386" inkscape:version="0.91 r13725" sodipodi:docname="button-box.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 22 19"
|
||||||
|
style="enable-background:new 0 0 22 19;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.95;fill:#393939;enable-background:new ;}
|
||||||
|
.st1{opacity:0.35;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="18.945179" inkscape:cy="17.423975" inkscape:document-units="px" inkscape:object-nodes="true" inkscape:object-paths="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-intersection-paths="true" inkscape:snap-smooth-nodes="true" inkscape:zoom="1" pagecolor="#ffffff" showgrid="true" showguides="false" units="px">
|
||||||
|
<inkscape:grid id="grid5954" originx="-5" originy="-6.000065" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(-5,-1027.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect4145-1" inkscape:connector-curvature="0" sodipodi:nodetypes="csssscc" class="st0" d="M27,1027.4v17.9
|
||||||
|
c0,0.6-0.5,1.1-1.1,1.1H6.1c-0.6,0-1.1-0.5-1.1-1.1v-17.9H27z"/>
|
||||||
|
<rect id="rect4137" x="5" y="1027.4" class="st1" width="22" height="1"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
20
.themes/Klaus/cinnamon/dark-assets/misc/message.svg
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg6621" inkscape:version="0.91 r13725" sodipodi:docname="message.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32"
|
||||||
|
style="enable-background:new 0 0 32 32;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill-opacity:0.1529;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-opacity:0.3804;}
|
||||||
|
.st1{fill:#898989;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="28.080846" inkscape:cy="10.089671" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="5.6" pagecolor="#ffffff" showgrid="true" units="px">
|
||||||
|
<inkscape:grid id="grid7177" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-1020.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect4160" class="st0" d="M2,1020.9h28c0.8,0,1.5,0.7,1.5,1.5v28c0,0.8-0.7,1.5-1.5,1.5H2c-0.8,0-1.5-0.7-1.5-1.5v-28
|
||||||
|
C0.5,1021.5,1.2,1020.9,2,1020.9z"/>
|
||||||
|
<path id="rect4162" inkscape:connector-curvature="0" sodipodi:nodetypes="sccssss" class="st1" d="M2.5,1021.4H3v30H2.5
|
||||||
|
c-0.8,0-1.5-0.7-1.5-1.5v-27C1,1022,1.7,1021.4,2.5,1021.4z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
47
.themes/Klaus/cinnamon/dark-assets/misc/modal.svg
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg5386" inkscape:version="0.91 r13725" sodipodi:docname="modal.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 84"
|
||||||
|
style="enable-background:new 0 0 32 84;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.64;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st1{clip-path:url(#SVGID_2_);fill:#363636;}
|
||||||
|
.st2{opacity:0.65;}
|
||||||
|
.st3{opacity:2.000000e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st4{opacity:7.000000e-002;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st5{opacity:0.13;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st6{opacity:0.2;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
.st7{opacity:0.25;fill:none;stroke:#000000;stroke-linecap:round;enable-background:new ;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="20.862219" inkscape:cy="64.999507" inkscape:document-units="px" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:zoom="22.627416" pagecolor="#c7c7c7" showgrid="true" units="px">
|
||||||
|
<inkscape:grid id="grid5954" type="xygrid"></inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(0,-968.3622)" inkscape:groupmode="layer" inkscape:label="Ebene 1">
|
||||||
|
<path id="rect4164-4-3" class="st0" d="M6.5,972.9h19c1.1,0,2,0.9,2,2v70c0,1.1-0.9,2-2,2h-19c-1.1,0-2-0.9-2-2v-70
|
||||||
|
C4.5,973.8,5.4,972.9,6.5,972.9z"/>
|
||||||
|
<g>
|
||||||
|
<defs>
|
||||||
|
<path id="SVGID_1_" d="M-4,986.4h40c0.8,0,1.5-0.5,1.5-1v-14.7c0-0.6-0.7-1-1.5-1H-4c-0.8,0-1.5,0.5-1.5,1v14.7
|
||||||
|
C-5.5,985.9-4.8,986.4-4,986.4z"/>
|
||||||
|
</defs>
|
||||||
|
<clipPath id="SVGID_2_">
|
||||||
|
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<path id="rect4164" class="st1" d="M6.4,973.4h19.2c0.8,0,1.4,0.6,1.4,1.4v11.6c0,0.8-0.6,1.4-1.4,1.4H6.4c-0.8,0-1.4-0.6-1.4-1.4
|
||||||
|
v-11.6C5,974,5.6,973.4,6.4,973.4z"/>
|
||||||
|
</g>
|
||||||
|
<g id="g4271" transform="translate(-425.99995,606.36226)" class="st2">
|
||||||
|
<path id="rect4164-4-7-5-3-8-8" class="st3" d="M434.5,362.5h15c4.4,0,8,3.6,8,8v67c0,4.4-3.6,8-8,8h-15c-4.4,0-8-3.6-8-8v-67
|
||||||
|
C426.5,366.1,430.1,362.5,434.5,362.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3-8" class="st4" d="M434.5,363.5h15c3.9,0,7,3.1,7,7v67c0,3.9-3.1,7-7,7h-15c-3.9,0-7-3.1-7-7v-67
|
||||||
|
C427.5,366.6,430.6,363.5,434.5,363.5z"/>
|
||||||
|
<path id="rect4164-4-7-5-3" class="st5" d="M434.5,364.5h15c3.3,0,6,2.7,6,6v67c0,3.3-2.7,6-6,6h-15c-3.3,0-6-2.7-6-6v-67
|
||||||
|
C428.5,367.2,431.2,364.5,434.5,364.5z"/>
|
||||||
|
<path id="rect4164-4-7-5" class="st6" d="M434.5,365.5h15c2.8,0,5,2.2,5,5v67c0,2.8-2.2,5-5,5h-15c-2.8,0-5-2.2-5-5v-67
|
||||||
|
C429.5,367.7,431.7,365.5,434.5,365.5z"/>
|
||||||
|
<path id="rect4164-4-7" inkscape:connector-curvature="0" sodipodi:nodetypes="csscssc" class="st7" d="M431.6,440.3
|
||||||
|
c0.7,0.7,1.7,1.2,2.9,1.2h15c1.1,0,2.1-0.5,2.9-1.2c-0.3,0.1-0.5,0.2-0.9,0.2h-19C432.2,440.5,431.9,440.4,431.6,440.3z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
35
.themes/Klaus/cinnamon/dark-assets/switch/switch-off.svg
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg7539" inkscape:version="0.91 r13725" sodipodi:docname="switch-off.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 50 20"
|
||||||
|
style="enable-background:new 0 0 50 20;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#434343;fill-opacity:0;}
|
||||||
|
.st1{fill:#636363;}
|
||||||
|
.st2{fill:#3A3A3A;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="3.8344054" inkscape:cy="11.11566" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:window-height="1032" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="0" inkscape:window-y="23" inkscape:zoom="32.998318" pagecolor="#ffffff" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid3019" originx="-4" originy="2.6171874e-06" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(-120,87.999997)" inkscape:groupmode="layer" inkscape:label="Layer 1">
|
||||||
|
<g id="switch-dark" transform="translate(-886,-418)" inkscape:label="#g4820">
|
||||||
|
<g id="layer1-9-13" transform="matrix(-1,0,0,1,1177,420)" inkscape:label="Layer 1">
|
||||||
|
<g id="switch-active-2-2" transform="translate(120,-116.99998)" inkscape:label="Layer 1">
|
||||||
|
<g id="g3900-12-8" transform="translate(0,-1004.3622)">
|
||||||
|
<rect id="rect5465-3-32-7" y="1053.4" class="st0" width="52" height="-24"/>
|
||||||
|
<path id="rect2987-07-4" class="st1" d="M12,1031.4h28c6.1,0,11,4.5,11,10l0,0c0,5.5-4.9,10-11,10H12c-6.1,0-11-4.5-11-10l0,0
|
||||||
|
C1,1035.8,5.9,1031.4,12,1031.4z"/>
|
||||||
|
<circle id="path3759-7-4" class="st2" cx="41" cy="1041.4" r="9"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path id="path10839-9-8-2-2-5-46" inkscape:connector-curvature="0" class="st2" d="M1043,337h0.8c0,0,0,0,0,0
|
||||||
|
c0.2,0,0.4,0.1,0.5,0.2l1.7,1.7l1.7-1.7c0.2-0.2,0.3-0.2,0.5-0.2h0.8v0.8c0,0.2,0,0.4-0.2,0.6l-1.7,1.7l1.7,1.7
|
||||||
|
c0.1,0.1,0.2,0.3,0.2,0.5v0.8h-0.8c-0.2,0-0.4-0.1-0.5-0.2l-1.7-1.7l-1.7,1.7c-0.1,0.1-0.3,0.2-0.5,0.2h-0.8v-0.8
|
||||||
|
c0-0.2,0.1-0.4,0.2-0.5l1.7-1.7l-1.7-1.7c-0.2-0.1-0.2-0.4-0.2-0.6L1043,337L1043,337z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
37
.themes/Klaus/cinnamon/dark-assets/switch/switch-on.svg
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1"
|
||||||
|
id="svg7539" inkscape:version="0.91 r13725" sodipodi:docname="switch-on.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 50 20"
|
||||||
|
style="enable-background:new 0 0 50 20;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#434343;fill-opacity:0;}
|
||||||
|
.st1{fill:#898989;}
|
||||||
|
.st2{fill:#3A3A3A;}
|
||||||
|
</style>
|
||||||
|
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:bbox-nodes="true" inkscape:bbox-paths="true" inkscape:current-layer="layer1" inkscape:cx="26.273653" inkscape:cy="16.301439" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:guide-bbox="true" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:snap-bbox="true" inkscape:snap-bbox-edge-midpoints="true" inkscape:snap-bbox-midpoints="false" inkscape:window-height="1032" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="0" inkscape:window-y="23" inkscape:zoom="11.666667" pagecolor="#ffffff" showgrid="true" showguides="true">
|
||||||
|
|
||||||
|
<inkscape:grid empspacing="5" enabled="true" id="grid3019" originx="-4" originy="2.6171874e-06" snapvisiblegridlinesonly="true" type="xygrid" visible="true">
|
||||||
|
</inkscape:grid>
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<g id="layer1" transform="translate(-120,87.999997)" inkscape:groupmode="layer" inkscape:label="Layer 1">
|
||||||
|
<g id="switch-active-dark" transform="translate(-886,-448)" inkscape:label="#g4829">
|
||||||
|
<g id="layer1-9-0-51" transform="translate(885,450)" inkscape:label="Layer 1">
|
||||||
|
<g id="switch-active-8-8" transform="translate(120,-116.99998)" inkscape:label="Layer 1">
|
||||||
|
<g id="g3900-1-87-0" transform="translate(0,-1004.3622)">
|
||||||
|
<rect id="rect5465-3-3-3" y="1029.4" class="st0" width="52" height="24"/>
|
||||||
|
<path id="rect2987-0-8-7" class="st1" d="M12,1031.4h28c6.1,0,11,4.5,11,10l0,0c0,5.5-4.9,10-11,10H12c-6.1,0-11-4.5-11-10l0,0
|
||||||
|
C1,1035.8,5.9,1031.4,12,1031.4z"/>
|
||||||
|
<circle id="path3759-0-75" class="st2" cx="41" cy="1041.4" r="9"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="g4816-8" transform="translate(-1.0003162,0)">
|
||||||
|
<path id="rect3977-39-2-13" class="st2" d="M1014.2,369.2l2.6,2.6c0.3,0.3,0.3,0.7,0,0.9l-0.5,0.5c-0.3,0.3-0.7,0.3-0.9,0
|
||||||
|
l-2.6-2.6c-0.3-0.3-0.3-0.7,0-0.9l0.5-0.5C1013.5,368.9,1014,368.9,1014.2,369.2z"/>
|
||||||
|
|
||||||
|
<rect id="rect3979-7-0-65" x="1014" y="369.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 36.4326 828.2335)" class="st2" width="8" height="2"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
372
.themes/Klaus/cinnamon/scss/_extends.scss
Normal file
@ -0,0 +1,372 @@
|
|||||||
|
// extend-elements
|
||||||
|
|
||||||
|
// to bottom
|
||||||
|
%bg-grad-to-bottom {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $dark_bg_grad;
|
||||||
|
background-gradient-end: $light_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover to bottom
|
||||||
|
%hover-bg-grad-to-bottom {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $dark_hover_bg_grad;
|
||||||
|
background-gradient-end: $light_hover_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// button to top
|
||||||
|
%button-bg-grad-to-top {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $light_button_bg_grad;
|
||||||
|
background-gradient-end: $dark_button_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover button to top
|
||||||
|
%hover-button-bg-grad-to-top {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $light_hover_button_bg_grad;
|
||||||
|
background-gradient-end: $dark_hover_button_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// to top
|
||||||
|
%bg-grad-to-top {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $light_bg_grad;
|
||||||
|
background-gradient-end: $dark_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover to top
|
||||||
|
%hover-bg-grad-to-top {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $light_hover_bg_grad;
|
||||||
|
background-gradient-end: $dark_hover_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// selected to bottom
|
||||||
|
%selected-bg-grad-to-bottom {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $dark_selected_bg_grad;
|
||||||
|
background-gradient-end: $light_selected_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// selected to top
|
||||||
|
%selected-bg-grad-to-top {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $light_selected_bg_grad;
|
||||||
|
background-gradient-end: $dark_selected_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover selected to bottom
|
||||||
|
%hover-selected-grad-to-bottom {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $dark_hover_selected_grad;
|
||||||
|
background-gradient-end: $light_hover_selected_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover selected to top
|
||||||
|
%hover-selected-grad-to-top {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $light_hover_selected_grad;
|
||||||
|
background-gradient-end: $dark_hover_selected_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// to right
|
||||||
|
%bg-grad-to-right {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: $dark_bg_grad;
|
||||||
|
background-gradient-end: $light_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// to left
|
||||||
|
%bg-grad-to-left {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: $light_bg_grad;
|
||||||
|
background-gradient-end: $dark_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover to right
|
||||||
|
%hover-bg-grad-to-right {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: $dark_hover_bg_grad;
|
||||||
|
background-gradient-end: $light_hover_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover to left
|
||||||
|
%hover-bg-grad-to-left {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: $light_hover_bg_grad;
|
||||||
|
background-gradient-end: $dark_hover_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// selected to right
|
||||||
|
%selected-bg-grad-to-right {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: $dark_selected_bg_grad;
|
||||||
|
background-gradient-end: $light_selected_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// selected to left
|
||||||
|
%selected-bg-grad-to-left {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: $light_selected_bg_grad;
|
||||||
|
background-gradient-end: $dark_selected_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover selected to right
|
||||||
|
%hover-selected-grad-to-right {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: $dark_hover_selected_grad;
|
||||||
|
background-gradient-end: $light_hover_selected_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover selected to left
|
||||||
|
%hover-selected-grad-to-left {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: $light_hover_selected_grad;
|
||||||
|
background-gradient-end: $dark_hover_selected_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// tooltip to top
|
||||||
|
%tooltip-bg-grad-to-top {
|
||||||
|
background-gradient-direction: vertical;
|
||||||
|
background-gradient-start: $light_tooltip_bg_grad;
|
||||||
|
background-gradient-end: $dark_tooltip_bg_grad;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .osd-window, .info-osd, .workspace-osd
|
||||||
|
%osd-shared {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .slider, .sound-player .slider, .popup-slider-menu-item
|
||||||
|
%slider-shared {
|
||||||
|
height: 1.2em;
|
||||||
|
min-width: 15em;
|
||||||
|
color: $button_bg_color;
|
||||||
|
-slider-height: 2px;
|
||||||
|
-slider-background-color: $scrollbar_bg_color;
|
||||||
|
-slider-border-color: $interior_border;
|
||||||
|
-slider-active-background-color: $scrollbar_slider_hover_color;
|
||||||
|
-slider-active-border-color: $selected_border;
|
||||||
|
-slider-border-width: 1px;
|
||||||
|
-slider-border-radius: $roundness;
|
||||||
|
-slider-handle-radius: 8px;
|
||||||
|
-slider-handle-border-color: $button_border;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .separator, .popup-seperator-menu-item
|
||||||
|
%separator-shared {
|
||||||
|
-gradient-height: 3px;
|
||||||
|
-gradient-start: $selected_bg_color;
|
||||||
|
-gradient-end: $dark_bg_color;
|
||||||
|
-margin-horizontal: 4px;
|
||||||
|
height: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// #menu-search-entry, .run-dialog-entry, #notification StEntry
|
||||||
|
%dialog-entry {
|
||||||
|
@extend %tooltip-bg-grad-to-top;
|
||||||
|
|
||||||
|
padding: $spacing_plus2;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $tooltip_fg_color;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
selection-background-color: $selected_bg_color;
|
||||||
|
selected-color: $selected_fg_color;
|
||||||
|
caret-color: $primary_caret_color;
|
||||||
|
caret-size: 0.1em;
|
||||||
|
width: 250px;
|
||||||
|
height: 1.5em;
|
||||||
|
transition-duration: 150;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .desklet-with-borders, .desklet-with-borders-and-header, .desklet-header, .photoframe-box
|
||||||
|
%desklet-shared {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding: 8px;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .calendar-change-month-back, .calendar-change-month-forward
|
||||||
|
%calendar-shared {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
border-radius: $roundness;
|
||||||
|
transition-duration: 150;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .notification-button, .notification-icon-button, .modal-dialog-button, .sound-player-overlay StButton, .keyboard-key
|
||||||
|
%shared-button {
|
||||||
|
@extend %button-bg-grad-to-top;
|
||||||
|
|
||||||
|
border: 1px solid $button_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
text-align: center;
|
||||||
|
color: $button_fg_color;
|
||||||
|
transition-duration: 150;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button:hover, .sound-player-overlay StButton:hover, .keyboard-key:hover
|
||||||
|
%shared-button-hover {
|
||||||
|
@extend %hover-button-bg-grad-to-top;
|
||||||
|
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .notification-button:active, .notification-icon-button:active, .modal-dialog-button:active, .modal-dialog-button:pressed, .sound-player-overlay StButton:active, .keyboard-key:active
|
||||||
|
%shared-button-active {
|
||||||
|
@extend %selected-bg-grad-to-bottom;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .menu .popup-combo-menu
|
||||||
|
%shared-menu {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
padding: 8px;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .menu-application-button-label, .menu-category-button-label
|
||||||
|
%menu-button-label-shared {
|
||||||
|
&:ltr {
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
padding-right: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .popup-menu-item, .popup-combobox-item, .menu-favorites-button, .menu-places-button, .menu-category-button, .menu-category-button-greyed, .menu-category-button-selected
|
||||||
|
%menu-buttons-shared {
|
||||||
|
//min-height: 22px; //setting a min height accross the board for all menu types (menu entries with an application icon are hardcoded to this min-height) causes display issues in cinnamon :-(
|
||||||
|
padding: $spacing_plus2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .show-processes-dialog-subject, .mount-question-dialog-subject
|
||||||
|
%shared-dialogs-subject {
|
||||||
|
font-weight: bold;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-left: 17px;
|
||||||
|
padding-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .show-processes-dialog-subject:rtl, .mount-question-dialog-subject:rtl
|
||||||
|
%shared-dialogs-subject-rtl {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .show-processes-dialog-description, .mount-question-dialog-description
|
||||||
|
%shared-dialogs-description {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding-left: 17px;
|
||||||
|
width: 28em;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .menu-applications-inner-box StScrollView, .starkmenu-favorites-box .menu-context-menu
|
||||||
|
%menu-context-shared {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
padding: 8px;
|
||||||
|
margin: 8px 0;
|
||||||
|
border-radius: $roundness;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
StIcon {
|
||||||
|
&:ltr {
|
||||||
|
padding-right: 4px;
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .panel-top .window-list-item-box:active, .panel-top .window-list-item-box:checked, .panel-top .window-list-item-box:focus
|
||||||
|
%panel-top-shared {
|
||||||
|
@extend %selected-bg-grad-to-top;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .panel-bottom .windows-list-item-box:active, .panel-bottom .window-list-item-box:checked, .panel-bottom .window-list-item-box:focus
|
||||||
|
%panel-bottom-shared {
|
||||||
|
@extend %selected-bg-grad-to-bottom;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .panel-left .window-list-item-box:active, .panel-left .window-list-item-box:checked, .panel-left .window-list-item-box:focus
|
||||||
|
%panel-left-shared {
|
||||||
|
@extend %selected-bg-grad-to-left;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .panel-right .windows-list-item-box:active, .panel-right .window-list-item-box:checked, .panel-right .window-list-item-box:focus
|
||||||
|
%panel-right-shared {
|
||||||
|
@extend %selected-bg-grad-to-right;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .check-box StBin, .check-box:focus StBin
|
||||||
|
%check-box-shared {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
background-image: url(assets/checkbox-off.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .radiobutton StBin, .radiobutton:focus StBin
|
||||||
|
%radiobutton-shared {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
background-image: url(assets/radiobutton-off.svg);
|
||||||
|
border-radius: $roundness;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .tile-preview, .tile-hud
|
||||||
|
%tile-shared {
|
||||||
|
background-color: $dark_bg_color_trans;
|
||||||
|
border: 2px solid $exterior_border;
|
||||||
|
}
|
||||||
|
|
||||||
|
// used in selectors
|
||||||
|
// .tile-preview.snap, .tile-hud.snap
|
||||||
|
%tile-shared-snap {
|
||||||
|
background-color: $dark_bg_color_trans;
|
||||||
|
border: 2px solid $selected_border;
|
||||||
|
}
|
84
.themes/Klaus/cinnamon/scss/_global.scss
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
// scss-lint:disable ColorVariable
|
||||||
|
|
||||||
|
// main colors used in theme
|
||||||
|
// 1.0 < 1 will result in most cinnamon surfaces being transparent
|
||||||
|
$button_bg_color: #1d2021;
|
||||||
|
$button_fg_color: #d5c4a1;
|
||||||
|
$selected_bg_color: #b8bb26;
|
||||||
|
$selected_fg_color: #1d2021;
|
||||||
|
$tooltip_bg_color: #3c3836;
|
||||||
|
$tooltip_fg_color: #ebdbb2;
|
||||||
|
$dark_bg_color: fade-out(#1d2021, 1 - 1.0);
|
||||||
|
$dark_fg_color: #d5c4a1;
|
||||||
|
|
||||||
|
// an always transparent color used for expo & scale views and the lightbox effect when cinnamon is showing an OSD.
|
||||||
|
$dark_bg_color_trans: fade-out(#1d2021, 1 - (1.0 / 2));
|
||||||
|
|
||||||
|
// used to calculate gradients for gradient values > 0
|
||||||
|
$lighten_amount: 1 + (0.0 / 2);
|
||||||
|
$darken_amount: 1 - (0.0 / 2);
|
||||||
|
|
||||||
|
// main background surface gradient start and end colors
|
||||||
|
$light_bg_grad: if($lighten_amount > 1, lighten($dark_bg_color, ($lighten_amount - 1) * lightness($dark_bg_color)), $dark_bg_color);
|
||||||
|
$dark_bg_grad: if($darken_amount < 1, darken($dark_bg_color, (1 - $darken_amount) * lightness($dark_bg_color)), $dark_bg_color);
|
||||||
|
|
||||||
|
// hovered background surface gradient start and end colors - used for window list
|
||||||
|
$hover_bg_color: lighten($dark_bg_color, .05 * lightness($dark_bg_color));
|
||||||
|
$light_hover_bg_grad: if($lighten_amount > 1, lighten($hover_bg_color, ($lighten_amount - 1) * lightness($hover_bg_color)), $hover_bg_color);
|
||||||
|
$dark_hover_bg_grad: if($darken_amount < 1, darken($hover_bg_color, (1 - $darken_amount) * lightness($hover_bg_color)), $hover_bg_color);
|
||||||
|
|
||||||
|
// selected background surface gradient start and end colors - used for window list & buttons
|
||||||
|
$light_selected_bg_grad: if($lighten_amount > 1, lighten($selected_bg_color, ($lighten_amount - 1) * lightness($selected_bg_color)), $selected_bg_color);
|
||||||
|
$dark_selected_bg_grad: if($darken_amount < 1, darken($selected_bg_color, (1 - $darken_amount) * lightness($selected_bg_color)), $selected_bg_color);
|
||||||
|
|
||||||
|
// hovered selected background surface gradient start and end colors - used for window list
|
||||||
|
$hover_selected_color: lighten($selected_bg_color, .05 * lightness($selected_bg_color));
|
||||||
|
$light_hover_selected_grad: if($lighten_amount > 1, lighten($hover_selected_color, ($lighten_amount - 1) * lightness($hover_selected_color)), $hover_selected_color);
|
||||||
|
$dark_hover_selected_grad: if($darken_amount < 1, darken($hover_selected_color, (1 - $darken_amount) * lightness($hover_selected_color)), $hover_selected_color);
|
||||||
|
|
||||||
|
// button background surface gradient start and end colors - used for buttons
|
||||||
|
$light_button_bg_grad: if($lighten_amount > 1, lighten($button_bg_color, ($lighten_amount - 1) * lightness($button_bg_color)), $button_bg_color);
|
||||||
|
$dark_button_bg_grad: if($darken_amount < 1, darken($button_bg_color, (1 - $darken_amount) * lightness($button_bg_color)), $button_bg_color);
|
||||||
|
|
||||||
|
// hovered button background surface gradient start and end colors - used for buttons
|
||||||
|
$hover_button_bg: lighten($button_bg_color, .05 * lightness($button_bg_color));
|
||||||
|
$light_hover_button_bg_grad: if($lighten_amount > 1, lighten($hover_button_bg, ($lighten_amount - 1) * lightness($hover_button_bg)), $hover_button_bg);
|
||||||
|
$dark_hover_button_bg_grad: if($darken_amount < 1, darken($hover_button_bg, (1 - $darken_amount) * lightness($hover_button_bg)), $hover_button_bg);
|
||||||
|
|
||||||
|
// tooltip background surface gradient start and end colors - used for tooltips
|
||||||
|
$light_tooltip_bg_grad: if($lighten_amount > 1, lighten($tooltip_bg_color, ($lighten_amount - 1) * lightness($tooltip_bg_color)), $tooltip_bg_color);
|
||||||
|
$dark_tooltip_bg_grad: if($darken_amount < 1, darken($tooltip_bg_color, (1 - $darken_amount) * lightness($tooltip_bg_color)), $tooltip_bg_color);
|
||||||
|
|
||||||
|
// borders used throughout theme buttons also use selected_borders_color
|
||||||
|
$selected_border: mix($dark_bg_color, $selected_bg_color, if(lightness($dark_bg_color) < 50%, 18%, 10%));
|
||||||
|
$border_strength: if(lightness($dark_fg_color) > 50, .1, .2);
|
||||||
|
$interior_border: fade-out($dark_fg_color, 0.88 - $border_strength);
|
||||||
|
$exterior_border: mix($dark_bg_color, $dark_fg_color, (30 + ($border_strength * 100)));
|
||||||
|
|
||||||
|
// decoration for buttons
|
||||||
|
$button_border_strength: if(lightness($button_fg_color) > 50, .1, .2);
|
||||||
|
$button_border: fade-out($button_fg_color, 0.88 - $button_border_strength);
|
||||||
|
|
||||||
|
// scrollbar colors
|
||||||
|
$scrollbar_bg_color: darken($dark_bg_color, 5%);
|
||||||
|
$scrollbar_slider_color: mix($dark_bg_color, $dark_fg_color, 20%);
|
||||||
|
$scrollbar_slider_hover_color: mix($dark_bg_color, $selected_bg_color, 20%);
|
||||||
|
|
||||||
|
// caret colors for dialog entrys
|
||||||
|
$primary_caret_color: #fbf1c7;
|
||||||
|
|
||||||
|
// other colors used in the theme
|
||||||
|
$link_color: #83a598;
|
||||||
|
$success_color: #b8bb26;
|
||||||
|
$warning_color: #fabd2f;
|
||||||
|
$error_color: #fb4934;
|
||||||
|
$info_fg_color: #1d2021;
|
||||||
|
$info_bg_color: #83a598;
|
||||||
|
|
||||||
|
// used for border-radius throughout theme
|
||||||
|
$roundness: 2px;
|
||||||
|
|
||||||
|
// used for buttons, entrys, panel spacing, and menu item spacing.
|
||||||
|
$spacing: 3px;
|
||||||
|
$spacing_plus2: (3 + 2) + px;
|
||||||
|
|
14
.themes/Klaus/cinnamon/scss/cinnamon.scss
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
@import "_global";
|
||||||
|
@import "_extends";
|
||||||
|
|
||||||
|
@import "sections/_stage";
|
||||||
|
@import "sections/_menu";
|
||||||
|
@import "sections/_panel";
|
||||||
|
@import "sections/_calendar";
|
||||||
|
@import "sections/_accessibility";
|
||||||
|
@import "sections/_notifications";
|
||||||
|
@import "sections/_dialogs";
|
||||||
|
@import "sections/_desklets";
|
||||||
|
@import "sections/_alt-tab";
|
||||||
|
@import "sections/_overview";
|
||||||
|
@import "sections/_tile-hud";
|
46
.themes/Klaus/cinnamon/scss/sections/_accessibility.scss
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
// on screen keyboard
|
||||||
|
#keyboard {
|
||||||
|
background-color: $dark_bg_color_trans;
|
||||||
|
}
|
||||||
|
.keyboard-key {
|
||||||
|
@extend %shared-button;
|
||||||
|
|
||||||
|
&:grayed {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
border-color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
&:checked {
|
||||||
|
border-color: $selected_border;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
@extend %shared-button-hover;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
@extend %shared-button-active;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.keyboard-layout {
|
||||||
|
spacing: 8px;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
.keyboard-row {
|
||||||
|
spacing: 16px;
|
||||||
|
}
|
||||||
|
.keyboard-subkeys {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding: 4px;
|
||||||
|
-arrow-border-radius: $roundness;
|
||||||
|
-arrow-background-color: $dark_bg_color;
|
||||||
|
-arrow-border-width: 1px;
|
||||||
|
-arrow-border-color: $dark_fg_color;
|
||||||
|
-arrow-base: 16px;
|
||||||
|
-arrow-rise: 8px;
|
||||||
|
-boxpointer-gap: 4px;
|
||||||
|
}
|
||||||
|
// desktop zoom feature
|
||||||
|
.magnifier-zoom-region {
|
||||||
|
border: 3px solid $exterior_border;
|
||||||
|
&.full-screen {
|
||||||
|
border-width: 0;
|
||||||
|
}
|
||||||
|
}
|
66
.themes/Klaus/cinnamon/scss/sections/_alt-tab.scss
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
// non 3D alt-tab options
|
||||||
|
#altTabPopup {
|
||||||
|
padding: 8px;
|
||||||
|
spacing: 16px;
|
||||||
|
}
|
||||||
|
.switcher-list {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
border-radius: $roundness;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
padding: 16px;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
.item-box {
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: $roundness;
|
||||||
|
&:selected {
|
||||||
|
@extend %selected-bg-grad-to-bottom;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.thumbnail-box {
|
||||||
|
padding: 2px;
|
||||||
|
spacing: 4px;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
.thumbnail {
|
||||||
|
min-width: 20em;
|
||||||
|
}
|
||||||
|
.separator {
|
||||||
|
width: 1px;
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.switcher-list-item-container {
|
||||||
|
spacing: 8px;
|
||||||
|
}
|
||||||
|
.thumbnail-scroll-gradient-left {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: rgba(51, 51, 51, 1.0);
|
||||||
|
background-gradient-end: rgba(51, 51, 51, 0);
|
||||||
|
border-radius: $roundness;
|
||||||
|
border-radius-topright: 0;
|
||||||
|
border-radius-bottomright: 0;
|
||||||
|
width: 60px;
|
||||||
|
}
|
||||||
|
.thumbnail-scroll-gradient-right {
|
||||||
|
background-gradient-direction: horizontal;
|
||||||
|
background-gradient-start: rgba(51, 51, 51, 0);
|
||||||
|
background-gradient-end: rgba(51, 51, 51, 1.0);
|
||||||
|
border-radius: $roundness;
|
||||||
|
border-radius-topleft: 0;
|
||||||
|
border-radius-bottomleft: 0;
|
||||||
|
width: 60px;
|
||||||
|
}
|
||||||
|
.switcher-arrow {
|
||||||
|
border-color: rgba(0,0,0,0);
|
||||||
|
color: $dark_fg_color;
|
||||||
|
&:highlighted {
|
||||||
|
border-color: rgba(0,0,0,0);
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.switcher-preview-backdrop {
|
||||||
|
background-color: rgba(25,25,25,0.65);
|
||||||
|
}
|
120
.themes/Klaus/cinnamon/scss/sections/_calendar.scss
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
// the calendar displayed by the calendar applet is a heavily modified menu and inherits from the .menu selectosr
|
||||||
|
// indivudual elements within the menu can be themed seperately with these selectors
|
||||||
|
.calendar {
|
||||||
|
padding: 1em 1.75em;
|
||||||
|
spacing-rows: 1px;
|
||||||
|
spacing-columns: 5px;
|
||||||
|
}
|
||||||
|
// also covers the year label
|
||||||
|
.calendar-month-label {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
font-size: 0.8em;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border-radius: $roundness;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.calendar-change-month-back {
|
||||||
|
@extend %calendar-shared;
|
||||||
|
|
||||||
|
border: 1px solid transparent;
|
||||||
|
background-image: url(assets/calendar-arrow-left.svg);
|
||||||
|
&:rtl {
|
||||||
|
background-image: url(assets/calendar-arrow-right.svg);
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
border: 1px solid $selected_bg_color;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.calendar-change-month-forward {
|
||||||
|
@extend %calendar-shared;
|
||||||
|
|
||||||
|
border: 1px solid transparent;
|
||||||
|
background-image: url(assets/calendar-arrow-right.svg);
|
||||||
|
&:rtl {
|
||||||
|
background-image: url(assets/calendar-arrow-left.svg);
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
border: 1px solid $selected_bg_color;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.datemenu-date-label {
|
||||||
|
padding: 1em 1.75em;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.calendar-day-base {
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: center;
|
||||||
|
width: 2.4em;
|
||||||
|
height: 1.8em;
|
||||||
|
border-radius: $roundness;
|
||||||
|
&:active {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.calendar-day-heading {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding-top: 0.9em;
|
||||||
|
}
|
||||||
|
.calendar-week-number {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
font-weight: bold;
|
||||||
|
padding-top: 0.6em;
|
||||||
|
}
|
||||||
|
.calendar-day {
|
||||||
|
&:ltr {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.calendar-day-top {
|
||||||
|
&:ltr {
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.calendar-day-left {
|
||||||
|
&:ltr {
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.calendar-work-day {
|
||||||
|
}
|
||||||
|
.calendar-nonwork-day {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
// this is always is an active state
|
||||||
|
.calendar-today {
|
||||||
|
@extend %selected-bg-grad-to-bottom;
|
||||||
|
|
||||||
|
font-weight: bold;
|
||||||
|
&:active {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.calendar-other-month-day {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
// this is always is an active state
|
||||||
|
.calendar-day-with-events {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
font-weight: bold;
|
||||||
|
&:active {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
65
.themes/Klaus/cinnamon/scss/sections/_desklets.scss
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
// desklets - the base .desklet selector is for 'undecorated' desklets however some subtle background themeing is desirable
|
||||||
|
// to maintain visibility irrespctive of wallpaper and to allow for the highlighting scheme to work
|
||||||
|
.desklet {
|
||||||
|
font-size: 0.9em;
|
||||||
|
padding: 8px;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
background-color: $dark_bg_color_trans;
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// these do not inherit from .desklet
|
||||||
|
.desklet-with-borders {
|
||||||
|
@extend %desklet-shared;
|
||||||
|
|
||||||
|
font-size: 0.9em;
|
||||||
|
border-radius: $roundness;
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.desklet-with-borders-and-header {
|
||||||
|
@extend %desklet-shared;
|
||||||
|
|
||||||
|
font-size: 0.9em;
|
||||||
|
border-radius-bottomleft: $roundness;
|
||||||
|
border-radius-bottomright: $roundness;
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.desklet-header {
|
||||||
|
@extend %desklet-shared;
|
||||||
|
|
||||||
|
font-size: 1.2em;
|
||||||
|
border-radius-topleft: $roundness;
|
||||||
|
border-radius-topright: $roundness;
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.photoframe-box {
|
||||||
|
@extend %desklet-shared;
|
||||||
|
|
||||||
|
border-radius: $roundness;
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.desklet-drag-placeholder {
|
||||||
|
border: 2px solid $selected_bg_color;
|
||||||
|
background-color: $dark_bg_color_trans;
|
||||||
|
border-radius: $roundness;
|
||||||
|
}
|
||||||
|
.launcher {
|
||||||
|
padding: 1px;
|
||||||
|
transition-duration: 150;
|
||||||
|
.icon-box {
|
||||||
|
padding-top: 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// inherits font characteristics from .desklet-header
|
||||||
|
.clock-desklet-label {
|
||||||
|
}
|
201
.themes/Klaus/cinnamon/scss/sections/_dialogs.scss
Normal file
@ -0,0 +1,201 @@
|
|||||||
|
// on screen messages and input boxes
|
||||||
|
.modal-dialog {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding: 16px 20px;
|
||||||
|
}
|
||||||
|
.modal-dialog-button-box {
|
||||||
|
spacing: 16px;
|
||||||
|
}
|
||||||
|
.modal-dialog-button {
|
||||||
|
@extend %shared-button;
|
||||||
|
|
||||||
|
min-width: 5em;
|
||||||
|
min-height: 1em;
|
||||||
|
padding: $spacing_plus2;
|
||||||
|
&:hover {
|
||||||
|
@extend %shared-button-hover;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
@extend %shared-button-active;
|
||||||
|
}
|
||||||
|
&:pressed {
|
||||||
|
@extend %shared-button-active;
|
||||||
|
}
|
||||||
|
&:disabled {
|
||||||
|
color: rgb(60, 60, 60);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// run dialog (ALT-F2)
|
||||||
|
.run-dialog-label {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
.run-dialog-error-label {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
.run-dialog-error-box {
|
||||||
|
padding-top: 15px;
|
||||||
|
spacing: 5px;
|
||||||
|
}
|
||||||
|
.run-dialog-completion-box {
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
.run-dialog-entry {
|
||||||
|
@extend %dialog-entry;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.run-dialog {
|
||||||
|
border-radius: $roundness;
|
||||||
|
padding: 16px 20px;
|
||||||
|
}
|
||||||
|
// removable media dialogs
|
||||||
|
.cinnamon-mount-operation-icon {
|
||||||
|
icon-size: 4.8em;
|
||||||
|
}
|
||||||
|
.mount-password-reask {
|
||||||
|
color: $warning_color;
|
||||||
|
}
|
||||||
|
.show-processes-dialog {
|
||||||
|
spacing: 24px;
|
||||||
|
}
|
||||||
|
.mount-question-dialog {
|
||||||
|
spacing: 24px;
|
||||||
|
}
|
||||||
|
.show-processes-dialog-subject {
|
||||||
|
@extend %shared-dialogs-subject;
|
||||||
|
|
||||||
|
&:rtl {
|
||||||
|
@extend %shared-dialogs-subject-rtl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.mount-question-dialog-subject {
|
||||||
|
@extend %shared-dialogs-subject;
|
||||||
|
|
||||||
|
&:rtl {
|
||||||
|
@extend %shared-dialogs-subject-rtl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.show-processes-dialog-description {
|
||||||
|
@extend %shared-dialogs-description;
|
||||||
|
|
||||||
|
&:rtl {
|
||||||
|
padding-right: 17px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.mount-question-dialog-description {
|
||||||
|
@extend %shared-dialogs-description;
|
||||||
|
|
||||||
|
&:rtl {
|
||||||
|
padding-right: 17px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.show-processes-dialog-app-list {
|
||||||
|
max-height: 200px;
|
||||||
|
padding-top: 24px;
|
||||||
|
padding-left: 49px;
|
||||||
|
padding-right: 32px;
|
||||||
|
&:rtl {
|
||||||
|
padding-right: 49px;
|
||||||
|
padding-left: 32px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.show-processes-dialog-app-list-item {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
&:hover {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
&:ltr {
|
||||||
|
padding-right: 1em;
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
padding-left: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.show-processes-dialog-app-list-item-icon {
|
||||||
|
&:ltr {
|
||||||
|
padding-right: 17px;
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
padding-left: 17px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.show-processes-dialog-app-list-item-name {
|
||||||
|
}
|
||||||
|
// displayed when media keys are pressed.
|
||||||
|
.osd-window {
|
||||||
|
@extend %osd-shared;
|
||||||
|
|
||||||
|
spacing: 1em;
|
||||||
|
padding: 16px;
|
||||||
|
.level {
|
||||||
|
height: 0.7em;
|
||||||
|
border-radius: 0.3em;
|
||||||
|
background-color: $scrollbar_bg_color;
|
||||||
|
}
|
||||||
|
.level-bar {
|
||||||
|
border-radius: 0.3em;
|
||||||
|
background-color: $scrollbar_slider_hover_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.info-osd, .workspace-osd, .overview-empty-placeholder {
|
||||||
|
@extend %osd-shared;
|
||||||
|
|
||||||
|
font-size: 1.5em;
|
||||||
|
text-align: center;
|
||||||
|
padding: 8px 10px;
|
||||||
|
}
|
||||||
|
// this is an full screen overlay that is displayed with any cinnamon OSD or modal dialog which needs to always be semi transparent
|
||||||
|
.lightbox {
|
||||||
|
background-color: $dark_bg_color_trans;
|
||||||
|
}
|
||||||
|
// applet 'about' OSDs - inherits from modal dialogs
|
||||||
|
.about-content {
|
||||||
|
min-width: 250px;
|
||||||
|
min-height: 150px;
|
||||||
|
spacing: 8px;
|
||||||
|
padding-bottom: 16px;
|
||||||
|
}
|
||||||
|
.about-title {
|
||||||
|
font-size: 1.4em;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.about-uuid {
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
.about-icon {
|
||||||
|
padding-right: 20px;
|
||||||
|
}
|
||||||
|
.about-scrollBox {
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
}
|
||||||
|
.about-scrollBox-innerBox {
|
||||||
|
padding: 1.2em;
|
||||||
|
spacing: 1.2em;
|
||||||
|
}
|
||||||
|
.about-description {
|
||||||
|
padding-top: 4px;
|
||||||
|
}
|
||||||
|
.about-version {
|
||||||
|
padding-left: 7px;
|
||||||
|
}
|
||||||
|
// dialog box for the cinnamon debug utility
|
||||||
|
#LookingGlassDialog {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
spacing: 4px;
|
||||||
|
padding: 8px;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
238
.themes/Klaus/cinnamon/scss/sections/_menu.scss
Normal file
@ -0,0 +1,238 @@
|
|||||||
|
.menu {
|
||||||
|
@extend %shared-menu;
|
||||||
|
|
||||||
|
min-width: 100px;
|
||||||
|
margin: 4px;
|
||||||
|
}
|
||||||
|
// scale view right click menu
|
||||||
|
.popup-combo-menu {
|
||||||
|
@extend %shared-menu;
|
||||||
|
}
|
||||||
|
.popup-menu-arrow {
|
||||||
|
icon-size: 1.14em;
|
||||||
|
}
|
||||||
|
// applet submenus
|
||||||
|
// the margin here causes the 'bounce' on opening the sub menu
|
||||||
|
// does StScrollBar need to be here? No as long as it isnt themed differently to staging
|
||||||
|
.popup-sub-menu {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
.popup-menu-content {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
// individual menu entries are themed here
|
||||||
|
.popup-menu-item {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
|
||||||
|
color: $dark_fg_color;
|
||||||
|
spacing: .5em;
|
||||||
|
&:active {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
&:insensitive {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.popup-combobox-item {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
}
|
||||||
|
// sliders and separators in menus
|
||||||
|
.popup-separator-menu-item {
|
||||||
|
@extend %separator-shared;
|
||||||
|
|
||||||
|
-gradient-direction: horizontal;
|
||||||
|
}
|
||||||
|
.popup-slider-menu-item {
|
||||||
|
@extend %slider-shared;
|
||||||
|
}
|
||||||
|
.popup-device-menu-item {
|
||||||
|
spacing: .5em;
|
||||||
|
}
|
||||||
|
.popup-inactive-menu-item {
|
||||||
|
font-style: italic;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
.popup-subtitle-menu-item {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
.popup-menu-icon {
|
||||||
|
icon-size: 1.14em;
|
||||||
|
}
|
||||||
|
.popup-menu-item-dot {
|
||||||
|
}
|
||||||
|
.popup-submenu-menu-item:open {
|
||||||
|
}
|
||||||
|
.popup-alternating-menu-item:alternate {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
// toggles in menus
|
||||||
|
.toggle-switch {
|
||||||
|
width: 64px;
|
||||||
|
height: 22px;
|
||||||
|
}
|
||||||
|
.toggle-switch-us {
|
||||||
|
background-image: url(assets/toggle-off-us.svg);
|
||||||
|
&:checked {
|
||||||
|
background-image: url(assets/toggle-on-us.svg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.toggle-switch-intl {
|
||||||
|
background-image: url(assets/toggle-off-intl.svg);
|
||||||
|
&:checked {
|
||||||
|
background-image: url(assets/toggle-on-intl.svg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.nm-menu-item-icons {
|
||||||
|
spacing: .5em;
|
||||||
|
icon-size: 1.14em;
|
||||||
|
}
|
||||||
|
// all the remaining code is for the main menu applet
|
||||||
|
.menu-favorites-box {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
padding: 0.8em;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
transition-duration: 150;
|
||||||
|
spacing: 1em;
|
||||||
|
}
|
||||||
|
// This is for the stock menu in Cinnamon 4.0.2 and later - adds more vfade to the scrollable favorites box and fakes a seperator from the system buttons with a bottom border.
|
||||||
|
.menu-favorites-scrollbox {
|
||||||
|
padding-bottom: 1em;
|
||||||
|
border-bottom: 1px solid;
|
||||||
|
border-color: $interior_border;
|
||||||
|
&.vfade {
|
||||||
|
-st-vfade-offset: 136px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-favorites-button {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-categories-box {
|
||||||
|
padding: 0.8em;
|
||||||
|
}
|
||||||
|
.menu-applications-inner-box {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
padding: 0.8em;
|
||||||
|
border-radius: $roundness;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
StScrollView {
|
||||||
|
@extend %menu-context-shared;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-applications-outer-box {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
padding: 0.8em;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
}
|
||||||
|
.menu-application-button {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
|
||||||
|
&:highlighted {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-application-button-selected {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
&:highlighted {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-application-button-label {
|
||||||
|
@extend %menu-button-label-shared;
|
||||||
|
}
|
||||||
|
.menu-category-button {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
}
|
||||||
|
.menu-category-button-greyed {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
|
||||||
|
color: $dark_fg_color;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
.menu-category-button-selected {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
&:hover {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-category-button-label {
|
||||||
|
@extend %menu-button-label-shared;
|
||||||
|
}
|
||||||
|
// in the stock menu app descriptions are shown at the base of the menu
|
||||||
|
.menu-selected-app-box {
|
||||||
|
padding: 2px 8px;
|
||||||
|
text-align: right;
|
||||||
|
&:rtl {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-selected-app-title {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
.menu-selected-app-description {
|
||||||
|
max-width: 150px;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
// the menus search box
|
||||||
|
.menu-search-box {
|
||||||
|
&:ltr {
|
||||||
|
padding-left: 30px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
padding-right: 30px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#menu-search-entry {
|
||||||
|
@extend %dialog-entry;
|
||||||
|
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
&:focus {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-search-entry-icon {
|
||||||
|
icon-size: 1em;
|
||||||
|
color: $tooltip_fg_color;
|
||||||
|
}
|
||||||
|
// new styleclasses for the Cinnamon 4.0.0 stock menu - note this menu was dropped in Cinnamon 4.0.1 but retain styling in case it's revived.
|
||||||
|
.menu-top-box {
|
||||||
|
spacing: 10px; }
|
||||||
|
.menu-systembuttons-box {
|
||||||
|
padding-bottom: 12px;
|
||||||
|
padding-top: 12px;
|
||||||
|
margin-bottom: 0.5em; }
|
||||||
|
// cinnVIIstark menu right click favourites context menu
|
||||||
|
.starkmenu-favorites-box .menu-context-menu, .menu-context-menu {
|
||||||
|
@extend %menu-context-shared;
|
||||||
|
}
|
91
.themes/Klaus/cinnamon/scss/sections/_notifications.scss
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
// notification system
|
||||||
|
#notification {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
border-radius: $roundness;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
padding: 8px;
|
||||||
|
spacing-rows: 5px;
|
||||||
|
spacing-columns: 10px;
|
||||||
|
margin-from-right-edge-of-screen: 20px;
|
||||||
|
width: 34em;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
&.multi-line-notification {
|
||||||
|
padding-bottom: 8px;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
StEntry {
|
||||||
|
@extend %dialog-entry;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.url-highlighter {
|
||||||
|
link-color: $link_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.notification-with-image {
|
||||||
|
min-height: 159px;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
#notification-scrollview {
|
||||||
|
max-height: 10em;
|
||||||
|
> {
|
||||||
|
.top-shadow {
|
||||||
|
height: 1em;
|
||||||
|
}
|
||||||
|
.bottom-shadow {
|
||||||
|
height: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:ltr > StScrollBar {
|
||||||
|
padding-left: 6px;
|
||||||
|
}
|
||||||
|
&:rtl > StScrollBar {
|
||||||
|
padding-right: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#notification-body {
|
||||||
|
spacing: 4px;
|
||||||
|
}
|
||||||
|
#notification-actions {
|
||||||
|
spacing: 8px;
|
||||||
|
}
|
||||||
|
.notification-button {
|
||||||
|
@extend %shared-button;
|
||||||
|
|
||||||
|
border-radius: $roundness;
|
||||||
|
min-width: 5em;
|
||||||
|
min-height: 1em;
|
||||||
|
padding: $spacing_plus2;
|
||||||
|
&:hover {
|
||||||
|
@extend %shared-button-hover;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
@extend %shared-button-active;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.notification-icon-button {
|
||||||
|
@extend %shared-button;
|
||||||
|
|
||||||
|
border-radius: $roundness;
|
||||||
|
min-width: 2em;
|
||||||
|
min-height: 2em;
|
||||||
|
padding: $spacing_plus2;
|
||||||
|
&:hover {
|
||||||
|
@extend %shared-button-hover;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
@extend %shared-button-active;
|
||||||
|
}
|
||||||
|
> StIcon {
|
||||||
|
icon-size: 1.5em;
|
||||||
|
}
|
||||||
|
}
|
119
.themes/Klaus/cinnamon/scss/sections/_overview.scss
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
// scale and expo views
|
||||||
|
#overview {
|
||||||
|
spacing: 12px;
|
||||||
|
}
|
||||||
|
.workspace-thumbnails {
|
||||||
|
spacing: 14px;
|
||||||
|
}
|
||||||
|
.workspace-add-button {
|
||||||
|
background-image: url(assets/add-workspace.png);
|
||||||
|
height: 200px;
|
||||||
|
width: 35px;
|
||||||
|
border-radius-topleft: 10px;
|
||||||
|
border-radius-bottomleft: 10px;
|
||||||
|
transition-duration: 150;
|
||||||
|
background-color: $info_bg_color;
|
||||||
|
border-top: 1px solid;
|
||||||
|
border-left: 1px solid;
|
||||||
|
border-bottom: 1px solid;
|
||||||
|
border-color: $button_border;
|
||||||
|
&:hover {
|
||||||
|
background-image: url(assets/add-workspace-hover.png);
|
||||||
|
border-color: $selected_border;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
background-image: url(assets/add-workspace.png);
|
||||||
|
border-color: $selected_border;
|
||||||
|
background-color: $success_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-close-button {
|
||||||
|
background-image: url(assets/close-window.svg);
|
||||||
|
height: 32px;
|
||||||
|
width: 32px;
|
||||||
|
-cinnamon-close-overlap: 20px;
|
||||||
|
}
|
||||||
|
// this always looks better semi transparent
|
||||||
|
.workspace-overview-background-shade {
|
||||||
|
background-color: $dark_bg_color_trans;
|
||||||
|
}
|
||||||
|
.window-caption {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
padding: 4px 6px;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
-cinnamon-caption-spacing: 4px;
|
||||||
|
&:focus, &#selected {
|
||||||
|
@extend %selected-bg-grad-to-bottom;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.window-border {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
.window-close {
|
||||||
|
background-image: url(assets/close-window.svg);
|
||||||
|
height: 32px;
|
||||||
|
width: 32px;
|
||||||
|
-cinnamon-close-overlap: 20px;
|
||||||
|
&:rtl {
|
||||||
|
-st-background-image-shadow: 2px 2px 6px rgba(0,0,0,0.5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.window-close-area {
|
||||||
|
background-image: url(assets/trash-icon.png);
|
||||||
|
background-size: 100px;
|
||||||
|
background-color: $dark_bg_color_trans;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
border-bottom-width: 0;
|
||||||
|
border-radius: 20px 20px 0 0;
|
||||||
|
height: 120px;
|
||||||
|
width: 400px;
|
||||||
|
}
|
||||||
|
.expo-background {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
}
|
||||||
|
.expo-workspace-thumbnail-frame {
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
&#active {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.expo-workspaces-name-entry {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
padding: 4px 6px;
|
||||||
|
height: 1.5em;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
selected-color: $selected_fg_color;
|
||||||
|
selection-background-color: $selected_bg_color;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
text-align: center;
|
||||||
|
&#selected {
|
||||||
|
@extend %selected-bg-grad-to-bottom;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
selected-color: $dark_fg_color;
|
||||||
|
selection-background-color: $selected_bg_color;
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// hot corners animation
|
||||||
|
.ripple-box {
|
||||||
|
width: 104px;
|
||||||
|
height: 104px;
|
||||||
|
background-image: url(assets/corner-ripple.png);
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border-radius: 52px;
|
||||||
|
}
|
573
.themes/Klaus/cinnamon/scss/sections/_panel.scss
Normal file
@ -0,0 +1,573 @@
|
|||||||
|
// panels can be on any side of the screen
|
||||||
|
// some panel item theming is specific to panel orientation and is included in this section
|
||||||
|
// each panel is also split into three zones
|
||||||
|
// dnd is for panel edit mode
|
||||||
|
// dummy is for adding or moving panels
|
||||||
|
#panel {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
height: 2.5em;
|
||||||
|
width: 3.2em;
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.panel-dummy {
|
||||||
|
background-color: rgba(255, 0, 0, 0.6);
|
||||||
|
&:entered {
|
||||||
|
background-color: rgba(0, 255, 0, 0.6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.panelLeft {
|
||||||
|
spacing: 4px;
|
||||||
|
&:dnd {
|
||||||
|
background-color: rgba(255, 0, 0, 0.6);
|
||||||
|
}
|
||||||
|
&:ltr {
|
||||||
|
padding-right: 4px;
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
|
&.vertical {
|
||||||
|
padding: 0;
|
||||||
|
&:dnd {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.panelCenter {
|
||||||
|
spacing: 4px;
|
||||||
|
&:dnd {
|
||||||
|
background-color: rgba(0, 255, 0, 0.6);
|
||||||
|
}
|
||||||
|
&.vertical {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
&:dnd {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.panelRight {
|
||||||
|
spacing: 4px;
|
||||||
|
&:dnd {
|
||||||
|
background-color: rgba(0, 0, 255, 0.6);
|
||||||
|
}
|
||||||
|
&:ltr {
|
||||||
|
padding-left: 0;
|
||||||
|
spacing: 0;
|
||||||
|
}
|
||||||
|
&:rtl {
|
||||||
|
padding-right: 0;
|
||||||
|
spacing: 0;
|
||||||
|
}
|
||||||
|
&.vertical {
|
||||||
|
padding: 0;
|
||||||
|
&:dnd {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// panel borders must be defined with a border-top color or other color definition that encompasses border-top
|
||||||
|
// panels do not support different colors of borders on different edges
|
||||||
|
// due to a bug in cinnamons placing of panel items on a bordered panel small margins are used to ensure that bordered panel objects
|
||||||
|
// do not overlap the panel border
|
||||||
|
.panel-top {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
box-shadow: 0 -1px 0 0 $exterior_border inset;
|
||||||
|
.window-list-item-box {
|
||||||
|
@extend %bg-grad-to-top;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-bg-grad-to-top;
|
||||||
|
}
|
||||||
|
&:active, &:checked, &:focus, &:running {
|
||||||
|
@extend %panel-top-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-selected-grad-to-top;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.grouped-window-list-item-box {
|
||||||
|
&:active, &:checked {
|
||||||
|
box-shadow: 0 2px 0 0 $dark_fg_color inset;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
box-shadow: 0 2px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 0 4px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-switcher, .workspace-graph {
|
||||||
|
padding: 1px $spacing;
|
||||||
|
}
|
||||||
|
.panel-launchers .launcher:hover {
|
||||||
|
box-shadow: 0 2px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
.applet-separator {
|
||||||
|
padding: 3px $spacing;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.panel-bottom {
|
||||||
|
@extend %bg-grad-to-top;
|
||||||
|
|
||||||
|
box-shadow: 0 1px 0 0 $exterior_border inset;
|
||||||
|
.window-list-item-box {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
margin-top: 1px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-bg-grad-to-bottom;
|
||||||
|
}
|
||||||
|
&:active, &:checked, &:focus, &:running {
|
||||||
|
@extend %panel-bottom-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-selected-grad-to-bottom;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.grouped-window-list-item-box {
|
||||||
|
&:active, &:checked {
|
||||||
|
box-shadow: 0 -2px 0 0 $dark_fg_color inset;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
box-shadow: 0 -2px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 0 -4px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-switcher, .workspace-graph {
|
||||||
|
padding: 1px $spacing;
|
||||||
|
}
|
||||||
|
.panel-launchers .launcher:hover {
|
||||||
|
box-shadow: 0 -2px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
.applet-separator {
|
||||||
|
padding: 3px $spacing;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.panel-left {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
box-shadow: -1px 0 0 0 $exterior_border inset;
|
||||||
|
.window-list-item-box {
|
||||||
|
margin-right: 1px;
|
||||||
|
@extend %bg-grad-to-left;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-bg-grad-to-left;
|
||||||
|
}
|
||||||
|
&:active, &:checked, &:focus, &:running {
|
||||||
|
@extend %panel-left-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-selected-grad-to-left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.grouped-window-list-item-box {
|
||||||
|
&:active, &:checked {
|
||||||
|
box-shadow: 2px 0 0 0 $dark_fg_color inset;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
box-shadow: 2px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 4px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-switcher, .workspace-graph {
|
||||||
|
padding: $spacing 1px;
|
||||||
|
}
|
||||||
|
.panel-launchers .launcher:hover {
|
||||||
|
box-shadow: 2px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
.applet-separator {
|
||||||
|
padding: $spacing 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.panel-right {
|
||||||
|
@extend %bg-grad-to-left;
|
||||||
|
|
||||||
|
box-shadow: 1px 0 0 0 $exterior_border inset;
|
||||||
|
.window-list-item-box {
|
||||||
|
margin-left: 1px;
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-bg-grad-to-right;
|
||||||
|
}
|
||||||
|
&:active, &:checked, &:focus, &:running {
|
||||||
|
@extend %panel-right-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-selected-grad-to-right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.grouped-window-list-item-box {
|
||||||
|
&:active, &:checked {
|
||||||
|
box-shadow: -2px 0 0 0 $dark_fg_color inset;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
box-shadow: -2px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
box-shadow: -4px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-switcher, .workspace-graph {
|
||||||
|
padding: $spacing 1px;
|
||||||
|
}
|
||||||
|
.panel-launchers .launcher:hover {
|
||||||
|
box-shadow: -2px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
.applet-separator {
|
||||||
|
padding: $spacing 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// a non feature - not worth themeing
|
||||||
|
.panel-corner {
|
||||||
|
&:active {
|
||||||
|
}
|
||||||
|
&:overview {
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// remaining code is for panel items starting with the generic applets
|
||||||
|
.applet-separator-line {
|
||||||
|
width: 2px;
|
||||||
|
background: $selected_bg_color;
|
||||||
|
}
|
||||||
|
.applet-separator-line-vertical {
|
||||||
|
border-color: $selected_bg_color;
|
||||||
|
border-bottom: 2px solid;
|
||||||
|
}
|
||||||
|
.applet-spacer:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
.applet-box {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
transition-duration: 150;
|
||||||
|
border-radius: $roundness;
|
||||||
|
padding: 0 $spacing;
|
||||||
|
&.vertical {
|
||||||
|
padding: $spacing 0;
|
||||||
|
}
|
||||||
|
&:checked {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
.applet-label {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
.applet-label {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
.applet-label {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.applet-label {
|
||||||
|
font-weight: bold;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding-left: 3px;
|
||||||
|
}
|
||||||
|
// icon-size set to 22 to match hard-coded menu icon size - applet-icon style is used for search provider results in menu
|
||||||
|
.applet-icon {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding: 0;
|
||||||
|
spacing: 0;
|
||||||
|
icon-size: 22px;
|
||||||
|
}
|
||||||
|
// used by power applet to warn of low battery
|
||||||
|
.system-status-icon {
|
||||||
|
icon-size: 1.14em;
|
||||||
|
padding: 0;
|
||||||
|
spacing: 0;
|
||||||
|
&.warning {
|
||||||
|
color: $warning_color;
|
||||||
|
}
|
||||||
|
&.error {
|
||||||
|
color: $error_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// keyboard layout applet
|
||||||
|
.panel-status-button {
|
||||||
|
-natural-hpadding: 4px;
|
||||||
|
-minimum-hpadding: 4px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
&:hover {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// user applet specific themeing
|
||||||
|
.user-box {
|
||||||
|
padding: 0.4em 1.3em;
|
||||||
|
spacing: 10px;
|
||||||
|
}
|
||||||
|
.user-icon {
|
||||||
|
padding: 4px;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.user-label {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
// the window list applet. Some third party applets inherit some of this theming.
|
||||||
|
.window-list-box {
|
||||||
|
spacing: $spacing;
|
||||||
|
padding: 1px 3px;
|
||||||
|
font-size: 0.9em;
|
||||||
|
border-radius: $roundness;
|
||||||
|
&.vertical {
|
||||||
|
spacing: $spacing;
|
||||||
|
padding: 3px 1px;
|
||||||
|
}
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
#appMenuIcon {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// progress was added with cinnamon 3.6 and allows compatible applications to use the window list as a progress bar
|
||||||
|
.window-list-item {
|
||||||
|
&-box {
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
transition-duration: 150;
|
||||||
|
&:hover {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
&.top StLabel, &.bottom StLabel {
|
||||||
|
padding-left: 3px;
|
||||||
|
}
|
||||||
|
.progress {
|
||||||
|
background-color: $success_color;
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $info_fg_color;
|
||||||
|
}
|
||||||
|
#appMenuIcon {
|
||||||
|
padding-right: 0.2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&-demands-attention {
|
||||||
|
background-color: $info_bg_color;
|
||||||
|
color: $info_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// cinnamon 3.8 will support an improved window-list-thumbnail preview which now has it's own selector
|
||||||
|
.window-list-preview {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
border-radius: $roundness;
|
||||||
|
border: 1px solid $exterior_border;
|
||||||
|
padding: 6px 12px;
|
||||||
|
spacing: $spacing;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
// Cinnamon 4.0 has a new grouped window list applet with it's own selectors.
|
||||||
|
// Initial theme support is defined here.
|
||||||
|
|
||||||
|
.grouped-window-list {
|
||||||
|
&-thumbnail-label {
|
||||||
|
padding-left: 3px;
|
||||||
|
}
|
||||||
|
&-number-label {
|
||||||
|
z-index: 99;
|
||||||
|
font-size: 0.8em;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
// May need to revise depending on upstream GWL developments
|
||||||
|
&-button-label {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
&-badge {
|
||||||
|
border-radius: 256px;
|
||||||
|
background-color: $dark_bg_color;
|
||||||
|
}
|
||||||
|
&-thumbnail-alert {
|
||||||
|
background: $warning_color;
|
||||||
|
}
|
||||||
|
&-item-box {
|
||||||
|
transition-duration: 150;
|
||||||
|
spacing: 1em;
|
||||||
|
background-color: rgba(0, 0, 0, 0.01);
|
||||||
|
&:hover, &:focus, {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.progress {
|
||||||
|
background-color: $success_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&-demands-attention {
|
||||||
|
background-color: $info_bg_color;
|
||||||
|
color: $info_fg_color;
|
||||||
|
}
|
||||||
|
&-thumbnail-menu {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
border-radius: $roundness;
|
||||||
|
padding: 10px 15px;
|
||||||
|
spacing: $spacing;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
.item-box {
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: $roundness;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
&:outlined {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
&:selected {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.thumbnail-box {
|
||||||
|
padding: 2px;
|
||||||
|
spacing: $spacing;
|
||||||
|
}
|
||||||
|
.thumbnail {
|
||||||
|
width: 256px;
|
||||||
|
}
|
||||||
|
.separator {
|
||||||
|
width: 1px;
|
||||||
|
background: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// the sound player applet
|
||||||
|
.sound-player {
|
||||||
|
StButton {
|
||||||
|
@extend %shared-button;
|
||||||
|
|
||||||
|
min-width: 2em;
|
||||||
|
min-height: 2em;
|
||||||
|
padding: $spacing_plus2;
|
||||||
|
color: $button_fg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
&:small {
|
||||||
|
min-width: 1.5em;
|
||||||
|
min-height: 1.5em;
|
||||||
|
padding: $spacing;
|
||||||
|
StIcon {
|
||||||
|
icon-size: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
StIcon {
|
||||||
|
icon-size: 1.5em;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
@extend %shared-button-hover;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
@extend %shared-button-active;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slider {
|
||||||
|
@extend %slider-shared;
|
||||||
|
height: 4px;
|
||||||
|
}
|
||||||
|
StBoxLayout {
|
||||||
|
spacing: 0.5em;
|
||||||
|
}
|
||||||
|
> StBoxLayout {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sound-player-generic-coverart {
|
||||||
|
background: rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
.sound-player-overlay {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
min-width: 300px;
|
||||||
|
padding: 12px 16px;
|
||||||
|
spacing: 0.5em;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
// workspace switcher applet simple button view
|
||||||
|
.workspace-button {
|
||||||
|
width: 2em;
|
||||||
|
height: 1em;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
margin: 2px;
|
||||||
|
transition-duration: 150;
|
||||||
|
&.vertical {
|
||||||
|
height: 1.5em;
|
||||||
|
}
|
||||||
|
&:outlined {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
border-color: $selected_border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// workspace switcher applet graph view
|
||||||
|
.workspace-graph {
|
||||||
|
.workspace {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
&:active {
|
||||||
|
@extend %selected-bg-grad-to-bottom;
|
||||||
|
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
.windows {
|
||||||
|
-active-window-background: rgba(255, 255, 255, 0.8);
|
||||||
|
-active-window-border: rgba(0, 0, 0, 0.9);
|
||||||
|
-inactive-window-background: rgba(140, 140, 140, 0.8);
|
||||||
|
-inactive-window-border: rgba(0, 0, 0, 0.7);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.windows {
|
||||||
|
-active-window-background: rgba(140, 140, 140, 0.8);
|
||||||
|
-active-window-border: rgba(0, 0, 0, 0.7);
|
||||||
|
-inactive-window-background: rgba(140, 140, 140, 0.8);
|
||||||
|
-inactive-window-border: rgba(0, 0, 0, 0.7);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// most panel launcher themeing is orientation specific
|
||||||
|
.panel-launchers {
|
||||||
|
padding: 0 $spacing;
|
||||||
|
spacing: $spacing;
|
||||||
|
.launcher {
|
||||||
|
background-color:rgba(0, 0, 0, 0.01);
|
||||||
|
}
|
||||||
|
&.vertical {
|
||||||
|
padding: $spacing 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.notification-applet-padding {
|
||||||
|
padding: .5em 1em;
|
||||||
|
}
|
||||||
|
.notification-applet-container {
|
||||||
|
max-height: 100px;
|
||||||
|
}
|
||||||
|
.systray {
|
||||||
|
spacing: $spacing;
|
||||||
|
}
|
||||||
|
.flashspot {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
|
114
.themes/Klaus/cinnamon/scss/sections/_stage.scss
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
// defines font family and standard font size across the whole theme
|
||||||
|
// em is preferred for better support for text scaling
|
||||||
|
stage {
|
||||||
|
font-family: roboto, Noto Sans, sans, sans-serif;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
.cinnamon-link {
|
||||||
|
color: $link_color;
|
||||||
|
font-style: italic;
|
||||||
|
&:hover {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.label-shadow {
|
||||||
|
color: rgba(0,0,0,0.5);
|
||||||
|
}
|
||||||
|
// themeing for various standard elements
|
||||||
|
StScrollBar {
|
||||||
|
padding: 2px;
|
||||||
|
StButton {
|
||||||
|
&#vhandle {
|
||||||
|
background-color: $scrollbar_slider_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
&:hover {
|
||||||
|
background-color: $scrollbar_slider_hover_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&#hhandle {
|
||||||
|
background-color: $scrollbar_slider_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
&:hover {
|
||||||
|
background-color: $scrollbar_slider_hover_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
StBin#trough {
|
||||||
|
background-color: $scrollbar_bg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
StScrollView {
|
||||||
|
&.vfade {
|
||||||
|
-st-vfade-offset: 68px;
|
||||||
|
}
|
||||||
|
&.hfade {
|
||||||
|
-st-hfade-offset: 68px;
|
||||||
|
}
|
||||||
|
StScrollBar {
|
||||||
|
min-width: 0.8em;
|
||||||
|
min-height: 0.8em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.separator {
|
||||||
|
@extend %separator-shared;
|
||||||
|
}
|
||||||
|
.slider {
|
||||||
|
@extend %slider-shared;
|
||||||
|
}
|
||||||
|
.check-box {
|
||||||
|
CinnamonGenericContainer {
|
||||||
|
spacing: .2em;
|
||||||
|
}
|
||||||
|
StBin {
|
||||||
|
@extend %check-box-shared;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
StBin {
|
||||||
|
@extend %check-box-shared;
|
||||||
|
}
|
||||||
|
&:checked StBin {
|
||||||
|
background-image: url(assets/checkbox.svg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
StLabel {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
&:checked StBin {
|
||||||
|
background-image: url(assets/checkbox.svg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.radiobutton {
|
||||||
|
CinnamonGenericContainer {
|
||||||
|
spacing: .2em;
|
||||||
|
height: 18px;
|
||||||
|
padding-top: 2px;
|
||||||
|
}
|
||||||
|
StBin {
|
||||||
|
@extend %radiobutton-shared;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
StBin {
|
||||||
|
@extend %radiobutton-shared;
|
||||||
|
}
|
||||||
|
&:checked StBin {
|
||||||
|
background-image: url(assets/radiobutton.svg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
StLabel {
|
||||||
|
padding-top: 4px;
|
||||||
|
font-size: 0.8em;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
&:checked StBin {
|
||||||
|
background-image: url(assets/radiobutton.svg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#Tooltip {
|
||||||
|
@extend %tooltip-bg-grad-to-top;
|
||||||
|
|
||||||
|
padding: 5px 8px;
|
||||||
|
color: $tooltip_fg_color;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: $roundness;
|
||||||
|
}
|
59
.themes/Klaus/cinnamon/scss/sections/_tile-hud.scss
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
// on screen preview of windows tiling placement
|
||||||
|
.tile-preview {
|
||||||
|
@extend %tile-shared;
|
||||||
|
|
||||||
|
&.snap {
|
||||||
|
@extend %tile-shared-snap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.tile-hud {
|
||||||
|
@extend %tile-shared;
|
||||||
|
|
||||||
|
&.snap {
|
||||||
|
@extend %tile-shared-snap;
|
||||||
|
}
|
||||||
|
&:top {
|
||||||
|
border-top-width: 0;
|
||||||
|
|
||||||
|
border-radius: 0 0 10px 10px;
|
||||||
|
}
|
||||||
|
&:bottom {
|
||||||
|
border-bottom-width: 0;
|
||||||
|
|
||||||
|
border-radius: $roundness $roundness 0 0;
|
||||||
|
}
|
||||||
|
&:left {
|
||||||
|
border-left-width: 0;
|
||||||
|
|
||||||
|
border-radius: 0 10px 10px 0;
|
||||||
|
}
|
||||||
|
&:right {
|
||||||
|
border-right-width: 0;
|
||||||
|
|
||||||
|
border-radius: 10px 0 0 10px;
|
||||||
|
}
|
||||||
|
&:top-left {
|
||||||
|
border-top-width: 0;
|
||||||
|
border-left-width: 0;
|
||||||
|
|
||||||
|
border-radius: 0 0 10px 0;
|
||||||
|
}
|
||||||
|
&:top-right {
|
||||||
|
border-top-width: 0;
|
||||||
|
border-right-width: 0;
|
||||||
|
|
||||||
|
border-radius: 0 0 0 10px;
|
||||||
|
}
|
||||||
|
&:bottom-left {
|
||||||
|
border-bottom-width: 0;
|
||||||
|
border-left-width: 0;
|
||||||
|
|
||||||
|
border-radius: 0 10px 0 0;
|
||||||
|
}
|
||||||
|
&:bottom-right {
|
||||||
|
border-bottom-width: 0;
|
||||||
|
border-right-width: 0;
|
||||||
|
|
||||||
|
border-radius: 10px 0 0 0;
|
||||||
|
}
|
||||||
|
}
|
BIN
.themes/Klaus/cinnamon/thumbnail.png
Normal file
After Width: | Height: | Size: 35 KiB |
634
.themes/Klaus/gnome-shell/gnome-shell.css
Normal file
@ -0,0 +1,634 @@
|
|||||||
|
@import url("/usr/share/gnome-shell/theme/gnome-shell.css");
|
||||||
|
/*$selected_borders_color: if($variant == 'light', darken($selected_bg_color, 30%), darken($selected_bg_color, 20%));*/
|
||||||
|
/*$borders_color: if($variant == 'light', shade($bg_color, .85), shade($bg_color, .88));*/
|
||||||
|
/*$dark_shadow: #000;*/
|
||||||
|
/*$light_shadow: #fff;*/
|
||||||
|
/*$button_border_strength: if(lightness($bg) > 50, 0, .1);*/
|
||||||
|
/*$button_shadow_strength: if(lightness($bg) > 50, 0, .1);*/
|
||||||
|
/* Global Values */
|
||||||
|
stage {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #d5c4a1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Common Stylings */
|
||||||
|
.shell-link {
|
||||||
|
color: #3f51b5;
|
||||||
|
}
|
||||||
|
.shell-link:hover {
|
||||||
|
color: #606fc7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lowres-icon {
|
||||||
|
icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-dropshadow {
|
||||||
|
icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
color: #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
border-color: rgba(213, 196, 161, 0.84);
|
||||||
|
box-shadow: 0 1px 1px 0 shade(#d5c4a1, 0.2);
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
.button StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.button:focus {
|
||||||
|
color: #d5c4a1;
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
box-shadow: inset 0 0 0 2px rgba(184, 187, 38, 0.6);
|
||||||
|
}
|
||||||
|
.button:focus StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.button:hover {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
box-shadow: 0 1px 1px 0 shade(#d5c4a1, 0.2);
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
.button:hover StWidget {
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
.button:insensitive {
|
||||||
|
color: #bda36c;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
box-shadow: none;
|
||||||
|
text-shadow: none;
|
||||||
|
icon-shadow: none;
|
||||||
|
}
|
||||||
|
.button:insensitive StWidget {
|
||||||
|
color: #bda36c;
|
||||||
|
}
|
||||||
|
.button:active {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
text-shadow: none;
|
||||||
|
icon-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.button:active StWidget {
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
.candidate-page-button,
|
||||||
|
.notification-button,
|
||||||
|
.notification-icon-button,
|
||||||
|
.hotplug-notification-item,
|
||||||
|
.hotplug-resident-eject-button,
|
||||||
|
.modal-dialog-button,
|
||||||
|
.app-view-control {
|
||||||
|
color: #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
border-color: rgba(213, 196, 161, 0.84);
|
||||||
|
box-shadow: 0 1px 1px 0 shade(#d5c4a1, 0.2);
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
.candidate-page-button StWidget,
|
||||||
|
.notification-button StWidget,
|
||||||
|
.notification-icon-button StWidget,
|
||||||
|
.hotplug-notification-item StWidget,
|
||||||
|
.hotplug-resident-eject-button StWidget,
|
||||||
|
.modal-dialog-button StWidget,
|
||||||
|
.app-view-control StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.candidate-page-button:focus,
|
||||||
|
.notification-button:focus,
|
||||||
|
.notification-icon-button:focus,
|
||||||
|
.hotplug-notification-item:focus,
|
||||||
|
.hotplug-resident-eject-button:focus,
|
||||||
|
.modal-dialog-button:focus,
|
||||||
|
.app-view-control:focus {
|
||||||
|
color: #d5c4a1;
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
box-shadow: inset 0 0 0 2px rgba(184, 187, 38, 0.6);
|
||||||
|
}
|
||||||
|
.candidate-page-button:focus StWidget,
|
||||||
|
.notification-button:focus StWidget,
|
||||||
|
.notification-icon-button:focus StWidget,
|
||||||
|
.hotplug-notification-item:focus StWidget,
|
||||||
|
.hotplug-resident-eject-button:focus StWidget,
|
||||||
|
.modal-dialog-button:focus StWidget,
|
||||||
|
.app-view-control:focus StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.candidate-page-button:hover,
|
||||||
|
.notification-button:hover,
|
||||||
|
.notification-icon-button:hover,
|
||||||
|
.hotplug-notification-item:hover,
|
||||||
|
.hotplug-resident-eject-button:hover,
|
||||||
|
.modal-dialog-button:hover,
|
||||||
|
.app-view-control:hover {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
box-shadow: 0 1px 1px 0 shade(#d5c4a1, 0.2);
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
.candidate-page-button:hover StWidget,
|
||||||
|
.notification-button:hover StWidget,
|
||||||
|
.notification-icon-button:hover StWidget,
|
||||||
|
.hotplug-notification-item:hover StWidget,
|
||||||
|
.hotplug-resident-eject-button:hover StWidget,
|
||||||
|
.modal-dialog-button:hover StWidget,
|
||||||
|
.app-view-control:hover StWidget {
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
.candidate-page-button:insensitive,
|
||||||
|
.notification-button:insensitive,
|
||||||
|
.notification-icon-button:insensitive,
|
||||||
|
.hotplug-notification-item:insensitive,
|
||||||
|
.hotplug-resident-eject-button:insensitive,
|
||||||
|
.modal-dialog-button:insensitive,
|
||||||
|
.app-view-control:insensitive {
|
||||||
|
color: #bda36c;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
box-shadow: none;
|
||||||
|
text-shadow: none;
|
||||||
|
icon-shadow: none;
|
||||||
|
}
|
||||||
|
.candidate-page-button:insensitive StWidget,
|
||||||
|
.notification-button:insensitive StWidget,
|
||||||
|
.notification-icon-button:insensitive StWidget,
|
||||||
|
.hotplug-notification-item:insensitive StWidget,
|
||||||
|
.hotplug-resident-eject-button:insensitive StWidget,
|
||||||
|
.modal-dialog-button:insensitive StWidget,
|
||||||
|
.app-view-control:insensitive StWidget {
|
||||||
|
color: #bda36c;
|
||||||
|
}
|
||||||
|
.candidate-page-button:active,
|
||||||
|
.notification-button:active,
|
||||||
|
.notification-icon-button:active,
|
||||||
|
.hotplug-notification-item:active,
|
||||||
|
.hotplug-resident-eject-button:active,
|
||||||
|
.modal-dialog-button:active,
|
||||||
|
.app-view-control:active {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
text-shadow: none;
|
||||||
|
icon-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.candidate-page-button:active StWidget,
|
||||||
|
.notification-button:active StWidget,
|
||||||
|
.notification-icon-button:active StWidget,
|
||||||
|
.hotplug-notification-item:active StWidget,
|
||||||
|
.hotplug-resident-eject-button:active StWidget,
|
||||||
|
.modal-dialog-button:active StWidget,
|
||||||
|
.app-view-control:active StWidget {
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
StEntry {
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popup-menu, .panel-menu {
|
||||||
|
-arrow-background-color: #1d2021;
|
||||||
|
}
|
||||||
|
.popup-menu .popup-sub-menu, .panel-menu .popup-sub-menu {
|
||||||
|
background-color: #1d2021;
|
||||||
|
}
|
||||||
|
.popup-menu .popup-menu-content, .panel-menu .popup-menu-content {
|
||||||
|
box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.4);
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.popup-menu .popup-menu-item, .panel-menu .popup-menu-item {
|
||||||
|
background-color: transparent !important;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.popup-menu .popup-menu-item StWidget, .panel-menu .popup-menu-item StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.popup-menu .popup-menu-item:hover, .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item:overview, .popup-menu .popup-menu-item:focus, .popup-menu .popup-menu-item:checked, .panel-menu .popup-menu-item:hover, .panel-menu .popup-menu-item:active, .panel-menu .popup-menu-item:overview, .panel-menu .popup-menu-item:focus, .panel-menu .popup-menu-item:checked {
|
||||||
|
background-color: #b8bb26 !important;
|
||||||
|
color: #1d2021 !important;
|
||||||
|
}
|
||||||
|
.popup-menu .popup-menu-item:hover StWidget, .popup-menu .popup-menu-item:active StWidget, .popup-menu .popup-menu-item:overview StWidget, .popup-menu .popup-menu-item:focus StWidget, .popup-menu .popup-menu-item:checked StWidget, .panel-menu .popup-menu-item:hover StWidget, .panel-menu .popup-menu-item:active StWidget, .panel-menu .popup-menu-item:overview StWidget, .panel-menu .popup-menu-item:focus StWidget, .panel-menu .popup-menu-item:checked StWidget {
|
||||||
|
color: #1d2021 !important;
|
||||||
|
}
|
||||||
|
.popup-menu .popup-menu-item:insensitive, .panel-menu .popup-menu-item:insensitive {
|
||||||
|
color: #bda36c !important;
|
||||||
|
background-color: #1d2021 !important;
|
||||||
|
}
|
||||||
|
.popup-menu .popup-menu-item:insensitive StWidget, .panel-menu .popup-menu-item:insensitive StWidget {
|
||||||
|
color: #bda36c !important;
|
||||||
|
}
|
||||||
|
.popup-menu StButton, .panel-menu StButton {
|
||||||
|
color: #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
border-color: rgba(213, 196, 161, 0.84);
|
||||||
|
box-shadow: 0 1px 1px 0 shade(#d5c4a1, 0.2);
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
.popup-menu StButton StWidget, .panel-menu StButton StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.popup-menu StButton:focus, .panel-menu StButton:focus {
|
||||||
|
color: #d5c4a1;
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
box-shadow: inset 0 0 0 2px rgba(184, 187, 38, 0.6);
|
||||||
|
}
|
||||||
|
.popup-menu StButton:focus StWidget, .panel-menu StButton:focus StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.popup-menu StButton:hover, .panel-menu StButton:hover {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
box-shadow: 0 1px 1px 0 shade(#d5c4a1, 0.2);
|
||||||
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
icon-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
.popup-menu StButton:hover StWidget, .panel-menu StButton:hover StWidget {
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
.popup-menu StButton:insensitive, .panel-menu StButton:insensitive {
|
||||||
|
color: #bda36c;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
box-shadow: none;
|
||||||
|
text-shadow: none;
|
||||||
|
icon-shadow: none;
|
||||||
|
}
|
||||||
|
.popup-menu StButton:insensitive StWidget, .panel-menu StButton:insensitive StWidget {
|
||||||
|
color: #bda36c;
|
||||||
|
}
|
||||||
|
.popup-menu StButton:active, .panel-menu StButton:active {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
border-color: #d5c4a1;
|
||||||
|
text-shadow: none;
|
||||||
|
icon-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.popup-menu StButton:active StWidget, .panel-menu StButton:active StWidget {
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Modal Dialogs */
|
||||||
|
.headline {
|
||||||
|
font-size-adjust: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-dialog {
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.4);
|
||||||
|
}
|
||||||
|
.modal-dialog .modal-dialog-content-box {
|
||||||
|
margin: 32px 40px;
|
||||||
|
spacing: 32px;
|
||||||
|
max-width: 28em;
|
||||||
|
}
|
||||||
|
.modal-dialog StButton {
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Network Manager */
|
||||||
|
.nm-dialog-item {
|
||||||
|
font-size: 12pt;
|
||||||
|
border-bottom: 1px solid #666;
|
||||||
|
padding: 12px;
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.nm-dialog-item:checked {
|
||||||
|
background-color: #b8bb26;
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* End Session Dialog */
|
||||||
|
.end-session-dialog {
|
||||||
|
width: 30em;
|
||||||
|
}
|
||||||
|
.end-session-dialog .end-session-dialog-battery-warning,
|
||||||
|
.end-session-dialog .dialog-list-title {
|
||||||
|
color: #ef6c00;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Message Dialog */
|
||||||
|
.message-dialog-content {
|
||||||
|
spacing: 18px;
|
||||||
|
}
|
||||||
|
.message-dialog-content .message-dialog-title {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 18pt;
|
||||||
|
font-weight: 800;
|
||||||
|
}
|
||||||
|
.message-dialog-content .message-dialog-title.lightweight {
|
||||||
|
font-size: 13pt;
|
||||||
|
font-weight: 800;
|
||||||
|
}
|
||||||
|
.message-dialog-content .message-dialog-description {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dialog List */
|
||||||
|
.dialog-list {
|
||||||
|
spacing: 18px;
|
||||||
|
}
|
||||||
|
.dialog-list .dialog-list-title {
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.dialog-list .dialog-list-scrollview {
|
||||||
|
max-height: 200px;
|
||||||
|
}
|
||||||
|
.dialog-list .dialog-list-box {
|
||||||
|
spacing: 1em;
|
||||||
|
}
|
||||||
|
.dialog-list .dialog-list-box .dialog-list-item {
|
||||||
|
spacing: 1em;
|
||||||
|
}
|
||||||
|
.dialog-list .dialog-list-box .dialog-list-item .dialog-list-item-title {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.dialog-list .dialog-list-box .dialog-list-item .dialog-list-item-description {
|
||||||
|
color: #cdb98f;
|
||||||
|
font-size-adjust: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Run Dialog */
|
||||||
|
.run-dialog .modal-dialog-content-box {
|
||||||
|
margin-top: 24px;
|
||||||
|
margin-bottom: 14px;
|
||||||
|
}
|
||||||
|
.run-dialog .run-dialog-entry {
|
||||||
|
width: 20em;
|
||||||
|
}
|
||||||
|
.run-dialog .run-dialog-description {
|
||||||
|
font-size-adjust: -1;
|
||||||
|
text-align: center;
|
||||||
|
color: #b6985b;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Password or Authentication Dialog */
|
||||||
|
.prompt-dialog {
|
||||||
|
width: 28em;
|
||||||
|
}
|
||||||
|
.prompt-dialog .modal-dialog-content-box {
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prompt-dialog-password-grid {
|
||||||
|
spacing-rows: 8px;
|
||||||
|
spacing-columns: 4px;
|
||||||
|
}
|
||||||
|
.prompt-dialog-password-grid .prompt-dialog-password-entry {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
.prompt-dialog-password-grid .prompt-dialog-password-entry:ltr {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
.prompt-dialog-password-grid .prompt-dialog-password-entry:rtl {
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prompt-dialog-password-layout {
|
||||||
|
spacing: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prompt-dialog-password-entry {
|
||||||
|
width: 20em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prompt-dialog-error-label,
|
||||||
|
.prompt-dialog-info-label,
|
||||||
|
.prompt-dialog-null-label {
|
||||||
|
text-align: center;
|
||||||
|
font-size-adjust: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prompt-dialog-error-label {
|
||||||
|
color: #ef6c00;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Polkit Dialog */
|
||||||
|
.polkit-dialog-user-layout {
|
||||||
|
text-align: center;
|
||||||
|
spacing: 8px;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
.polkit-dialog-user-layout .polkit-dialog-user-icon {
|
||||||
|
border-radius: 99px;
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
|
.polkit-dialog-user-layout .polkit-dialog-user-root-label {
|
||||||
|
color: #ef6c00;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Audio selection dialog */
|
||||||
|
.audio-device-selection-dialog .modal-dialog-content-box {
|
||||||
|
margin-bottom: 28px;
|
||||||
|
}
|
||||||
|
.audio-device-selection-dialog .audio-selection-box {
|
||||||
|
spacing: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-selection-device {
|
||||||
|
border: 1px solid #d5c4a1;
|
||||||
|
border-radius: 12px;
|
||||||
|
}
|
||||||
|
.audio-selection-device:hover, .audio-selection-device:focus {
|
||||||
|
background-color: #b8bb26;
|
||||||
|
}
|
||||||
|
.audio-selection-device:active {
|
||||||
|
background-color: #b8bb26;
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-selection-device-box {
|
||||||
|
padding: 20px;
|
||||||
|
spacing: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-menu .calendar,
|
||||||
|
.panel-menu .message-list-sections,
|
||||||
|
.panel-menu .datemenu-today-button,
|
||||||
|
.panel-menu .world-clocks-button,
|
||||||
|
.panel-menu .weather-button,
|
||||||
|
.panel-menu .events-section-title {
|
||||||
|
color: #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
}
|
||||||
|
.panel-menu .calendar StLabel,
|
||||||
|
.panel-menu .message-list-sections StLabel,
|
||||||
|
.panel-menu .datemenu-today-button StLabel,
|
||||||
|
.panel-menu .world-clocks-button StLabel,
|
||||||
|
.panel-menu .weather-button StLabel,
|
||||||
|
.panel-menu .events-section-title StLabel {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.panel-menu .datemenu-today-button:active, .panel-menu .datemenu-today-button:focus, .panel-menu .datemenu-today-button:hover,
|
||||||
|
.panel-menu .world-clocks-button:active,
|
||||||
|
.panel-menu .world-clocks-button:focus,
|
||||||
|
.panel-menu .world-clocks-button:hover,
|
||||||
|
.panel-menu .weather-button:active,
|
||||||
|
.panel-menu .weather-button:focus,
|
||||||
|
.panel-menu .weather-button:hover,
|
||||||
|
.panel-menu .events-section-title:active,
|
||||||
|
.panel-menu .events-section-title:focus,
|
||||||
|
.panel-menu .events-section-title:hover {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
}
|
||||||
|
.panel-menu .calendar {
|
||||||
|
border: 1px solid rgba(213, 196, 161, 0.84);
|
||||||
|
}
|
||||||
|
.panel-menu .calendar-day-base {
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.panel-menu .calendar-day-base:active, .panel-menu .calendar-day-base:focus, .panel-menu .calendar-day-base:hover {
|
||||||
|
color: #1d2021;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
}
|
||||||
|
.panel-menu .events-button {
|
||||||
|
color: #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
}
|
||||||
|
.panel-menu .events-button StLabel {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Notifications & Message Tray */
|
||||||
|
.notification-banner {
|
||||||
|
min-height: 64px;
|
||||||
|
width: 34em;
|
||||||
|
border: 1px solid #d5c4a1;
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.notification-banner StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.notification-banner StWidget:hover, .notification-banner StWidget:active, .notification-banner StWidget:focus {
|
||||||
|
background-color: #b8bb26;
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
.notification-banner .notification-actions {
|
||||||
|
spacing: 0;
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
.notification-banner .notification-actions StWidget {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.summary-source-counter {
|
||||||
|
font-size-adjust: -1;
|
||||||
|
font-weight: bold;
|
||||||
|
height: 1.6em;
|
||||||
|
width: 1.6em;
|
||||||
|
-shell-counter-overlap-x: 3px;
|
||||||
|
-shell-counter-overlap-y: 3px;
|
||||||
|
background-color: #b8bb26;
|
||||||
|
color: #1d2021;
|
||||||
|
border: 2px solid #d5c4a1;
|
||||||
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||||
|
border-radius: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-body {
|
||||||
|
spacing: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-response {
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-log-message {
|
||||||
|
color: #c5ae7e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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: #ede5d6;
|
||||||
|
}
|
||||||
|
.chat-sent:rtl {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 18pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-meta-message {
|
||||||
|
padding-left: 4px;
|
||||||
|
font-size-adjust: 2;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #f1ece0;
|
||||||
|
}
|
||||||
|
.chat-meta-message:rtl {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#dash {
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
#dash .dash-label {
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#panel {
|
||||||
|
background-color: #1d2021;
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
#panel .panel-corner {
|
||||||
|
-panel-corner-radius: 0;
|
||||||
|
-panel-corner-background-color: transparent;
|
||||||
|
-panel-corner-border-width: 0;
|
||||||
|
-panel-corner-border-color: transparent;
|
||||||
|
}
|
||||||
|
#panel .panel-button {
|
||||||
|
color: #d5c4a1;
|
||||||
|
}
|
||||||
|
#panel .panel-button .app-menu-icon {
|
||||||
|
-st-icon-style: symbolic;
|
||||||
|
}
|
||||||
|
#panel:hover, #panel:active, #panel:overview, #panel:focus, #panel:checked {
|
||||||
|
background-color: transparent;
|
||||||
|
color: #d5c4a1;
|
||||||
|
border-bottom: 5px solid #b8bb26;
|
||||||
|
}
|
||||||
|
#panel:insensitive {
|
||||||
|
color: #bda36c;
|
||||||
|
background-color: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=gnome-shell.css.map */
|
7
.themes/Klaus/gnome-shell/gnome-shell.css.map
Normal file
894
.themes/Klaus/gtk-2.0/gtkrc
Normal file
@ -0,0 +1,894 @@
|
|||||||
|
# Oomox GTK Theme (Numix Fork)
|
||||||
|
|
||||||
|
gtk-color-scheme =
|
||||||
|
"base_color:#504945\nbg_color:#3c3836\ntooltip_bg_color:#3c3836\nselected_bg_color:#b8bb26\ntext_color:#fbf1c7\nfg_color:#ebdbb2\ntooltip_fg_color:#ebdbb2\nselected_fg_color:#1d2021\nmenubar_bg_color:#1d2021\nmenubar_fg_color:#d5c4a1\ntoolbar_bg_color:#3c3836\ntoolbar_fg_color:#ebdbb2\nmenu_bg_color:#1d2021\nmenu_fg_color:#d5c4a1\npanel_bg_color:#3c3836\npanel_fg_color:#ebdbb2\nlink_color:#83a598\nbtn_bg_color:#1d2021\nbtn_fg_color:#d5c4a1\ntitlebar_bg_color:#1d2021\ntitlebar_fg_color:#d5c4a1\nprimary_caret_color:#fbf1c7\nsecondary_caret_color:#fbf1c7\naccent_bg_color:#b8bb26\n"
|
||||||
|
# Default Style
|
||||||
|
|
||||||
|
style "murrine-default" {
|
||||||
|
GtkArrow::arrow-scaling= 0.6
|
||||||
|
|
||||||
|
GtkWidget::cursor_color = @primary_caret_color
|
||||||
|
GtkWidget::secondary_cursor_color = @secondary_caret_color
|
||||||
|
GtkWidget::cursor_aspect_ratio = 0.04
|
||||||
|
|
||||||
|
GtkButton::child-displacement-x = 0
|
||||||
|
GtkButton::child-displacement-y = 0
|
||||||
|
|
||||||
|
GtkButton::default-border = { 0, 0, 0, 0 }
|
||||||
|
#GtkButton::inner-border = { 2, 2, 1, 1 }
|
||||||
|
GtkButton::focus-line-width = 1
|
||||||
|
#GtkButton::focus-padding = -4
|
||||||
|
|
||||||
|
GtkButtonBox::child-min-height = 26
|
||||||
|
|
||||||
|
GtkCheckButton::indicator-size = 16
|
||||||
|
|
||||||
|
# The following line hints to gecko (and possibly other appliations)
|
||||||
|
# that the entry should be drawn transparently on the canvas.
|
||||||
|
# Without this, gecko will fill in the background of the entry.
|
||||||
|
GtkEntry::honors-transparent-bg-hint = 1
|
||||||
|
GtkEntry::state-hint = 0
|
||||||
|
|
||||||
|
GtkExpander::expander-size = 16
|
||||||
|
|
||||||
|
GtkImage::x-ayatana-indicator-dynamic = 1
|
||||||
|
|
||||||
|
GtkMenu::horizontal-padding = 0
|
||||||
|
GtkMenu::vertical-padding = 0
|
||||||
|
|
||||||
|
GtkMenuBar::internal-padding = 0
|
||||||
|
GtkMenuBar::window-dragging = 1
|
||||||
|
|
||||||
|
GtkMenuItem::arrow-scaling= 0.5
|
||||||
|
|
||||||
|
GtkPaned::handle-size = 1
|
||||||
|
|
||||||
|
GtkProgressBar::min-horizontal-bar-height = 12
|
||||||
|
GtkProgressBar::min-vertical-bar-width = 12
|
||||||
|
|
||||||
|
GtkRange::trough-border = 0
|
||||||
|
GtkRange::slider-width = 12
|
||||||
|
GtkRange::stepper-size = 12
|
||||||
|
GtkRange::stepper_spacing = 0
|
||||||
|
GtkRange::trough-under-steppers = 1
|
||||||
|
|
||||||
|
GtkScale::slider-length = 16
|
||||||
|
GtkScale::slider-width = 16
|
||||||
|
GtkScale::trough-side-details = 1
|
||||||
|
|
||||||
|
GtkScrollbar::activate-slider = 1
|
||||||
|
GtkScrollbar::has-backward-stepper = 0
|
||||||
|
GtkScrollbar::has-forward-stepper = 0
|
||||||
|
GtkScrollbar::has-secondary-backward-stepper = 0
|
||||||
|
GtkScrollbar::has-secondary-forward-stepper = 0
|
||||||
|
GtkScrollbar::min-slider-length = 80
|
||||||
|
GtkScrollbar::slider-width = 12
|
||||||
|
GtkScrollbar::trough-border = 0
|
||||||
|
|
||||||
|
GtkScrolledWindow::scrollbar-spacing = 0
|
||||||
|
GtkScrolledWindow::scrollbars-within-bevel = 1
|
||||||
|
|
||||||
|
GtkSeparatorMenuItem::horizontal-padding = 0
|
||||||
|
|
||||||
|
GtkToolbar::internal-padding = 0
|
||||||
|
|
||||||
|
GtkTreeView::expander-size = 11
|
||||||
|
GtkTreeView::vertical-separator = 0
|
||||||
|
|
||||||
|
GtkWidget::focus-line-width = 1
|
||||||
|
# The following line prevents the Firefox tabs
|
||||||
|
# from jumping a few pixels when you create a new tab
|
||||||
|
GtkWidget::focus-padding = 0
|
||||||
|
|
||||||
|
GtkWidget::wide-separators = 1
|
||||||
|
GtkWidget::separator-width = 1
|
||||||
|
GtkWidget::separator-height = 1
|
||||||
|
|
||||||
|
GtkWindow::resize-grip-height = 0
|
||||||
|
GtkWindow::resize-grip-width = 0
|
||||||
|
|
||||||
|
WnckTasklist::fade-overlay-rect = 0
|
||||||
|
|
||||||
|
GnomeHRef::link_color = @link_color
|
||||||
|
GtkHTML::link-color = @link_color
|
||||||
|
GtkIMHtmlr::hyperlink-color = @link_color
|
||||||
|
GtkIMHtml::hyperlink-color = @link_color
|
||||||
|
GtkWidget::link-color = @link_color
|
||||||
|
GtkWidget::visited-link-color = @text_color
|
||||||
|
|
||||||
|
GtkToolbar::shadow-type = GTK_SHADOW_NONE # Makes toolbars flat and unified
|
||||||
|
GtkMenuBar::shadow-type = GTK_SHADOW_NONE # Makes menubars flat and unified
|
||||||
|
|
||||||
|
xthickness = 1
|
||||||
|
ythickness = 1
|
||||||
|
|
||||||
|
fg[NORMAL] = @fg_color
|
||||||
|
fg[PRELIGHT] = @fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||||
|
|
||||||
|
bg[NORMAL] = @bg_color
|
||||||
|
bg[PRELIGHT] = shade (1.02, @bg_color)
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = shade (0.9, @bg_color)
|
||||||
|
bg[INSENSITIVE] = @bg_color
|
||||||
|
|
||||||
|
base[NORMAL] = @base_color
|
||||||
|
base[PRELIGHT] = shade (0.95, @base_color)
|
||||||
|
base[SELECTED] = @selected_bg_color
|
||||||
|
base[ACTIVE] = @selected_bg_color
|
||||||
|
base[INSENSITIVE] = shade (0.85, @base_color)
|
||||||
|
|
||||||
|
text[NORMAL] = @text_color
|
||||||
|
text[PRELIGHT] = @text_color
|
||||||
|
text[SELECTED] = @selected_fg_color
|
||||||
|
text[ACTIVE] = @selected_fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
animation = FALSE
|
||||||
|
arrowstyle = 1 # 0 = normal arrows, 1 = filled arrows
|
||||||
|
border_shades = { 1.0, 1.0 } # gradient to draw on border
|
||||||
|
border_colors = { mix(0.2, @fg_color, @bg_color), mix(0.2, @fg_color, @bg_color) }
|
||||||
|
colorize_scrollbar = FALSE
|
||||||
|
comboboxstyle = 0 # 0 = normal combobox, 1 = colorized combobox below arrow
|
||||||
|
contrast = 0.8 # overal contrast with borders
|
||||||
|
focusstyle = 3 # 0 = none, 1 = grey dotted, 2 = colored with fill, 3 = colored glow
|
||||||
|
glazestyle = 0 # 0 = flat highlight, 1 = curved highlight, 2 = concave, 3 = top curved highlight, 4 = beryl highlight
|
||||||
|
glowstyle = 0 # 0 = glow on top, 1 = glow on bottom, 2 = glow on top and bottom, 3 = glow on middle vertically, 4 = glow on middle horizontally, 5 = glow on all sides
|
||||||
|
glow_shade = 1.0 # amount of glow
|
||||||
|
gradient_shades = { 1.0, 1.0, 1.0, 1.0 } # gradient to draw on widgets
|
||||||
|
highlight_shade = 1.0 # amount of highlight
|
||||||
|
lightborder_shade = 1.0 # amount of inset light border
|
||||||
|
lightborderstyle = 1 # 0 = lightborder on top side, 1 = lightborder on all sides
|
||||||
|
listviewheaderstyle = 0 # 0 = flat, 1 = glassy, 2 = raised
|
||||||
|
listviewstyle = 0 # 0 = none, 1 = dotted, 2 = line
|
||||||
|
menubaritemstyle = 0 # 0 = menuitem look, 1 = button look
|
||||||
|
menubarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped
|
||||||
|
menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped
|
||||||
|
menustyle = 0 # 0 = none, 1 = vertical striped
|
||||||
|
progressbarstyle = 0 # 0 = none, 1 = diagonal striped, 2 = vertical striped
|
||||||
|
reliefstyle = 0 # 0 = flat, 1 = inset, 2 = shadow, 3 = shadow with gradient, 4 = stronger shadow with gradient
|
||||||
|
roundness = 2 # roundness of widgets
|
||||||
|
scrollbarstyle = 0 # 0 = none, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles
|
||||||
|
sliderstyle = 0 # 0 = none, 1 = handles
|
||||||
|
stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles
|
||||||
|
toolbarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-wide" {
|
||||||
|
xthickness = 2
|
||||||
|
ythickness = 2
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-wider" {
|
||||||
|
xthickness = 3
|
||||||
|
ythickness = 3
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-thin" {
|
||||||
|
xthickness = 0
|
||||||
|
ythickness = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# Notebook
|
||||||
|
|
||||||
|
style "clearlooks-notebook-bg" {
|
||||||
|
bg[NORMAL] = @bg_color
|
||||||
|
bg[ACTIVE] = shade (0.80, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "clearlooks-notebook" = "clearlooks-notebook-bg" {
|
||||||
|
xthickness = 2
|
||||||
|
ythickness = 2
|
||||||
|
|
||||||
|
engine "clearlooks" {
|
||||||
|
radius = 0.1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Various Standard Widgets
|
||||||
|
|
||||||
|
style "murrine-button" = "murrine-wider" {
|
||||||
|
bg[NORMAL] = @btn_bg_color
|
||||||
|
bg[PRELIGHT] = shade (1.10, @btn_bg_color)
|
||||||
|
bg[SELECTED] = mix (0.5, @selected_bg_color, @bg_color)
|
||||||
|
bg[ACTIVE] = shade (0.95, @btn_bg_color)
|
||||||
|
bg[INSENSITIVE] = shade (0.75, @btn_bg_color)
|
||||||
|
#xthickness = 4
|
||||||
|
#ythickness = 4
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) }
|
||||||
|
roundness = 2
|
||||||
|
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-buttonlabel" {
|
||||||
|
fg[NORMAL] = @btn_fg_color
|
||||||
|
fg[PRELIGHT] = @btn_fg_color
|
||||||
|
fg[SELECTED] = @btn_fg_color
|
||||||
|
fg[ACTIVE] = @btn_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color)
|
||||||
|
|
||||||
|
text[NORMAL] = @btn_fg_color
|
||||||
|
text[PRELIGHT] = @btn_fg_color
|
||||||
|
text[SELECTED] = @btn_fg_color
|
||||||
|
text[ACTIVE] = @btn_fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-scrollbar" {
|
||||||
|
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
|
||||||
|
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
|
||||||
|
bg[ACTIVE] = @selected_bg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
contrast = 0.0
|
||||||
|
border_shades = { 0.9, 0.9 }
|
||||||
|
trough_shades = { 0.97, 0.97 }
|
||||||
|
trough_border_shades = { 1.0, 1.0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-overlay-scrollbar" {
|
||||||
|
bg[ACTIVE] = shade (0.8, @bg_color)
|
||||||
|
bg[INSENSITIVE] = shade (0.97, @bg_color)
|
||||||
|
|
||||||
|
base[SELECTED] = shade (0.6, @bg_color)
|
||||||
|
base[INSENSITIVE] = shade (0.85, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-scale" = "murrine-thin" {
|
||||||
|
bg[NORMAL] = @btn_bg_color
|
||||||
|
bg[ACTIVE] = mix(0.2, @fg_color, @bg_color)
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[INSENSITIVE] = mix(0.95, @bg_color, @btn_bg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 8
|
||||||
|
#roundness = 2
|
||||||
|
gradient_shades = { 1.08, 1.08, 1.08, 1.08 }
|
||||||
|
#border_shades = { 0.5, 0.5 }
|
||||||
|
border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) }
|
||||||
|
#trough_shades = { 1.08, 1.08 }
|
||||||
|
trough_border_shades = { 0.8, 0.8 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-progressbar" = "murrine-thin" {
|
||||||
|
bg[NORMAL] = @bg_color
|
||||||
|
bg[ACTIVE] = mix(0.08, @bg_color, @base_color)
|
||||||
|
|
||||||
|
fg[PRELIGHT] = @selected_fg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
#roundness = 2
|
||||||
|
roundness = 2
|
||||||
|
border_shades = { 1.2, 1.2 }
|
||||||
|
trough_border_shades = { 0.8, 0.8 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-treeview-header" = "murrine-button" {
|
||||||
|
fg[NORMAL] = @fg_color
|
||||||
|
fg[PRELIGHT] = @fg_color
|
||||||
|
fg[SELECTED] = @fg_color
|
||||||
|
fg[ACTIVE] = @fg_color
|
||||||
|
fg[INSENSITIVE] = mix(0.20, @bg_color, @fg_color)
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-treeview" {
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-frame" = "murrine-wide" {
|
||||||
|
bg[NORMAL] = mix(0.08, @fg_color, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-frame-title" {
|
||||||
|
fg[NORMAL] = lighter (@fg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-tooltips" {
|
||||||
|
xthickness = 5
|
||||||
|
ythickness = 5
|
||||||
|
|
||||||
|
bg[NORMAL] = @tooltip_bg_color
|
||||||
|
bg[SELECTED] = @tooltip_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @tooltip_fg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
textstyle = 0
|
||||||
|
roundness = 2
|
||||||
|
rgba = FALSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-spinbutton" = "murrine-button" {
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "clearlooks-radiocheck" = "murrine-default" {
|
||||||
|
bg[SELECTED] = @base_color
|
||||||
|
bg[PRELIGHT] = @bg_color
|
||||||
|
|
||||||
|
text[NORMAL] = @accent_bg_color
|
||||||
|
text[PRELIGHT] = @accent_bg_color
|
||||||
|
|
||||||
|
engine "clearlooks" {
|
||||||
|
radius = 4.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "clearlooks-base-radiocheck" = "clearlooks-radiocheck" {
|
||||||
|
bg[PRELIGHT] = @bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "clearlooks-radiocheck-label" = "clearlooks-radiocheck" {
|
||||||
|
fg[NORMAL] = @fg_color
|
||||||
|
fg[PRELIGHT] = @fg_color
|
||||||
|
fg[SELECTED] = @fg_color
|
||||||
|
fg[ACTIVE] = @fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-entry" = "murrine-wider" {
|
||||||
|
text[NORMAL] = @text_color
|
||||||
|
text[PRELIGHT] = @text_color
|
||||||
|
text[SELECTED] = @text_color
|
||||||
|
text[ACTIVE] = @text_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
|
||||||
|
engine "murrine" {
|
||||||
|
#border_shades = { 1.15, 1.15 }
|
||||||
|
border_colors = { mix(0.22, @text_color, @base_color), mix(0.22, @text_color, @base_color) }
|
||||||
|
roundness = 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "metacity-frame" = "murrine-default" {
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-statusbar" { }
|
||||||
|
style "murrine-comboboxentry" = "murrine-entry" { }
|
||||||
|
style "murrine-hscale" = "murrine-scale" { }
|
||||||
|
style "murrine-vscale" = "murrine-scale" { }
|
||||||
|
style "murrine-hscrollbar" = "murrine-scrollbar" { }
|
||||||
|
style "murrine-vscrollbar" = "murrine-scrollbar" { }
|
||||||
|
|
||||||
|
# Menus
|
||||||
|
|
||||||
|
style "murrine-menu" = "murrine-thin" {
|
||||||
|
bg[NORMAL] = @menu_bg_color
|
||||||
|
bg[PRELIGHT] = @selected_bg_color
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = @menu_bg_color
|
||||||
|
bg[INSENSITIVE] = @menu_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color
|
||||||
|
fg[PRELIGHT] = @selected_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @selected_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||||
|
|
||||||
|
text[NORMAL] = @menu_fg_color
|
||||||
|
text[PRELIGHT] = @selected_fg_color
|
||||||
|
text[SELECTED] = @selected_fg_color
|
||||||
|
text[ACTIVE] = @selected_fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-menu-item" = "murrine-wider" {
|
||||||
|
bg[PRELIGHT] = @selected_bg_color
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = @selected_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color # Fix for XFCE menu text
|
||||||
|
fg[PRELIGHT] = @selected_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @selected_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
textstyle = 0
|
||||||
|
border_shades = { 1.2, 1.2 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-separator-menu-item" = "murrine-thin" { }
|
||||||
|
|
||||||
|
style "murrine-menubar" {
|
||||||
|
bg[NORMAL] = @menubar_bg_color
|
||||||
|
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
|
||||||
|
bg[INSENSITIVE] = @menubar_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menubar_fg_color
|
||||||
|
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
|
||||||
|
fg[SELECTED] = shade (1.08, @menubar_fg_color)
|
||||||
|
fg[ACTIVE] = @menubar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-menubaritem" {
|
||||||
|
bg[NORMAL] = @menubar_bg_color
|
||||||
|
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
|
||||||
|
bg[INSENSITIVE] = @menubar_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menubar_fg_color
|
||||||
|
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
|
||||||
|
fg[SELECTED] = shade (1.08, @menubar_fg_color)
|
||||||
|
fg[ACTIVE] = @menubar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Toolbars
|
||||||
|
|
||||||
|
style "murrine-toolbar" = "murrine-thin" {
|
||||||
|
bg[NORMAL] = @toolbar_bg_color
|
||||||
|
bg[PRELIGHT] = shade (1.02, @toolbar_bg_color)
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = shade (0.9, @toolbar_bg_color)
|
||||||
|
bg[INSENSITIVE] = @toolbar_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @toolbar_fg_color
|
||||||
|
fg[PRELIGHT] = @toolbar_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @toolbar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-toolbutton" = "murrine-button" {
|
||||||
|
bg[NORMAL] = shade (1.08, @toolbar_bg_color)
|
||||||
|
bg[PRELIGHT] = shade (1.10, @toolbar_bg_color)
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = shade (0.95, @toolbar_bg_color)
|
||||||
|
bg[INSENSITIVE] = shade (0.85, @toolbar_bg_color)
|
||||||
|
|
||||||
|
fg[NORMAL] = @toolbar_fg_color
|
||||||
|
fg[PRELIGHT] = @toolbar_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @toolbar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-toolbutton-label" = "murrine-toolbutton" {
|
||||||
|
fg[NORMAL] = @toolbar_fg_color
|
||||||
|
fg[PRELIGHT] = @toolbar_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @toolbar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class "GtkToolbar" style "murrine-toolbar"
|
||||||
|
class "GtkHandleBox" style "murrine-toolbar"
|
||||||
|
widget_class "*Toolbar*.*Separator*" style "murrine-toolbar"
|
||||||
|
|
||||||
|
# Panels
|
||||||
|
|
||||||
|
style "murrine-panel" = "murrine-thin" {
|
||||||
|
xthickness = 2
|
||||||
|
|
||||||
|
bg[NORMAL] = @panel_bg_color
|
||||||
|
bg[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||||
|
bg[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||||
|
bg[ACTIVE] = shade (0.8, @panel_bg_color)
|
||||||
|
bg[INSENSITIVE] = @panel_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @panel_fg_color
|
||||||
|
fg[PRELIGHT] = shade (1.08, @panel_fg_color)
|
||||||
|
fg[SELECTED] = shade (1.08, @panel_fg_color)
|
||||||
|
fg[ACTIVE] = @panel_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
|
||||||
|
|
||||||
|
base[NORMAL] = @panel_bg_color
|
||||||
|
base[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||||
|
base[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||||
|
base[ACTIVE] = shade (0.9, @panel_bg_color)
|
||||||
|
base[INSENSITIVE] = @panel_bg_color
|
||||||
|
|
||||||
|
text[NORMAL] = @panel_fg_color
|
||||||
|
text[PRELIGHT] = shade (1.08, @panel_fg_color)
|
||||||
|
text[SELECTED] = shade (1.08, @panel_fg_color)
|
||||||
|
text[ACTIVE] = @panel_fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
contrast = 0.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget "*PanelWidget*" style "murrine-panel"
|
||||||
|
widget "*PanelApplet*" style "murrine-panel"
|
||||||
|
widget "*fast-user-switch*" style "murrine-panel"
|
||||||
|
widget "*CPUFreq*Applet*" style "murrine-panel"
|
||||||
|
widget "*indicator-applet*" style "murrine-panel"
|
||||||
|
class "PanelApp*" style "murrine-panel"
|
||||||
|
class "PanelToplevel*" style "murrine-panel"
|
||||||
|
widget_class "*PanelToplevel*" style "murrine-panel"
|
||||||
|
widget_class "*notif*" style "murrine-panel"
|
||||||
|
widget_class "*Notif*" style "murrine-panel"
|
||||||
|
widget_class "*Tray*" style "murrine-panel"
|
||||||
|
widget_class "*tray*" style "murrine-panel"
|
||||||
|
widget_class "*computertemp*" style "murrine-panel"
|
||||||
|
widget_class "*Applet*Tomboy*" style "murrine-panel"
|
||||||
|
widget_class "*Applet*Netstatus*" style "murrine-panel"
|
||||||
|
widget "*gdm-user-switch-menubar*" style "murrine-panel"
|
||||||
|
|
||||||
|
# LXPanel (code based on Lubuntu-default theme's gtkrc file)
|
||||||
|
widget "*.tclock.*" style "murrine-panel"
|
||||||
|
widget "*.taskbar.*" style "murrine-panel"
|
||||||
|
widget_class "*GtkBgbox*" style "murrine-panel"
|
||||||
|
|
||||||
|
style "bold-panel-item" {
|
||||||
|
font_name = "Bold"
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget "*Panel*MenuBar*" style "bold-panel-item"
|
||||||
|
widget "*gimmie*" style "bold-panel-item"
|
||||||
|
|
||||||
|
# widget_class "*Mail*" style "murrine-panel" # Disabled to fix Evolution bug
|
||||||
|
# class "*Panel*" style "murrine-panel" # Disabled to fix bug
|
||||||
|
|
||||||
|
# XFCE Styles
|
||||||
|
|
||||||
|
style "workspace-switcher" = "murrine-panel" {
|
||||||
|
bg[ACTIVE] = @selected_bg_color
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfce-header" {
|
||||||
|
bg[NORMAL] = shade (0.9, @bg_color)
|
||||||
|
base[NORMAL] = shade (1.18, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfdesktop-windowlist" {
|
||||||
|
bg[NORMAL] = @base_color
|
||||||
|
fg[INSENSITIVE] = shade (0.95, @base_color)
|
||||||
|
text[INSENSITIVE] = shade (0.95, @base_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfdesktop-icon-view" {
|
||||||
|
XfdesktopIconView::label-alpha = 0
|
||||||
|
XfdesktopIconView::selected-label-alpha = 60
|
||||||
|
XfdesktopIconView::shadow-x-offset = 0
|
||||||
|
XfdesktopIconView::shadow-y-offset = 1
|
||||||
|
XfdesktopIconView::selected-shadow-x-offset = 0
|
||||||
|
XfdesktopIconView::selected-shadow-y-offset = 1
|
||||||
|
XfdesktopIconView::shadow-color = @fg_color
|
||||||
|
XfdesktopIconView::selected-shadow-color = @fg_color
|
||||||
|
XfdesktopIconView::shadow-blur-radius = 2
|
||||||
|
XfdesktopIconView::cell-spacing = 2
|
||||||
|
XfdesktopIconView::cell-padding = 6
|
||||||
|
XfdesktopIconView::cell-text-width-proportion = 1.9
|
||||||
|
|
||||||
|
fg[NORMAL] = @bg_color
|
||||||
|
fg[ACTIVE] = @bg_color
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfwm-tabwin" {
|
||||||
|
Xfwm4TabwinWidget::border-width = 1
|
||||||
|
Xfwm4TabwinWidget::border-alpha = 1.0
|
||||||
|
Xfwm4TabwinWidget::icon-size = 64
|
||||||
|
Xfwm4TabwinWidget::alpha = 1.0
|
||||||
|
Xfwm4TabwinWidget::border-radius = 2
|
||||||
|
|
||||||
|
bg[NORMAL] = @menu_bg_color
|
||||||
|
bg[SELECTED] = @menu_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
contrast = 0.0
|
||||||
|
border_shades = { 0.9, 0.9 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfwm-tabwin-button" {
|
||||||
|
font_name = "bold"
|
||||||
|
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfsm-logout" {
|
||||||
|
bg[NORMAL] = @menu_bg_color
|
||||||
|
bg[ACTIVE] = @menu_bg_color
|
||||||
|
bg[PRELIGHT] = shade (1.1, @menu_bg_color)
|
||||||
|
bg[SELECTED] = shade (0.5, @menu_bg_color)
|
||||||
|
bg[INSENSITIVE] = shade (1.3, @menu_bg_color)
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color
|
||||||
|
fg[PRELIGHT] = @menu_fg_color
|
||||||
|
|
||||||
|
text[NORMAL] = @menu_fg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfsm-logout-button" {
|
||||||
|
bg[NORMAL] = shade (1.2, @menu_bg_color)
|
||||||
|
bg[PRELIGHT] = shade (1.4, @menu_bg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget "*Pager*" style "workspace-switcher"
|
||||||
|
|
||||||
|
widget "*Xfce*Panel*" style "murrine-panel"
|
||||||
|
class "*Xfce*Panel*" style "murrine-panel"
|
||||||
|
|
||||||
|
# Thunar Styles
|
||||||
|
|
||||||
|
style "sidepane" {
|
||||||
|
base[NORMAL] = @bg_color
|
||||||
|
base[INSENSITIVE] = mix (0.4, shade (1.35, @selected_bg_color), shade (0.9, @base_color))
|
||||||
|
bg[NORMAL] = @bg_color
|
||||||
|
text[NORMAL] = mix (0.9, @fg_color, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "*ThunarShortcutsView*" style "sidepane"
|
||||||
|
widget_class "*ThunarTreeView*" style "sidepane"
|
||||||
|
widget_class "*ThunarLocationEntry*" style "murrine-entry"
|
||||||
|
|
||||||
|
style "whiskermenu" {
|
||||||
|
bg[NORMAL] = @menu_bg_color
|
||||||
|
bg[ACTIVE] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[PRELIGHT] = @selected_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color
|
||||||
|
fg[ACTIVE] = @menu_fg_color
|
||||||
|
fg[PRELIGHT] = @menu_fg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "whiskermenu-scrollbar" = "murrine-scrollbar" {
|
||||||
|
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
|
||||||
|
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
|
||||||
|
bg[ACTIVE] = @selected_bg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
trough_shades = { 4.97, 4.97 }
|
||||||
|
trough_border_shades = { 5.0, 5.0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget "whiskermenu-window*" style "whiskermenu"
|
||||||
|
widget "*whisker*GtkVScrollbar" style "whiskermenu-scrollbar"
|
||||||
|
|
||||||
|
# Gtk2 Open-File Dialog
|
||||||
|
|
||||||
|
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.GtkTreeView*" style "sidepane"
|
||||||
|
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
|
||||||
|
# Google Chrome/Chromium Styles (requires 9.0.597 or newer)
|
||||||
|
|
||||||
|
style "chromium-toolbar-button" {
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 2
|
||||||
|
textstyle = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "chrome-gtk-frame" {
|
||||||
|
ChromeGtkFrame::frame-color = @titlebar_bg_color
|
||||||
|
ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
|
||||||
|
|
||||||
|
ChromeGtkFrame::frame-gradient-size = 0
|
||||||
|
ChromeGtkFrame::frame-gradient-color = @titlebar_bg_color
|
||||||
|
|
||||||
|
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
|
||||||
|
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
|
||||||
|
|
||||||
|
ChromeGtkFrame::incognito-frame-gradient-size = 0
|
||||||
|
ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color
|
||||||
|
|
||||||
|
ChromeGtkFrame::scrollbar-trough-color = @bg_color
|
||||||
|
ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color)
|
||||||
|
ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
class "ChromeGtkFrame" style "chrome-gtk-frame"
|
||||||
|
|
||||||
|
widget_class "*Chrom*Button*" style "chromium-toolbar-button"
|
||||||
|
|
||||||
|
# General Styles
|
||||||
|
|
||||||
|
class "GtkWidget" style "murrine-default"
|
||||||
|
|
||||||
|
class "GtkFrame" style "murrine-frame"
|
||||||
|
class "MetaFrames" style "metacity-frame"
|
||||||
|
class "GtkWindow" style "metacity-frame"
|
||||||
|
|
||||||
|
class "GtkSeparator" style "murrine-wide"
|
||||||
|
class "GtkCalendar" style "murrine-wide"
|
||||||
|
|
||||||
|
class "GtkSpinButton" style "murrine-spinbutton"
|
||||||
|
|
||||||
|
class "GtkScale" style "murrine-scale"
|
||||||
|
class "GtkVScale" style "murrine-vscale"
|
||||||
|
class "GtkHScale" style "murrine-hscale"
|
||||||
|
class "GtkScrollbar" style "murrine-scrollbar"
|
||||||
|
class "GtkVScrollbar" style "murrine-vscrollbar"
|
||||||
|
class "GtkHScrollbar" style "murrine-hscrollbar"
|
||||||
|
|
||||||
|
class "GtkEntry" style "murrine-entry"
|
||||||
|
|
||||||
|
widget_class "*<GtkNotebook>" style "clearlooks-notebook"
|
||||||
|
widget_class "*<GtkNotebook>*<GtkEventBox>" style "clearlooks-notebook-bg"
|
||||||
|
widget_class "*<GtkNotebook>*<GtkDrawingArea>" style "clearlooks-notebook-bg"
|
||||||
|
widget_class "*<GtkNotebook>*<GtkLayout>" style "clearlooks-notebook-bg"
|
||||||
|
widget_class "*.GtkNotebook.*.GtkViewport" style "clearlooks-notebook"
|
||||||
|
|
||||||
|
widget_class "*<GtkButton>" style "murrine-button"
|
||||||
|
widget_class "*<GtkStatusbar>*" style "murrine-statusbar"
|
||||||
|
widget_class "*<GtkProgress>" style "murrine-progressbar"
|
||||||
|
widget_class "*<GtkProgressBar>" style "murrine-progressbar"
|
||||||
|
|
||||||
|
widget_class "*<GtkComboBoxEntry>*" style "murrine-comboboxentry"
|
||||||
|
widget_class "*<GtkCombo>*" style "murrine-comboboxentry"
|
||||||
|
|
||||||
|
widget_class "*<GtkMenu>*" style "murrine-menu"
|
||||||
|
widget_class "*<GtkMenuItem>*" style "murrine-menu-item"
|
||||||
|
widget_class "*<GtkSeparatorMenuItem>*" style "murrine-separator-menu-item"
|
||||||
|
widget_class "*Menu*.*Sepa*" style "murrine-separator-menu-item"
|
||||||
|
widget_class "*<GtkMenuBar>*" style "murrine-menubar"
|
||||||
|
widget_class "*<GtkMenuBar>*<GtkMenuItem>*" style "murrine-menubaritem"
|
||||||
|
|
||||||
|
widget_class "*GtkToolButton*" style "murrine-toolbutton"
|
||||||
|
widget_class "*GtkToggleToolButton*" style "murrine-toolbutton"
|
||||||
|
widget_class "*GtkMenuToolButton*" style "murrine-toolbutton"
|
||||||
|
widget_class "*GtkToolbar*Button" style "murrine-toolbutton"
|
||||||
|
|
||||||
|
widget_class "*.<GtkFrame>.<GtkLabel>" style "murrine-frame-title"
|
||||||
|
|
||||||
|
widget_class "*.<GtkTreeView>*" style "murrine-treeview"
|
||||||
|
widget_class "*.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
widget_class "*.<GtkCTree>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
widget_class "*.<GtkList>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
widget_class "*.<GtkCList>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
|
||||||
|
widget_class "*.<GtkCheckButton>" style "clearlooks-radiocheck"
|
||||||
|
widget_class "*<GtkNotebook>.*.<GtkCheckButton>" style "clearlooks-base-radiocheck"
|
||||||
|
widget_class "*<GtkCellRendererToggle>" style "clearlooks-base-radiocheck"
|
||||||
|
|
||||||
|
widget "gtk-tooltip*" style "murrine-tooltips"
|
||||||
|
|
||||||
|
widget_class "*<GtkScrolledWindow>*<OsScrollbar>" style "murrine-overlay-scrollbar"
|
||||||
|
|
||||||
|
# Workarounds and Non-Standard Styling
|
||||||
|
|
||||||
|
style "text-is-fg-color-workaround" {
|
||||||
|
text[NORMAL] = @text_color
|
||||||
|
text[PRELIGHT] = @fg_color
|
||||||
|
text[SELECTED] = @selected_fg_color
|
||||||
|
text[ACTIVE] = @fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "*.<GtkComboBox>.<GtkCellView>" style "text-is-fg-color-workaround"
|
||||||
|
|
||||||
|
style "fg-is-text-color-workaround" {
|
||||||
|
fg[NORMAL] = @text_color
|
||||||
|
fg[PRELIGHT] = @text_color
|
||||||
|
fg[ACTIVE] = @selected_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[INSENSITIVE] = darker (@fg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "*<GtkListItem>*" style "fg-is-text-color-workaround"
|
||||||
|
widget_class "*<GtkCList>" style "fg-is-text-color-workaround"
|
||||||
|
widget_class "*<EelEditableLabel>" style "fg-is-text-color-workaround"
|
||||||
|
|
||||||
|
style "murrine-evo-new-button-workaround" {
|
||||||
|
engine "murrine" {
|
||||||
|
toolbarstyle = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "murrine-evo-new-button-workaround"
|
||||||
|
|
||||||
|
style "inkscape-toolbar-fix" {
|
||||||
|
engine "murrine" {
|
||||||
|
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
|
||||||
|
highlight_shade = 1.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#widget "*GtkHandleBox*" style "inkscape-toolbar-fix"
|
||||||
|
#widget "*HandleBox*CommandsToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
#widget "*HandleBox*SnapToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*SelectToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*NodeToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*TweakToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*ZoomToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*StarToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*RectToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*3DBoxToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*ArcToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*SpiralToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*PencilToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*PenToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*CalligraphyToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*EraserToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*LPEToolToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*DropperToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*ConnectorToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*PaintbucketToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
|
||||||
|
# Performance Fixes
|
||||||
|
|
||||||
|
style "performance-fix" {
|
||||||
|
engine "murrine" {
|
||||||
|
textstyle = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "*gtkmm__GtkWindow*" style "performance-fix" # Inkscape
|
||||||
|
widget_class "*GimpDisplayShell*" style "performance-fix" # Gimp
|
||||||
|
widget_class "*GimpToolbox*" style "performance-fix"
|
||||||
|
widget_class "*GimpMenuDock*" style "performance-fix"
|
||||||
|
widget "*OOoFixed*" style "performance-fix" # Openoffice/Libreoffice
|
||||||
|
widget_class "*MozContainer*" style "performance-fix" # Firefox (Not sure if this one does anything though.)
|
||||||
|
|
||||||
|
widget_class "*XfceHeading*" style "xfce-header"
|
||||||
|
widget_class "*XfceDesktop*" style "xfdesktop-windowlist"
|
||||||
|
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
|
||||||
|
widget "xfwm4-tabwin*" style "xfwm-tabwin"
|
||||||
|
widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button"
|
||||||
|
widget_class "*XfsmLogoutDialog*" style "xfsm-logout"
|
||||||
|
widget_class "*XfsmLogoutDialog*GtkButton" style "xfsm-logout-button"
|
||||||
|
|
||||||
|
# button fg workarounds:
|
||||||
|
widget_class "*.<GtkButton>.<GtkLabel>" style "murrine-buttonlabel"
|
||||||
|
widget_class "*<GtkButton>*<GtkLabel>*" style:highest "murrine-buttonlabel"
|
||||||
|
widget_class "*<GtkCheckButton>*<GtkLabel>*" style:highest "clearlooks-radiocheck-label"
|
||||||
|
widget_class "*<GtkComboBoxText>*" style "murrine-buttonlabel"
|
||||||
|
widget_class "*<GtkComboBoxText>*<GtkToggleButton>*" style "murrine-buttonlabel"
|
||||||
|
widget_class "*<GtkComboBoxText>*<GtkEntry>*" style:highest "murrine-entry"
|
||||||
|
widget_class "*<GtkToolbar>*<GtkToolButton>*<GtkLabel>*" style:highest "murrine-toolbutton-label"
|
995
.themes/Klaus/gtk-2.0/gtkrc.hidpi
Normal file
@ -0,0 +1,995 @@
|
|||||||
|
# Oomox GTK Theme (Numix Fork)
|
||||||
|
|
||||||
|
gtk-color-scheme =
|
||||||
|
"base_color:#504945\nbg_color:#3c3836\ntooltip_bg_color:#3c3836\nselected_bg_color:#b8bb26\ntext_color:#fbf1c7\nfg_color:#ebdbb2\ntooltip_fg_color:#ebdbb2\nselected_fg_color:#1d2021\nmenubar_bg_color:#1d2021\nmenubar_fg_color:#d5c4a1\ntoolbar_bg_color:#3c3836\ntoolbar_fg_color:#ebdbb2\nmenu_bg_color:#1d2021\nmenu_fg_color:#d5c4a1\npanel_bg_color:#3c3836\npanel_fg_color:#ebdbb2\nlink_color:#83a598\nbtn_bg_color:#1d2021\nbtn_fg_color:#d5c4a1\ntitlebar_bg_color:#1d2021\ntitlebar_fg_color:#d5c4a1\nprimary_caret_color:#fbf1c7\nsecondary_caret_color:#fbf1c7\naccent_bg_color:#b8bb26\n"
|
||||||
|
# Default Style
|
||||||
|
|
||||||
|
style "murrine-default" {
|
||||||
|
GtkArrow::arrow-scaling= 1.0
|
||||||
|
|
||||||
|
GtkButton::child-displacement-x = 0
|
||||||
|
GtkButton::child-displacement-y = 0
|
||||||
|
|
||||||
|
#GtkButton::default-border = { 0, 0, 0, 0 }
|
||||||
|
GtkButton::inner-border = { 0, 0, 1, 0 }
|
||||||
|
GtkButton::focus-line-width = 2
|
||||||
|
#GtkButton::focus-padding = 4
|
||||||
|
GtkButton::focus-padding = 2
|
||||||
|
#GtkButton::interior-focus = 1
|
||||||
|
|
||||||
|
GtkEntry::inner-border = { 4, 4, 5, 4 }
|
||||||
|
GtkComboBox::inner-border = { 4, 4, 6, 5 }
|
||||||
|
GtkComboBoxText::inner-border = { 4, 4, 6, 5 }
|
||||||
|
|
||||||
|
#GtkButtonBox::child-min-height = 52
|
||||||
|
|
||||||
|
GtkCheckButton::indicator-size = 30
|
||||||
|
|
||||||
|
# The following line hints to gecko (and possibly other appliations)
|
||||||
|
# that the entry should be drawn transparently on the canvas.
|
||||||
|
# Without this, gecko will fill in the background of the entry.
|
||||||
|
GtkEntry::honors-transparent-bg-hint = 1
|
||||||
|
GtkEntry::state-hint = 0
|
||||||
|
|
||||||
|
GtkExpander::expander-size = 30
|
||||||
|
|
||||||
|
GtkImage::x-ayatana-indicator-dynamic = 1
|
||||||
|
|
||||||
|
GtkMenu::horizontal-padding = 2
|
||||||
|
GtkMenu::vertical-padding = 2
|
||||||
|
|
||||||
|
GtkMenuBar::internal-padding = 1
|
||||||
|
GtkMenuBar::window-dragging = 1
|
||||||
|
|
||||||
|
GtkMenuItem::arrow-scaling= 0.5
|
||||||
|
|
||||||
|
GtkPaned::handle-size = 1
|
||||||
|
|
||||||
|
GtkProgressBar::min-horizontal-bar-height = 14
|
||||||
|
GtkProgressBar::min-vertical-bar-width = 14
|
||||||
|
|
||||||
|
GtkRange::trough-border = 0
|
||||||
|
GtkRange::slider-width = 24
|
||||||
|
GtkRange::stepper-size = 24
|
||||||
|
GtkRange::stepper_spacing = 0
|
||||||
|
GtkRange::trough-under-steppers = 1
|
||||||
|
|
||||||
|
GtkScale::slider-length = 30
|
||||||
|
GtkScale::slider-width = 30
|
||||||
|
GtkScale::trough-side-details = 1
|
||||||
|
|
||||||
|
GtkScrollbar::activate-slider = 1
|
||||||
|
GtkScrollbar::has-backward-stepper = 0
|
||||||
|
GtkScrollbar::has-forward-stepper = 0
|
||||||
|
GtkScrollbar::has-secondary-backward-stepper = 0
|
||||||
|
GtkScrollbar::has-secondary-forward-stepper = 0
|
||||||
|
GtkScrollbar::min-slider-length = 160
|
||||||
|
GtkScrollbar::slider-width = 24
|
||||||
|
GtkScrollbar::trough-border = 0
|
||||||
|
|
||||||
|
GtkScrolledWindow::scrollbar-spacing = 0
|
||||||
|
GtkScrolledWindow::scrollbars-within-bevel = 1
|
||||||
|
|
||||||
|
GtkSeparatorMenuItem::horizontal-padding = 0
|
||||||
|
|
||||||
|
GtkToolbar::internal-padding = 0
|
||||||
|
|
||||||
|
GtkTreeView::expander-size = 22
|
||||||
|
GtkTreeView::vertical-separator = 0
|
||||||
|
|
||||||
|
GtkWidget::focus-line-width = 2
|
||||||
|
# The following line prevents the Firefox tabs
|
||||||
|
# from jumping a few pixels when you create a new tab
|
||||||
|
GtkWidget::focus-padding = 0
|
||||||
|
|
||||||
|
GtkWidget::wide-separators = 1
|
||||||
|
GtkWidget::separator-width = 2
|
||||||
|
GtkWidget::separator-height = 2
|
||||||
|
|
||||||
|
GtkWindow::resize-grip-height = 2
|
||||||
|
GtkWindow::resize-grip-width = 2
|
||||||
|
|
||||||
|
WnckTasklist::fade-overlay-rect = 0
|
||||||
|
|
||||||
|
GnomeHRef::link_color = @link_color
|
||||||
|
GtkHTML::link-color = @link_color
|
||||||
|
GtkIMHtmlr::hyperlink-color = @link_color
|
||||||
|
GtkIMHtml::hyperlink-color = @link_color
|
||||||
|
GtkWidget::link-color = @link_color
|
||||||
|
GtkWidget::visited-link-color = @text_color
|
||||||
|
|
||||||
|
GtkToolbar::shadow-type = GTK_SHADOW_NONE # Makes toolbars flat and unified
|
||||||
|
GtkMenuBar::shadow-type = GTK_SHADOW_NONE # Makes menubars flat and unified
|
||||||
|
|
||||||
|
xthickness = 2
|
||||||
|
ythickness = 2
|
||||||
|
|
||||||
|
fg[NORMAL] = @fg_color
|
||||||
|
fg[PRELIGHT] = @fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||||
|
|
||||||
|
bg[NORMAL] = @bg_color
|
||||||
|
bg[PRELIGHT] = shade (1.02, @bg_color)
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = shade (0.9, @bg_color)
|
||||||
|
bg[INSENSITIVE] = @bg_color
|
||||||
|
|
||||||
|
base[NORMAL] = @base_color
|
||||||
|
base[PRELIGHT] = shade (0.95, @base_color)
|
||||||
|
base[SELECTED] = @selected_bg_color
|
||||||
|
base[ACTIVE] = @selected_bg_color
|
||||||
|
base[INSENSITIVE] = shade (0.85, @base_color)
|
||||||
|
|
||||||
|
text[NORMAL] = @text_color
|
||||||
|
text[PRELIGHT] = @text_color
|
||||||
|
text[SELECTED] = @selected_fg_color
|
||||||
|
text[ACTIVE] = @selected_fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
animation = FALSE
|
||||||
|
arrowstyle = 1 # 0 = normal arrows, 1 = filled arrows
|
||||||
|
border_shades = { 1.0, 1.0 } # gradient to draw on border
|
||||||
|
border_colors = { mix(0.2, @fg_color, @bg_color), mix(0.2, @fg_color, @bg_color) }
|
||||||
|
colorize_scrollbar = FALSE
|
||||||
|
comboboxstyle = 0 # 0 = normal combobox, 1 = colorized combobox below arrow
|
||||||
|
contrast = 0.8 # overal contrast with borders
|
||||||
|
focusstyle = 3 # 0 = none, 1 = grey dotted, 2 = colored with fill, 3 = colored glow
|
||||||
|
glazestyle = 0 # 0 = flat highlight, 1 = curved highlight, 2 = concave, 3 = top curved highlight, 4 = beryl highlight
|
||||||
|
glowstyle = 0 # 0 = glow on top, 1 = glow on bottom, 2 = glow on top and bottom, 3 = glow on middle vertically, 4 = glow on middle horizontally, 5 = glow on all sides
|
||||||
|
glow_shade = 1.0 # amount of glow
|
||||||
|
gradient_shades = { 1.0, 1.0, 1.0, 1.0 } # gradient to draw on widgets
|
||||||
|
highlight_shade = 1.0 # amount of highlight
|
||||||
|
lightborder_shade = 1.0 # amount of inset light border
|
||||||
|
lightborderstyle = 1 # 0 = lightborder on top side, 1 = lightborder on all sides
|
||||||
|
listviewheaderstyle = 0 # 0 = flat, 1 = glassy, 2 = raised
|
||||||
|
listviewstyle = 0 # 0 = none, 1 = dotted, 2 = line
|
||||||
|
menubaritemstyle = 0 # 0 = menuitem look, 1 = button look
|
||||||
|
menubarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped
|
||||||
|
menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped
|
||||||
|
menustyle = 0 # 0 = none, 1 = vertical striped
|
||||||
|
progressbarstyle = 0 # 0 = none, 1 = diagonal striped, 2 = vertical striped
|
||||||
|
reliefstyle = 0 # 0 = flat, 1 = inset, 2 = shadow, 3 = shadow with gradient, 4 = stronger shadow with gradient
|
||||||
|
roundness = 4# roundness of widgets
|
||||||
|
scrollbarstyle = 0 # 0 = none, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles
|
||||||
|
sliderstyle = 0 # 0 = none, 1 = handles
|
||||||
|
stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles
|
||||||
|
toolbarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-wide" {
|
||||||
|
xthickness = 6
|
||||||
|
ythickness = 6
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-wider" {
|
||||||
|
xthickness = 10
|
||||||
|
ythickness = 10
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-thin" {
|
||||||
|
xthickness = 1
|
||||||
|
ythickness = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Notebook
|
||||||
|
|
||||||
|
style "clearlooks-notebook-bg" {
|
||||||
|
bg[NORMAL] = @bg_color
|
||||||
|
bg[ACTIVE] = shade (0.80, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "clearlooks-notebook" = "clearlooks-notebook-bg" {
|
||||||
|
xthickness = 8
|
||||||
|
ythickness = 4
|
||||||
|
|
||||||
|
engine "clearlooks" {
|
||||||
|
radius = 0.1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Various Standard Widgets
|
||||||
|
|
||||||
|
style "murrine-button" = "murrine-wider" {
|
||||||
|
bg[NORMAL] = @btn_bg_color
|
||||||
|
bg[PRELIGHT] = shade (1.04, @btn_bg_color)
|
||||||
|
bg[SELECTED] = mix (0.5, @selected_bg_color, @bg_color)
|
||||||
|
bg[ACTIVE] = shade (0.95, @btn_bg_color)
|
||||||
|
bg[INSENSITIVE] = shade (0.75, @btn_bg_color)
|
||||||
|
xthickness = 10
|
||||||
|
ythickness = 10
|
||||||
|
#xthickness = 5
|
||||||
|
#ythickness = 5
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) }
|
||||||
|
roundness = 4
|
||||||
|
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-buttonlabel" {
|
||||||
|
fg[NORMAL] = @btn_fg_color
|
||||||
|
fg[PRELIGHT] = @btn_fg_color
|
||||||
|
fg[SELECTED] = @btn_fg_color
|
||||||
|
fg[ACTIVE] = @btn_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color)
|
||||||
|
|
||||||
|
text[NORMAL] = @btn_fg_color
|
||||||
|
text[PRELIGHT] = @btn_fg_color
|
||||||
|
text[SELECTED] = @btn_fg_color
|
||||||
|
text[ACTIVE] = @btn_fg_color
|
||||||
|
text[INSENSITIVE] = @btn_fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-comboboxtext" = "murrine-buttonlabel" {
|
||||||
|
xthickness = 10
|
||||||
|
ythickness = 10
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-togglebutton" = "murrine-buttonlabel" {
|
||||||
|
xthickness = 10
|
||||||
|
ythickness = 10
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-radiocheck" = "murrine-togglebutton" {
|
||||||
|
text[NORMAL] = @accent_bg_color
|
||||||
|
text[PRELIGHT] = @accent_bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-scrollbar" {
|
||||||
|
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
|
||||||
|
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
|
||||||
|
bg[ACTIVE] = @selected_bg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 4
|
||||||
|
contrast = 0.0
|
||||||
|
border_shades = { 0.9, 0.9 }
|
||||||
|
trough_shades = { 0.97, 0.97 }
|
||||||
|
trough_border_shades = { 1.0, 1.0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-overlay-scrollbar" {
|
||||||
|
bg[ACTIVE] = shade (0.8, @bg_color)
|
||||||
|
bg[INSENSITIVE] = shade (0.97, @bg_color)
|
||||||
|
|
||||||
|
base[SELECTED] = shade (0.6, @bg_color)
|
||||||
|
base[INSENSITIVE] = shade (0.85, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-scale" = "murrine-thin" {
|
||||||
|
bg[NORMAL] = @btn_bg_color
|
||||||
|
bg[ACTIVE] = mix(0.2, @fg_color, @bg_color)
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[INSENSITIVE] = mix(0.95, @bg_color, @btn_bg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 25
|
||||||
|
#roundness = 4
|
||||||
|
gradient_shades = { 1.08, 1.08, 1.08, 1.08 }
|
||||||
|
#border_shades = { 0.5, 0.5 }
|
||||||
|
border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) }
|
||||||
|
#trough_shades = { 1.08, 1.08 }
|
||||||
|
trough_border_shades = { 0.8, 0.8 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-progressbar" = "murrine-thin" {
|
||||||
|
bg[NORMAL] = @bg_color
|
||||||
|
bg[ACTIVE] = mix(0.08, @bg_color, @base_color)
|
||||||
|
|
||||||
|
fg[PRELIGHT] = @selected_fg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 4
|
||||||
|
border_shades = { 1.2, 1.2 }
|
||||||
|
trough_border_shades = { 0.8, 0.8 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-treeview-header" = "murrine-button" {
|
||||||
|
fg[NORMAL] = @fg_color
|
||||||
|
fg[PRELIGHT] = @fg_color
|
||||||
|
fg[SELECTED] = @fg_color
|
||||||
|
fg[ACTIVE] = @fg_color
|
||||||
|
fg[INSENSITIVE] = mix(0.20, @bg_color, @fg_color)
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-treeview" {
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-frame" = "murrine-wide" {
|
||||||
|
bg[NORMAL] = mix(0.08, @fg_color, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-frame-title" {
|
||||||
|
fg[NORMAL] = lighter (@fg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-tooltips" {
|
||||||
|
xthickness = 10
|
||||||
|
ythickness = 10
|
||||||
|
|
||||||
|
bg[NORMAL] = @tooltip_bg_color
|
||||||
|
bg[SELECTED] = @tooltip_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @tooltip_fg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
textstyle = 0
|
||||||
|
roundness = 4
|
||||||
|
rgba = FALSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-spinbutton" = "murrine-button" {
|
||||||
|
xthickness = 10
|
||||||
|
ythickness = 10
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "clearlooks-radiocheck" = "murrine-default" {
|
||||||
|
bg[SELECTED] = @base_color
|
||||||
|
bg[PRELIGHT] = @bg_color
|
||||||
|
|
||||||
|
text[NORMAL] = @accent_bg_color
|
||||||
|
text[PRELIGHT] = @accent_bg_color
|
||||||
|
|
||||||
|
engine "clearlooks" {
|
||||||
|
radius = 4.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "clearlooks-base-radiocheck" = "clearlooks-radiocheck" {
|
||||||
|
bg[PRELIGHT] = @bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "clearlooks-radiocheck-label" = "clearlooks-radiocheck" {
|
||||||
|
fg[NORMAL] = @fg_color
|
||||||
|
fg[PRELIGHT] = @fg_color
|
||||||
|
fg[SELECTED] = @fg_color
|
||||||
|
fg[ACTIVE] = @fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-entry" = "murrine-wider" {
|
||||||
|
text[NORMAL] = @text_color
|
||||||
|
text[PRELIGHT] = @text_color
|
||||||
|
text[SELECTED] = @text_color
|
||||||
|
text[ACTIVE] = @text_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
|
||||||
|
|
||||||
|
xthickness = 10
|
||||||
|
ythickness = 10
|
||||||
|
engine "murrine" {
|
||||||
|
#border_shades = { 1.15, 1.15 }
|
||||||
|
border_colors = { mix(0.22, @text_color, @base_color), mix(0.22, @text_color, @base_color) }
|
||||||
|
roundness = 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "metacity-frame" = "murrine-default" {
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-statusbar" { }
|
||||||
|
style "murrine-comboboxentry" = "murrine-entry" { }
|
||||||
|
style "murrine-hscale" = "murrine-scale" { }
|
||||||
|
style "murrine-vscale" = "murrine-scale" { }
|
||||||
|
style "murrine-hscrollbar" = "murrine-scrollbar" { }
|
||||||
|
style "murrine-vscrollbar" = "murrine-scrollbar" { }
|
||||||
|
|
||||||
|
# Menus
|
||||||
|
|
||||||
|
style "murrine-menu" = "murrine-thin" {
|
||||||
|
bg[NORMAL] = @menu_bg_color
|
||||||
|
bg[PRELIGHT] = @selected_bg_color
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = @menu_bg_color
|
||||||
|
bg[INSENSITIVE] = @menu_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color
|
||||||
|
fg[PRELIGHT] = @selected_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @selected_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||||
|
|
||||||
|
text[NORMAL] = @menu_fg_color
|
||||||
|
text[PRELIGHT] = @selected_fg_color
|
||||||
|
text[SELECTED] = @selected_fg_color
|
||||||
|
text[ACTIVE] = @selected_fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-menu-item" = "murrine-wider" {
|
||||||
|
bg[PRELIGHT] = @selected_bg_color
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = @selected_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color # Fix for XFCE menu text
|
||||||
|
fg[PRELIGHT] = @selected_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @selected_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
textstyle = 0
|
||||||
|
border_shades = { 1.2, 1.2 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-separator-menu-item" = "murrine-thin" { }
|
||||||
|
|
||||||
|
style "murrine-menubar" {
|
||||||
|
bg[NORMAL] = @menubar_bg_color
|
||||||
|
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
|
||||||
|
bg[INSENSITIVE] = @menubar_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menubar_fg_color
|
||||||
|
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
|
||||||
|
fg[SELECTED] = shade (1.08, @menubar_fg_color)
|
||||||
|
fg[ACTIVE] = @menubar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-menubaritem" {
|
||||||
|
bg[NORMAL] = @menubar_bg_color
|
||||||
|
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
|
||||||
|
bg[INSENSITIVE] = @menubar_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menubar_fg_color
|
||||||
|
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
|
||||||
|
fg[SELECTED] = shade (1.08, @menubar_fg_color)
|
||||||
|
fg[ACTIVE] = @menubar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Toolbars
|
||||||
|
|
||||||
|
style "murrine-toolbar" = "murrine-thin" {
|
||||||
|
bg[NORMAL] = @toolbar_bg_color
|
||||||
|
bg[PRELIGHT] = shade (1.02, @toolbar_bg_color)
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = shade (0.9, @toolbar_bg_color)
|
||||||
|
bg[INSENSITIVE] = @toolbar_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @toolbar_fg_color
|
||||||
|
fg[PRELIGHT] = @toolbar_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @toolbar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-toolbutton" = "murrine-button" {
|
||||||
|
bg[NORMAL] = shade (1.08, @toolbar_bg_color)
|
||||||
|
bg[PRELIGHT] = shade (1.10, @toolbar_bg_color)
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
bg[ACTIVE] = shade (0.95, @toolbar_bg_color)
|
||||||
|
bg[INSENSITIVE] = shade (0.85, @toolbar_bg_color)
|
||||||
|
|
||||||
|
fg[NORMAL] = @toolbar_fg_color
|
||||||
|
fg[PRELIGHT] = @toolbar_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @toolbar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "murrine-toolbutton-label" = "murrine-toolbutton" {
|
||||||
|
fg[NORMAL] = @toolbar_fg_color
|
||||||
|
fg[PRELIGHT] = @toolbar_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[ACTIVE] = @toolbar_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class "GtkToolbar" style "murrine-toolbar"
|
||||||
|
class "GtkHandleBox" style "murrine-toolbar"
|
||||||
|
widget_class "*Toolbar*.*Separator*" style "murrine-toolbar"
|
||||||
|
|
||||||
|
# Panels
|
||||||
|
|
||||||
|
style "murrine-panel" = "murrine-thin" {
|
||||||
|
xthickness = 2
|
||||||
|
|
||||||
|
bg[NORMAL] = @panel_bg_color
|
||||||
|
bg[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||||
|
bg[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||||
|
bg[ACTIVE] = shade (0.8, @panel_bg_color)
|
||||||
|
bg[INSENSITIVE] = @panel_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @panel_fg_color
|
||||||
|
fg[PRELIGHT] = shade (1.08, @panel_fg_color)
|
||||||
|
fg[SELECTED] = shade (1.08, @panel_fg_color)
|
||||||
|
fg[ACTIVE] = @panel_fg_color
|
||||||
|
fg[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
|
||||||
|
|
||||||
|
base[NORMAL] = @panel_bg_color
|
||||||
|
base[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||||
|
base[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||||
|
base[ACTIVE] = shade (0.9, @panel_bg_color)
|
||||||
|
base[INSENSITIVE] = @panel_bg_color
|
||||||
|
|
||||||
|
text[NORMAL] = @panel_fg_color
|
||||||
|
text[PRELIGHT] = shade (1.08, @panel_fg_color)
|
||||||
|
text[SELECTED] = shade (1.08, @panel_fg_color)
|
||||||
|
text[ACTIVE] = @panel_fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
contrast = 0.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget "*PanelWidget*" style "murrine-panel"
|
||||||
|
widget "*PanelApplet*" style "murrine-panel"
|
||||||
|
widget "*fast-user-switch*" style "murrine-panel"
|
||||||
|
widget "*CPUFreq*Applet*" style "murrine-panel"
|
||||||
|
widget "*indicator-applet*" style "murrine-panel"
|
||||||
|
class "PanelApp*" style "murrine-panel"
|
||||||
|
class "PanelToplevel*" style "murrine-panel"
|
||||||
|
widget_class "*PanelToplevel*" style "murrine-panel"
|
||||||
|
widget_class "*notif*" style "murrine-panel"
|
||||||
|
widget_class "*Notif*" style "murrine-panel"
|
||||||
|
widget_class "*Tray*" style "murrine-panel"
|
||||||
|
widget_class "*tray*" style "murrine-panel"
|
||||||
|
widget_class "*computertemp*" style "murrine-panel"
|
||||||
|
widget_class "*Applet*Tomboy*" style "murrine-panel"
|
||||||
|
widget_class "*Applet*Netstatus*" style "murrine-panel"
|
||||||
|
widget "*gdm-user-switch-menubar*" style "murrine-panel"
|
||||||
|
|
||||||
|
# LXPanel (code based on Lubuntu-default theme's gtkrc file)
|
||||||
|
widget "*.tclock.*" style "murrine-panel"
|
||||||
|
widget "*.taskbar.*" style "murrine-panel"
|
||||||
|
widget_class "*GtkBgbox*" style "murrine-panel"
|
||||||
|
|
||||||
|
style "bold-panel-item" {
|
||||||
|
font_name = "Bold"
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget "*Panel*MenuBar*" style "bold-panel-item"
|
||||||
|
widget "*gimmie*" style "bold-panel-item"
|
||||||
|
|
||||||
|
# widget_class "*Mail*" style "murrine-panel" # Disabled to fix Evolution bug
|
||||||
|
# class "*Panel*" style "murrine-panel" # Disabled to fix bug
|
||||||
|
|
||||||
|
# XFCE Styles
|
||||||
|
|
||||||
|
style "workspace-switcher" = "murrine-panel" {
|
||||||
|
bg[ACTIVE] = @selected_bg_color
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfce-header" {
|
||||||
|
bg[NORMAL] = shade (0.9, @bg_color)
|
||||||
|
base[NORMAL] = shade (1.18, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfdesktop-windowlist" {
|
||||||
|
bg[NORMAL] = @base_color
|
||||||
|
fg[INSENSITIVE] = shade (0.95, @base_color)
|
||||||
|
text[INSENSITIVE] = shade (0.95, @base_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfdesktop-icon-view" {
|
||||||
|
XfdesktopIconView::label-alpha = 0
|
||||||
|
XfdesktopIconView::selected-label-alpha = 60
|
||||||
|
XfdesktopIconView::shadow-x-offset = 0
|
||||||
|
XfdesktopIconView::shadow-y-offset = 1
|
||||||
|
XfdesktopIconView::selected-shadow-x-offset = 0
|
||||||
|
XfdesktopIconView::selected-shadow-y-offset = 1
|
||||||
|
XfdesktopIconView::shadow-color = @fg_color
|
||||||
|
XfdesktopIconView::selected-shadow-color = @fg_color
|
||||||
|
XfdesktopIconView::shadow-blur-radius = 2
|
||||||
|
XfdesktopIconView::cell-spacing = 2
|
||||||
|
XfdesktopIconView::cell-padding = 6
|
||||||
|
XfdesktopIconView::cell-text-width-proportion = 1.9
|
||||||
|
|
||||||
|
fg[NORMAL] = @bg_color
|
||||||
|
fg[ACTIVE] = @bg_color
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfwm-tabwin" {
|
||||||
|
Xfwm4TabwinWidget::border-width = 1
|
||||||
|
Xfwm4TabwinWidget::border-alpha = 1.0
|
||||||
|
Xfwm4TabwinWidget::icon-size = 64
|
||||||
|
Xfwm4TabwinWidget::alpha = 1.0
|
||||||
|
Xfwm4TabwinWidget::border-radius = 2
|
||||||
|
|
||||||
|
bg[NORMAL] = @menu_bg_color
|
||||||
|
bg[SELECTED] = @menu_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
contrast = 0.0
|
||||||
|
border_shades = { 0.9, 0.9 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfwm-tabwin-button" {
|
||||||
|
font_name = "bold"
|
||||||
|
|
||||||
|
bg[SELECTED] = @selected_bg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfsm-logout" {
|
||||||
|
bg[NORMAL] = @menu_bg_color
|
||||||
|
bg[ACTIVE] = @menu_bg_color
|
||||||
|
bg[PRELIGHT] = shade (1.1, @menu_bg_color)
|
||||||
|
bg[SELECTED] = shade (0.5, @menu_bg_color)
|
||||||
|
bg[INSENSITIVE] = shade (1.3, @menu_bg_color)
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color
|
||||||
|
fg[PRELIGHT] = @menu_fg_color
|
||||||
|
|
||||||
|
text[NORMAL] = @menu_fg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "xfsm-logout-button" {
|
||||||
|
bg[NORMAL] = shade (1.2, @menu_bg_color)
|
||||||
|
bg[PRELIGHT] = shade (1.4, @menu_bg_color)
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget "*Pager*" style "workspace-switcher"
|
||||||
|
|
||||||
|
widget "*Xfce*Panel*" style "murrine-panel"
|
||||||
|
class "*Xfce*Panel*" style "murrine-panel"
|
||||||
|
|
||||||
|
# Thunar Styles
|
||||||
|
|
||||||
|
style "sidepane" {
|
||||||
|
base[NORMAL] = @bg_color
|
||||||
|
base[INSENSITIVE] = mix (0.4, shade (1.35, @selected_bg_color), shade (0.9, @base_color))
|
||||||
|
bg[NORMAL] = @bg_color
|
||||||
|
text[NORMAL] = mix (0.9, @fg_color, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "*ThunarShortcutsView*" style "sidepane"
|
||||||
|
widget_class "*ThunarTreeView*" style "sidepane"
|
||||||
|
widget_class "*ThunarLocationEntry*" style "murrine-entry"
|
||||||
|
|
||||||
|
style "whiskermenu" {
|
||||||
|
bg[NORMAL] = @menu_bg_color
|
||||||
|
bg[ACTIVE] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||||
|
bg[PRELIGHT] = @selected_bg_color
|
||||||
|
|
||||||
|
fg[NORMAL] = @menu_fg_color
|
||||||
|
fg[ACTIVE] = @menu_fg_color
|
||||||
|
fg[PRELIGHT] = @menu_fg_color
|
||||||
|
}
|
||||||
|
|
||||||
|
style "whiskermenu-scrollbar" = "murrine-scrollbar" {
|
||||||
|
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
|
||||||
|
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
|
||||||
|
bg[ACTIVE] = @selected_bg_color
|
||||||
|
|
||||||
|
engine "murrine" {
|
||||||
|
trough_shades = { 4.97, 4.97 }
|
||||||
|
trough_border_shades = { 5.0, 5.0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget "whiskermenu-window*" style "whiskermenu"
|
||||||
|
widget "*whisker*GtkVScrollbar" style "whiskermenu-scrollbar"
|
||||||
|
|
||||||
|
# Gtk2 Open-File Dialog
|
||||||
|
|
||||||
|
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.GtkTreeView*" style "sidepane"
|
||||||
|
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
|
||||||
|
# Google Chrome/Chromium Styles (requires 9.0.597 or newer)
|
||||||
|
|
||||||
|
style "chromium-toolbar-button" {
|
||||||
|
engine "murrine" {
|
||||||
|
roundness = 4
|
||||||
|
textstyle = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
style "chrome-gtk-frame" {
|
||||||
|
ChromeGtkFrame::frame-color = @titlebar_bg_color
|
||||||
|
ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
|
||||||
|
|
||||||
|
ChromeGtkFrame::frame-gradient-size = 0
|
||||||
|
ChromeGtkFrame::frame-gradient-color = @titlebar_bg_color
|
||||||
|
|
||||||
|
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
|
||||||
|
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
|
||||||
|
|
||||||
|
ChromeGtkFrame::incognito-frame-gradient-size = 0
|
||||||
|
ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color
|
||||||
|
|
||||||
|
ChromeGtkFrame::scrollbar-trough-color = @bg_color
|
||||||
|
ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color)
|
||||||
|
ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
class "ChromeGtkFrame" style "chrome-gtk-frame"
|
||||||
|
|
||||||
|
widget_class "*Chrom*Button*" style "chromium-toolbar-button"
|
||||||
|
|
||||||
|
# General Styles
|
||||||
|
|
||||||
|
class "GtkWidget" style "murrine-default"
|
||||||
|
|
||||||
|
class "GtkFrame" style "murrine-frame"
|
||||||
|
class "MetaFrames" style "metacity-frame"
|
||||||
|
class "GtkWindow" style "metacity-frame"
|
||||||
|
|
||||||
|
class "GtkSeparator" style "murrine-wide"
|
||||||
|
class "GtkCalendar" style "murrine-wide"
|
||||||
|
|
||||||
|
class "GtkSpinButton" style "murrine-spinbutton"
|
||||||
|
|
||||||
|
class "GtkScale" style "murrine-scale"
|
||||||
|
class "GtkVScale" style "murrine-vscale"
|
||||||
|
class "GtkHScale" style "murrine-hscale"
|
||||||
|
class "GtkScrollbar" style "murrine-scrollbar"
|
||||||
|
class "GtkVScrollbar" style "murrine-vscrollbar"
|
||||||
|
class "GtkHScrollbar" style "murrine-hscrollbar"
|
||||||
|
|
||||||
|
class "GtkEntry" style "murrine-entry"
|
||||||
|
|
||||||
|
widget_class "*<GtkNotebook>" style "clearlooks-notebook"
|
||||||
|
widget_class "*<GtkNotebook>*<GtkEventBox>" style "clearlooks-notebook-bg"
|
||||||
|
widget_class "*<GtkNotebook>*<GtkDrawingArea>" style "clearlooks-notebook-bg"
|
||||||
|
widget_class "*<GtkNotebook>*<GtkLayout>" style "clearlooks-notebook-bg"
|
||||||
|
widget_class "*.GtkNotebook.*.GtkViewport" style "clearlooks-notebook"
|
||||||
|
|
||||||
|
widget_class "*<GtkButton>" style "murrine-button"
|
||||||
|
widget_class "*<GtkStatusbar>*" style "murrine-statusbar"
|
||||||
|
widget_class "*<GtkProgress>" style "murrine-progressbar"
|
||||||
|
widget_class "*<GtkProgressBar>" style "murrine-progressbar"
|
||||||
|
|
||||||
|
widget_class "*<GtkComboBoxEntry>*" style "murrine-comboboxentry"
|
||||||
|
widget_class "*<GtkCombo>*" style "murrine-comboboxentry"
|
||||||
|
|
||||||
|
widget_class "*<GtkMenu>*" style "murrine-menu"
|
||||||
|
widget_class "*<GtkMenuItem>*" style "murrine-menu-item"
|
||||||
|
widget_class "*<GtkSeparatorMenuItem>*" style "murrine-separator-menu-item"
|
||||||
|
widget_class "*Menu*.*Sepa*" style "murrine-separator-menu-item"
|
||||||
|
widget_class "*<GtkMenuBar>*" style "murrine-menubar"
|
||||||
|
widget_class "*<GtkMenuBar>*<GtkMenuItem>*" style "murrine-menubaritem"
|
||||||
|
|
||||||
|
widget_class "*GtkToolButton*" style "murrine-toolbutton"
|
||||||
|
widget_class "*GtkToggleToolButton*" style "murrine-toolbutton"
|
||||||
|
widget_class "*GtkMenuToolButton*" style "murrine-toolbutton"
|
||||||
|
widget_class "*GtkToolbar*Button" style "murrine-toolbutton"
|
||||||
|
|
||||||
|
widget_class "*.<GtkFrame>.<GtkLabel>" style "murrine-frame-title"
|
||||||
|
|
||||||
|
widget_class "*.<GtkTreeView>*" style "murrine-treeview"
|
||||||
|
widget_class "*.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
widget_class "*.<GtkCTree>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
widget_class "*.<GtkList>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
widget_class "*.<GtkCList>.<GtkButton>" style "murrine-treeview-header"
|
||||||
|
|
||||||
|
widget_class "*.<GtkCheckButton>" style "clearlooks-radiocheck"
|
||||||
|
widget_class "*<GtkNotebook>.*.<GtkCheckButton>" style "clearlooks-base-radiocheck"
|
||||||
|
widget_class "*<GtkCellRendererToggle>" style "clearlooks-base-radiocheck"
|
||||||
|
|
||||||
|
widget "gtk-tooltip*" style "murrine-tooltips"
|
||||||
|
|
||||||
|
widget_class "*<GtkScrolledWindow>*<OsScrollbar>" style "murrine-overlay-scrollbar"
|
||||||
|
|
||||||
|
# Workarounds and Non-Standard Styling
|
||||||
|
|
||||||
|
style "text-is-fg-color-workaround" {
|
||||||
|
text[NORMAL] = @text_color
|
||||||
|
text[PRELIGHT] = @fg_color
|
||||||
|
text[SELECTED] = @selected_fg_color
|
||||||
|
text[ACTIVE] = @fg_color
|
||||||
|
text[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "*.<GtkComboBox>.<GtkCellView>" style "text-is-fg-color-workaround"
|
||||||
|
|
||||||
|
style "fg-is-text-color-workaround" {
|
||||||
|
fg[NORMAL] = @text_color
|
||||||
|
fg[PRELIGHT] = @text_color
|
||||||
|
fg[ACTIVE] = @selected_fg_color
|
||||||
|
fg[SELECTED] = @selected_fg_color
|
||||||
|
fg[INSENSITIVE] = darker (@fg_color)
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "*<GtkListItem>*" style "fg-is-text-color-workaround"
|
||||||
|
widget_class "*<GtkCList>" style "fg-is-text-color-workaround"
|
||||||
|
widget_class "*<EelEditableLabel>" style "fg-is-text-color-workaround"
|
||||||
|
|
||||||
|
style "murrine-evo-new-button-workaround" {
|
||||||
|
engine "murrine" {
|
||||||
|
toolbarstyle = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "murrine-evo-new-button-workaround"
|
||||||
|
|
||||||
|
style "inkscape-toolbar-fix" {
|
||||||
|
engine "murrine" {
|
||||||
|
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
|
||||||
|
highlight_shade = 1.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#widget "*GtkHandleBox*" style "inkscape-toolbar-fix"
|
||||||
|
#widget "*HandleBox*CommandsToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
#widget "*HandleBox*SnapToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*SelectToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*NodeToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*TweakToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*ZoomToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*StarToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*RectToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*3DBoxToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*ArcToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*SpiralToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*PencilToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*PenToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*CalligraphyToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*EraserToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*LPEToolToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*DropperToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*ConnectorToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
widget "*HandleBox*PaintbucketToolbar*" style "inkscape-toolbar-fix"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
style "gimp-default-style" {
|
||||||
|
# Uncommenting this line allows to set a different (smaller) font for GIMP.
|
||||||
|
#
|
||||||
|
# font_name = "sans 8"
|
||||||
|
# Enabling the following line for some reason breaks toolbox resize
|
||||||
|
# increment calculation. You can enable it to get an even smaller GUI
|
||||||
|
# but need to restart GIMP after the theme change.
|
||||||
|
#
|
||||||
|
# GtkWidget::focus-padding = 0
|
||||||
|
GtkOptionMenu::indicator-size = { 15, 25 }
|
||||||
|
GtkOptionMenu::indicator-spacing = { 10, 8, 4, 4 }
|
||||||
|
GtkPaned::handle-size = 5
|
||||||
|
GimpDockWindow::default-height = 600
|
||||||
|
GimpDock::font-scale = 1.0
|
||||||
|
GimpMenuDock::minimal-width = 400
|
||||||
|
GimpToolPalette::tool-icon-size = large-toolbar
|
||||||
|
GimpToolPalette::button-relief = none
|
||||||
|
GimpDockbook::tab-border = 0
|
||||||
|
GimpDockbook::tab-icon-size = button
|
||||||
|
GimpColorNotebook::tab-border = 0
|
||||||
|
GimpColorNotebook::tab-icon-size = button
|
||||||
|
GimpDeviceEditor::handle-size = 30
|
||||||
|
GimpDockable::content-border = 1
|
||||||
|
GimpEditor::content-spacing = 1
|
||||||
|
GimpEditor::button-spacing = 1
|
||||||
|
GimpEditor::button-icon-size = button
|
||||||
|
GimpDataEditor::minimal-height = 150
|
||||||
|
GimpFrame::label-spacing = 5
|
||||||
|
GtkDialog::content-area-border = 2
|
||||||
|
GtkDialog::button-spacing = 20
|
||||||
|
GtkDialog::action-area-border = 25
|
||||||
|
GimpUnitComboBox::appears-as-list = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
class "GtkWidget" style "gimp-default-style"
|
||||||
|
style "gimp-tool-dialog-style" = "gimp-default-style"
|
||||||
|
{
|
||||||
|
GtkDialog::action-area-border = 6
|
||||||
|
}
|
||||||
|
class "GimpToolDialog" style "gimp-tool-dialog-style"
|
||||||
|
style "gimp-grid-view-style" = "gimp-default-style"
|
||||||
|
{
|
||||||
|
bg[NORMAL] = { 1.0, 1.0, 1.0 }
|
||||||
|
}
|
||||||
|
widget "*GimpContainerGridView*GtkViewport*" style "gimp-grid-view-style"
|
||||||
|
style "gimp-dockable-style" = "gimp-default-style"
|
||||||
|
{
|
||||||
|
GimpFrame::label-bold = 0
|
||||||
|
GtkButton::focus-line_width = 1
|
||||||
|
GtkButton::focus-padding = 0
|
||||||
|
}
|
||||||
|
widget "*GimpDockable.*" style "gimp-dockable-style"
|
||||||
|
style "gimp-display-style" = "gimp-default-style"
|
||||||
|
{
|
||||||
|
GimpRuler::font-scale = 1.0
|
||||||
|
GimpUnitComboBox::label-scale = 1.0
|
||||||
|
GimpScaleComboBox::label-scale = 1.0
|
||||||
|
GtkComboBox::arrow-size = 20
|
||||||
|
GtkButton::inner-border = { 0, 0, 0, 0 }
|
||||||
|
GtkButton::focus-line-width = 0
|
||||||
|
GtkButton::focus-padding = 0
|
||||||
|
}
|
||||||
|
widget "*GimpDisplayShell.*" style "gimp-display-style"
|
||||||
|
style "gimp-overlay-style" = "gimp-display-style"
|
||||||
|
{
|
||||||
|
GtkButton::focus-line_width = 2
|
||||||
|
}
|
||||||
|
widget_class "*<GimpOverlayFrame>*" style "gimp-overlay-style"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Performance Fixes
|
||||||
|
|
||||||
|
style "performance-fix" {
|
||||||
|
engine "murrine" {
|
||||||
|
textstyle = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
widget_class "*gtkmm__GtkWindow*" style "performance-fix" # Inkscape
|
||||||
|
widget_class "*GimpDisplayShell*" style "performance-fix" # Gimp
|
||||||
|
widget_class "*GimpToolbox*" style "performance-fix"
|
||||||
|
widget_class "*GimpMenuDock*" style "performance-fix"
|
||||||
|
widget "*OOoFixed*" style "performance-fix" # Openoffice/Libreoffice
|
||||||
|
widget_class "*MozContainer*" style "performance-fix" # Firefox (Not sure if this one does anything though.)
|
||||||
|
|
||||||
|
widget_class "*XfceHeading*" style "xfce-header"
|
||||||
|
widget_class "*XfceDesktop*" style "xfdesktop-windowlist"
|
||||||
|
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
|
||||||
|
widget "xfwm4-tabwin*" style "xfwm-tabwin"
|
||||||
|
widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button"
|
||||||
|
widget_class "*XfsmLogoutDialog*" style "xfsm-logout"
|
||||||
|
widget_class "*XfsmLogoutDialog*GtkButton" style "xfsm-logout-button"
|
||||||
|
|
||||||
|
|
||||||
|
# button fg workarounds:
|
||||||
|
widget_class "*.<GtkButton>.<GtkLabel>" style "murrine-buttonlabel"
|
||||||
|
widget_class "*<GtkButton>*<GtkLabel>*" style:highest "murrine-buttonlabel"
|
||||||
|
widget_class "*<GtkCheckButton>*<GtkLabel>*" style:highest "clearlooks-radiocheck-label"
|
||||||
|
widget_class "*<GtkComboBoxText>*" style "murrine-comboboxtext"
|
||||||
|
widget_class "*<GtkToggleButton>*" style "murrine-togglebutton"
|
||||||
|
widget_class "*.<GtkCheckButton>" style "murrine-radiocheck"
|
||||||
|
widget_class "*<GtkComboBoxText>*<GtkEntry>*" style:highest "murrine-entry"
|
||||||
|
widget_class "*<GtkToolbar>*<GtkToolButton>*<GtkLabel>*" style:highest "murrine-toolbutton-label"
|
4456
.themes/Klaus/gtk-3.0/assets/all-assets.svg
Normal file
After Width: | Height: | Size: 154 KiB |
38
.themes/Klaus/gtk-3.0/assets/all-assets.txt
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
checkbox-checked-dark
|
||||||
|
checkbox-checked-insensitive-dark
|
||||||
|
checkbox-checked-insensitive
|
||||||
|
checkbox-checked
|
||||||
|
checkbox-mixed-dark
|
||||||
|
checkbox-mixed-insensitive-dark
|
||||||
|
checkbox-mixed-insensitive
|
||||||
|
checkbox-mixed
|
||||||
|
checkbox-unchecked-dark
|
||||||
|
checkbox-unchecked-insensitive-dark
|
||||||
|
checkbox-unchecked-insensitive
|
||||||
|
checkbox-unchecked
|
||||||
|
grid-selection-checked-dark
|
||||||
|
grid-selection-checked
|
||||||
|
grid-selection-unchecked-dark
|
||||||
|
grid-selection-unchecked
|
||||||
|
menuitem-checkbox-checked-hover
|
||||||
|
menuitem-checkbox-checked-insensitive
|
||||||
|
menuitem-checkbox-checked
|
||||||
|
menuitem-checkbox-mixed-hover
|
||||||
|
menuitem-checkbox-mixed-insensitive
|
||||||
|
menuitem-checkbox-mixed
|
||||||
|
menuitem-radio-checked-hover
|
||||||
|
menuitem-radio-checked-insensitive
|
||||||
|
menuitem-radio-checked
|
||||||
|
pane-handle
|
||||||
|
radio-checked-dark
|
||||||
|
radio-checked-insensitive-dark
|
||||||
|
radio-checked-insensitive
|
||||||
|
radio-checked
|
||||||
|
radio-mixed-dark
|
||||||
|
radio-mixed-insensitive-dark
|
||||||
|
radio-mixed-insensitive
|
||||||
|
radio-mixed
|
||||||
|
radio-unchecked-dark
|
||||||
|
radio-unchecked-insensitive-dark
|
||||||
|
radio-unchecked-insensitive
|
||||||
|
radio-unchecked
|
4
.themes/Klaus/gtk-3.0/assets/change_dpi.sh
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
for f in $@; do
|
||||||
|
rsvg-convert -d 300 -p 300 -f svg $f -o $f.bak ; mv $f.bak $f
|
||||||
|
done
|
10
.themes/Klaus/gtk-3.0/assets/checkbox-checked-dark.svg
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
||||||
|
<g id="surface1">
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#b8bb26;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
||||||
|
<g id="surface1">
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 14.550781 5.695312 L 118.78125 5.695312 C 123.371094 5.695312 127.117188 9.441406 127.117188 14.03125 L 127.117188 118.75 C 127.117188 123.371094 123.371094 127.082031 118.78125 127.082031 L 14.550781 127.082031 C 9.960938 127.082031 6.21875 123.371094 6.21875 118.75 L 6.21875 14.03125 C 6.21875 9.441406 9.960938 5.695312 14.550781 5.695312 Z M 14.550781 5.695312 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.5;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
||||||
|
<g id="surface1">
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 14.550781 5.695312 L 118.78125 5.695312 C 123.371094 5.695312 127.117188 9.441406 127.117188 14.03125 L 127.117188 118.75 C 127.117188 123.371094 123.371094 127.082031 118.78125 127.082031 L 14.550781 127.082031 C 9.960938 127.082031 6.21875 123.371094 6.21875 118.75 L 6.21875 14.03125 C 6.21875 9.441406 9.960938 5.695312 14.550781 5.695312 Z M 14.550781 5.695312 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.5;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
9
.themes/Klaus/gtk-3.0/assets/checkbox-checked.svg
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
||||||
|
<g id="surface1">
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#b8bb26;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
9
.themes/Klaus/gtk-3.0/assets/checkbox-mixed-dark.svg
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
||||||
|
<g id="surface1">
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#b8bb26;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
||||||
|
<g id="surface1">
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 14.453125 7.292969 L 119.402344 7.292969 C 124.25 7.292969 128.15625 11.101562 128.15625 15.851562 L 128.15625 118.554688 C 128.15625 123.273438 124.25 127.117188 119.402344 127.117188 L 14.453125 127.117188 C 9.601562 127.117188 5.695312 123.273438 5.695312 118.554688 L 5.695312 15.851562 C 5.695312 11.101562 9.601562 7.292969 14.453125 7.292969 Z M 14.453125 7.292969 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.5;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
||||||
|
<g id="surface1">
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 14.453125 7.292969 L 119.402344 7.292969 C 124.25 7.292969 128.15625 11.101562 128.15625 15.851562 L 128.15625 118.554688 C 128.15625 123.273438 124.25 127.117188 119.402344 127.117188 L 14.453125 127.117188 C 9.601562 127.117188 5.695312 123.273438 5.695312 118.554688 L 5.695312 15.851562 C 5.695312 11.101562 9.601562 7.292969 14.453125 7.292969 Z M 14.453125 7.292969 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#1d2021;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
||||||
|
<path style=" stroke:none;fill-rule:nonzero;fill:#d5c4a1;fill-opacity:0.5;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.2 KiB |