Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a4f7c6eef |
@@ -4,6 +4,3 @@
|
|||||||
[submodule "assets/yazi-catppuccin"]
|
[submodule "assets/yazi-catppuccin"]
|
||||||
path = assets/yazi-catppuccin
|
path = assets/yazi-catppuccin
|
||||||
url = https://github.com/catppuccin/yazi.git
|
url = https://github.com/catppuccin/yazi.git
|
||||||
[submodule "config/ghostty/.config/ghostty/shaders"]
|
|
||||||
path = config/ghostty/.config/ghostty/shaders
|
|
||||||
url = https://github.com/0xhckr/ghostty-shaders.git
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ https://github.com/user-attachments/assets/2550607a-48ea-4662-98ba-d26722b26b1b
|
|||||||
- Bar: ~~Waybar~~ | **Quickshell**
|
- Bar: ~~Waybar~~ | **Quickshell**
|
||||||
- Shell: (bash & fish) | **Zsh**
|
- Shell: (bash & fish) | **Zsh**
|
||||||
- Prompt: Oh My Posh | **Starship**
|
- Prompt: Oh My Posh | **Starship**
|
||||||
- Terminal: **Kitty** | WezTerm | Ghostty
|
- Terminal: **Kitty** & (WezTerm | **Ghostty**)
|
||||||
- Power Menu: **Wlogout** & Quickshell
|
- Power Menu: **Wlogout** & Quickshell
|
||||||
- Colorscheme: **Catppuccin Mocha**
|
- Colorscheme: **Catppuccin Mocha**
|
||||||
- App Launcher: ~~Rofi~~ | ~~Fuzzel~~ | **vicinae**
|
- App Launcher: ~~Rofi~~ | ~~Fuzzel~~ | **vicinae**
|
||||||
@@ -100,7 +100,7 @@ This feature is only enabled in Niri. Swww also manages wallpapers of the Hyprla
|
|||||||
## Wallpaper & Colortheme
|
## Wallpaper & Colortheme
|
||||||
|
|
||||||
The most suitable primary color (or so-called flavor) will be chosen from the [Catppuccin Mocha](https://catppuccin.com/palette/) palette and applied to various apps automatically after changing wallpaper. And also:
|
The most suitable primary color (or so-called flavor) will be chosen from the [Catppuccin Mocha](https://catppuccin.com/palette/) palette and applied to various apps automatically after changing wallpaper. And also:
|
||||||
|
|
||||||
- [wallpaper-chooser](https://github.com/Uyanide/Wallpaper_Chooser) to select wallpaper, which implements an Image Carousel with Qt Widgets.
|
- [wallpaper-chooser](https://github.com/Uyanide/Wallpaper_Chooser) to select wallpaper, which implements an Image Carousel with Qt Widgets.
|
||||||
- [backgrounds collection](https://github.com/Uyanide/backgrounds) for personal use.
|
- [backgrounds collection](https://github.com/Uyanide/backgrounds) for personal use.
|
||||||
|
|
||||||
|
|||||||
@@ -29,19 +29,24 @@ GUI_BASE_PKGS = [
|
|||||||
"ghostty", # alternative terminal emulator
|
"ghostty", # alternative terminal emulator
|
||||||
"misc", # miscellaneous GUI configs (e.g. *-flags)
|
"misc", # miscellaneous GUI configs (e.g. *-flags)
|
||||||
"mpd", # music player daemon
|
"mpd", # music player daemon
|
||||||
|
# "mpv", # media player
|
||||||
"wallpaper", # wallpapers & manager
|
"wallpaper", # wallpapers & manager
|
||||||
"qt6", # qt theming
|
"kvantum", # qt theming
|
||||||
"nwg-look", # gtk theming
|
"nwg-look", # gtk theming
|
||||||
"wezterm", # alternative terminal emulator
|
"wezterm", # alternative terminal emulator
|
||||||
]
|
]
|
||||||
|
|
||||||
# for Hyprland setup
|
# for Hyprland setup
|
||||||
HYPRLAND_PKGS = [
|
# HYPRLAND_PKGS = [
|
||||||
*GUI_BASE_PKGS,
|
# *GUI_BASE_PKGS,
|
||||||
"hypr", # hypr family
|
# "eww", # widgets
|
||||||
"hyprland", # wm config
|
# "hypr", # hypr family
|
||||||
"vicinae", # application launcher
|
# "hyprland", # wm config
|
||||||
]
|
# "mako", # notifications
|
||||||
|
# "rofi", # application launcher
|
||||||
|
# "waybar", # status bar
|
||||||
|
# "wlogout", # logout menu
|
||||||
|
# ]
|
||||||
|
|
||||||
# for Niri setup
|
# for Niri setup
|
||||||
NIRI_PKGS = [
|
NIRI_PKGS = [
|
||||||
@@ -57,10 +62,16 @@ PKGS = {
|
|||||||
"base": BASE_PKGS,
|
"base": BASE_PKGS,
|
||||||
"tui": TUI_PKGS,
|
"tui": TUI_PKGS,
|
||||||
"gui": GUI_BASE_PKGS,
|
"gui": GUI_BASE_PKGS,
|
||||||
"hyprland": HYPRLAND_PKGS,
|
# "hyprland": HYPRLAND_PKGS,
|
||||||
"niri": NIRI_PKGS,
|
"niri": NIRI_PKGS,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SESSION_NAME = {
|
||||||
|
"hyprland": "Hyprland",
|
||||||
|
"niri": "niri",
|
||||||
|
"default": "default",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
PKGS_PATH = Path(__file__).resolve().parent.resolve() / "config"
|
PKGS_PATH = Path(__file__).resolve().parent.resolve() / "config"
|
||||||
DEST_PATH = Path.home().expanduser()
|
DEST_PATH = Path.home().expanduser()
|
||||||
@@ -96,6 +107,12 @@ def unstow(pkg: str):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def switch(session: str):
|
||||||
|
subprocess.run(
|
||||||
|
[str(Path("~/.local/scripts/config-switch").expanduser()), session], check=True
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
if not check_deps():
|
if not check_deps():
|
||||||
exit(1)
|
exit(1)
|
||||||
@@ -130,6 +147,17 @@ def main():
|
|||||||
if is_unstow:
|
if is_unstow:
|
||||||
return # No need to switch session if we're just unstowing
|
return # No need to switch session if we're just unstowing
|
||||||
|
|
||||||
|
if args.package in SESSION_NAME:
|
||||||
|
session = SESSION_NAME[args.package]
|
||||||
|
else:
|
||||||
|
session = SESSION_NAME["default"]
|
||||||
|
|
||||||
|
try:
|
||||||
|
switch(session)
|
||||||
|
_log("INFO", f"Switched to session profile '{session}'.")
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
_log("ERROR", f"Failed to switch session profile '{session}': {e}")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|||||||
@@ -4,12 +4,38 @@ AccessModifierOffset: -2
|
|||||||
|
|
||||||
AlignConsecutiveAssignments: true
|
AlignConsecutiveAssignments: true
|
||||||
|
|
||||||
|
AllowAllArgumentsOnNextLine: false
|
||||||
|
|
||||||
|
AllowAllParametersOfDeclarationOnNextLine: false
|
||||||
|
|
||||||
|
AllowShortBlocksOnASingleLine: Empty
|
||||||
|
|
||||||
AllowShortCaseLabelsOnASingleLine: true
|
AllowShortCaseLabelsOnASingleLine: true
|
||||||
|
|
||||||
|
AllowShortFunctionsOnASingleLine: Inline
|
||||||
|
|
||||||
|
AllowShortLambdasOnASingleLine: All
|
||||||
|
|
||||||
|
# BreakAfterReturnType: All
|
||||||
|
|
||||||
BinPackArguments: false
|
BinPackArguments: false
|
||||||
|
|
||||||
BinPackParameters: false
|
BinPackParameters: false
|
||||||
|
|
||||||
|
ColumnLimit: 0
|
||||||
|
|
||||||
|
CompactNamespaces: false
|
||||||
|
|
||||||
|
ContinuationIndentWidth: 4
|
||||||
|
|
||||||
|
Cpp11BracedListStyle: true
|
||||||
|
|
||||||
|
EmptyLineBeforeAccessModifier: LogicalBlock
|
||||||
|
|
||||||
|
FixNamespaceComments: true
|
||||||
|
|
||||||
|
IncludeBlocks: Regroup
|
||||||
|
SortIncludes: true
|
||||||
IncludeCategories:
|
IncludeCategories:
|
||||||
- Regex: '^<ext/.*\.h>'
|
- Regex: '^<ext/.*\.h>'
|
||||||
Priority: 2
|
Priority: 2
|
||||||
@@ -22,10 +48,16 @@ IncludeCategories:
|
|||||||
|
|
||||||
IndentWidth: 4
|
IndentWidth: 4
|
||||||
|
|
||||||
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
||||||
|
|
||||||
InsertNewlineAtEOF: true
|
InsertNewlineAtEOF: true
|
||||||
|
|
||||||
|
MaxEmptyLinesToKeep: 1
|
||||||
|
|
||||||
TabWidth: 4
|
TabWidth: 4
|
||||||
|
|
||||||
|
UseTab: Never
|
||||||
|
|
||||||
SeparateDefinitionBlocks: Always
|
SeparateDefinitionBlocks: Always
|
||||||
|
|
||||||
ColumnLimit: 0
|
QualifierAlignment: Left
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
}
|
}
|
||||||
. "$HOME/.local/snippets/apply-color-helper"
|
. "$HOME/.local/snippets/apply-color-helper"
|
||||||
|
|
||||||
file_fish="$HOME/.config/fish/rc.d/60-fetch.fish"
|
file_fish="$HOME/.config/fish/conf.d/60-fetch.fish"
|
||||||
file_zsh="$HOME/.config/zsh/conf.d/60-fetch.zsh"
|
file_zsh="$HOME/.config/zsh/conf.d/60-fetch.zsh"
|
||||||
|
|
||||||
# "#rrggbb" format is only available in and after fastfetch v2.42.0,
|
# "#rrggbb" format is only available in and after fastfetch v2.42.0,
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
shaders
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
theme = Catppuccin Mocha
|
||||||
|
|
||||||
|
background-opacity = 0.75
|
||||||
|
background-blur = true
|
||||||
|
|
||||||
|
window-padding-x = 10
|
||||||
|
window-padding-y = 10
|
||||||
|
|
||||||
|
keybind = ctrl+shift+r=reload_config
|
||||||
|
|
||||||
|
keybind = ctrl+shift+h=write_screen_file:copy
|
||||||
|
keybind = ctrl+shift+j=text:ghostty-capture\n
|
||||||
|
keybind = ctrl+enter=unbind
|
||||||
|
|
||||||
|
command = exec /bin/zsh
|
||||||
|
|
||||||
|
confirm-close-surface = false
|
||||||
|
|
||||||
|
font-family = monospace
|
||||||
|
font-size = 12
|
||||||
|
|
||||||
|
cursor-style = bar
|
||||||
|
adjust-cursor-thickness = 3
|
||||||
|
|
||||||
|
custom-shader = cursor-shaders/cursor-smear.glsl
|
||||||
|
|
||||||
|
quit-after-last-window-closed = false
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
shaders
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
theme = Catppuccin Mocha
|
theme = Catppuccin Mocha
|
||||||
|
|
||||||
background-opacity = 0.9
|
background-opacity = 0.95
|
||||||
background-blur = true
|
background-blur = true
|
||||||
|
|
||||||
window-padding-x = 10
|
window-padding-x = 10
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
// https://github.com/KroneCorylus/ghostty-shader-playground/blob/main/shaders/cursor_smear.glsl
|
||||||
|
|
||||||
|
float getSdfRectangle(in vec2 p, in vec2 xy, in vec2 b)
|
||||||
|
{
|
||||||
|
vec2 d = abs(p - xy) - b;
|
||||||
|
return length(max(d, 0.0)) + min(max(d.x, d.y), 0.0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Based on Inigo Quilez's 2D distance functions article: https://iquilezles.org/articles/distfunctions2d/
|
||||||
|
// Potencially optimized by eliminating conditionals and loops to enhance performance and reduce branching
|
||||||
|
|
||||||
|
float seg(in vec2 p, in vec2 a, in vec2 b, inout float s, float d) {
|
||||||
|
vec2 e = b - a;
|
||||||
|
vec2 w = p - a;
|
||||||
|
vec2 proj = a + e * clamp(dot(w, e) / dot(e, e), 0.0, 1.0);
|
||||||
|
float segd = dot(p - proj, p - proj);
|
||||||
|
d = min(d, segd);
|
||||||
|
|
||||||
|
float c0 = step(0.0, p.y - a.y);
|
||||||
|
float c1 = 1.0 - step(0.0, p.y - b.y);
|
||||||
|
float c2 = 1.0 - step(0.0, e.x * w.y - e.y * w.x);
|
||||||
|
float allCond = c0 * c1 * c2;
|
||||||
|
float noneCond = (1.0 - c0) * (1.0 - c1) * (1.0 - c2);
|
||||||
|
float flip = mix(1.0, -1.0, step(0.5, allCond + noneCond));
|
||||||
|
s *= flip;
|
||||||
|
return d;
|
||||||
|
}
|
||||||
|
|
||||||
|
float getSdfParallelogram(in vec2 p, in vec2 v0, in vec2 v1, in vec2 v2, in vec2 v3) {
|
||||||
|
float s = 1.0;
|
||||||
|
float d = dot(p - v0, p - v0);
|
||||||
|
|
||||||
|
d = seg(p, v0, v3, s, d);
|
||||||
|
d = seg(p, v1, v0, s, d);
|
||||||
|
d = seg(p, v2, v1, s, d);
|
||||||
|
d = seg(p, v3, v2, s, d);
|
||||||
|
|
||||||
|
return s * sqrt(d);
|
||||||
|
}
|
||||||
|
|
||||||
|
vec2 normalize(vec2 value, float isPosition) {
|
||||||
|
return (value * 2.0 - (iResolution.xy * isPosition)) / iResolution.y;
|
||||||
|
}
|
||||||
|
|
||||||
|
float antialising(float distance) {
|
||||||
|
return 1. - smoothstep(0., normalize(vec2(2., 2.), 0.).x, distance);
|
||||||
|
}
|
||||||
|
|
||||||
|
float determineStartVertexFactor(vec2 a, vec2 b) {
|
||||||
|
// Conditions using step
|
||||||
|
float condition1 = step(b.x, a.x) * step(a.y, b.y); // a.x < b.x && a.y > b.y
|
||||||
|
float condition2 = step(a.x, b.x) * step(b.y, a.y); // a.x > b.x && a.y < b.y
|
||||||
|
|
||||||
|
// If neither condition is met, return 1 (else case)
|
||||||
|
return 1.0 - max(condition1, condition2);
|
||||||
|
}
|
||||||
|
|
||||||
|
vec2 getRectangleCenter(vec4 rectangle) {
|
||||||
|
return vec2(rectangle.x + (rectangle.z / 2.), rectangle.y - (rectangle.w / 2.));
|
||||||
|
}
|
||||||
|
float ease(float x) {
|
||||||
|
return pow(1.0 - x, 3.0);
|
||||||
|
}
|
||||||
|
vec4 saturate(vec4 color, float factor) {
|
||||||
|
float gray = dot(color, vec4(0.299, 0.587, 0.114, 0.)); // luminance
|
||||||
|
return mix(vec4(gray), color, factor);
|
||||||
|
}
|
||||||
|
|
||||||
|
vec4 TRAIL_COLOR = iCurrentCursorColor;
|
||||||
|
const float OPACITY = 0.6;
|
||||||
|
const float DURATION = 0.3; //IN SECONDS
|
||||||
|
|
||||||
|
void mainImage(out vec4 fragColor, in vec2 fragCoord)
|
||||||
|
{
|
||||||
|
|
||||||
|
#if !defined(WEB)
|
||||||
|
fragColor = texture(iChannel0, fragCoord.xy / iResolution.xy);
|
||||||
|
#endif
|
||||||
|
// Normalization for fragCoord to a space of -1 to 1;
|
||||||
|
vec2 vu = normalize(fragCoord, 1.);
|
||||||
|
vec2 offsetFactor = vec2(-.5, 0.5);
|
||||||
|
|
||||||
|
// Normalization for cursor position and size;
|
||||||
|
// cursor xy has the postion in a space of -1 to 1;
|
||||||
|
// zw has the width and height
|
||||||
|
vec4 currentCursor = vec4(normalize(iCurrentCursor.xy, 1.), normalize(iCurrentCursor.zw, 0.));
|
||||||
|
vec4 previousCursor = vec4(normalize(iPreviousCursor.xy, 1.), normalize(iPreviousCursor.zw, 0.));
|
||||||
|
|
||||||
|
// When drawing a parellelogram between cursors for the trail i need to determine where to start at the top-left or top-right vertex of the cursor
|
||||||
|
float vertexFactor = determineStartVertexFactor(currentCursor.xy, previousCursor.xy);
|
||||||
|
float invertedVertexFactor = 1.0 - vertexFactor;
|
||||||
|
|
||||||
|
// Set every vertex of my parellogram
|
||||||
|
vec2 v0 = vec2(currentCursor.x + currentCursor.z * vertexFactor, currentCursor.y - currentCursor.w);
|
||||||
|
vec2 v1 = vec2(currentCursor.x + currentCursor.z * invertedVertexFactor, currentCursor.y);
|
||||||
|
vec2 v2 = vec2(previousCursor.x + currentCursor.z * invertedVertexFactor, previousCursor.y);
|
||||||
|
vec2 v3 = vec2(previousCursor.x + currentCursor.z * vertexFactor, previousCursor.y - previousCursor.w);
|
||||||
|
|
||||||
|
float sdfCurrentCursor = getSdfRectangle(vu, currentCursor.xy - (currentCursor.zw * offsetFactor), currentCursor.zw * 0.5);
|
||||||
|
float sdfTrail = getSdfParallelogram(vu, v0, v1, v2, v3);
|
||||||
|
|
||||||
|
float progress = clamp((iTime - iTimeCursorChange) / DURATION, 0.0, 1.0);
|
||||||
|
float easedProgress = ease(progress);
|
||||||
|
// Distance between cursors determine the total length of the parallelogram;
|
||||||
|
vec2 centerCC = getRectangleCenter(currentCursor);
|
||||||
|
vec2 centerCP = getRectangleCenter(previousCursor);
|
||||||
|
float lineLength = distance(centerCC, centerCP);
|
||||||
|
|
||||||
|
vec4 newColor = vec4(fragColor);
|
||||||
|
|
||||||
|
vec4 trail = TRAIL_COLOR;
|
||||||
|
trail = saturate(trail, 2.5);
|
||||||
|
// Draw trail
|
||||||
|
newColor = mix(newColor, trail, antialising(sdfTrail));
|
||||||
|
// Draw current cursor
|
||||||
|
newColor = mix(newColor, trail, antialising(sdfCurrentCursor));
|
||||||
|
newColor = mix(newColor, fragColor, step(sdfCurrentCursor, 0.));
|
||||||
|
// newColor = mix(fragColor, newColor, OPACITY);
|
||||||
|
fragColor = mix(fragColor, newColor, step(sdfCurrentCursor, easedProgress * lineLength));
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
theme = "catppuccin_mocha"
|
theme = "catppuccin_mocha"
|
||||||
|
|
||||||
[editor]
|
[editor]
|
||||||
# default-yank-register = "+"
|
default-yank-register = "+"
|
||||||
shell = ["bash", "-c"]
|
shell = ["bash", "-c"]
|
||||||
line-number = "relative"
|
line-number = "relative"
|
||||||
indent-guides.render = true
|
indent-guides.render = true
|
||||||
|
|||||||
@@ -5,26 +5,3 @@ indent = { tab-width = 4, unit = " " }
|
|||||||
[[language]]
|
[[language]]
|
||||||
name = "cpp"
|
name = "cpp"
|
||||||
indent = { tab-width = 4, unit = " " }
|
indent = { tab-width = 4, unit = " " }
|
||||||
|
|
||||||
[[language]]
|
|
||||||
name = "python"
|
|
||||||
formatter = { command = "ruff", args = ["format", "-"] }
|
|
||||||
language-servers = ["ruff", "pyright"]
|
|
||||||
|
|
||||||
[[language]]
|
|
||||||
name = "rust"
|
|
||||||
formatter = { command = "rustfmt" }
|
|
||||||
|
|
||||||
[[language]]
|
|
||||||
name = "json"
|
|
||||||
auto-format = false
|
|
||||||
formatter = { command = "prettier", args = ["--parser", "json"] }
|
|
||||||
|
|
||||||
[[language]]
|
|
||||||
name = "yaml"
|
|
||||||
auto-format = false
|
|
||||||
formatter = { command = "prettier", args = ["--parser", "yaml"] }
|
|
||||||
|
|
||||||
[language-server.ruff]
|
|
||||||
command = "ruff"
|
|
||||||
args = ["server"]
|
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
$lock_cmd = pidof hyprlock || hyprlock
|
$lock_cmd = pidof hyprlock || hyprlock
|
||||||
$lock_cmd = /home/kolkas/.local/scripts/lock-now
|
$suspend_cmd = pidof steam || systemctl suspend || loginctl suspend # fuck nvidia
|
||||||
$suspend_cmd = systemctl suspend || loginctl suspend
|
|
||||||
|
|
||||||
general {
|
general {
|
||||||
lock_cmd = $lock_cmd
|
lock_cmd = $lock_cmd
|
||||||
before_sleep_cmd = $lock_cmd
|
before_sleep_cmd = loginctl lock-session
|
||||||
}
|
}
|
||||||
|
|
||||||
listener {
|
listener {
|
||||||
@@ -15,7 +14,7 @@ listener {
|
|||||||
listener {
|
listener {
|
||||||
timeout = 300 # 5mins
|
timeout = 300 # 5mins
|
||||||
on-timeout = hyprctl dispatch dpms off || niri msg action power-off-monitors
|
on-timeout = hyprctl dispatch dpms off || niri msg action power-off-monitors
|
||||||
on-resume = hyprctl dispatch dpms on || niri msg action power-on-monitors
|
on-resume = hyprctl dispatch dpms on || true
|
||||||
}
|
}
|
||||||
|
|
||||||
#listener {
|
#listener {
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
-- https://wiki.hypr.land/Configuring/Start/
|
|
||||||
|
|
||||||
-- require("hyprland/envs") -- managed by uwsm
|
|
||||||
|
|
||||||
require("hyprland/monitors")
|
|
||||||
require("hyprland/permissions")
|
|
||||||
require("hyprland/input")
|
|
||||||
|
|
||||||
require("hyprland/looks")
|
|
||||||
require("hyprland/animations")
|
|
||||||
require("hyprland/layouts")
|
|
||||||
require("hyprland/rules")
|
|
||||||
require("hyprland/gestures")
|
|
||||||
require("hyprland/binds")
|
|
||||||
|
|
||||||
require("hyprland/execs")
|
|
||||||
require("parra")
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
-- Windows use springs so they settle with weight; everything else uses short
|
|
||||||
-- asymmetric beziers, entering with deceleration and leaving faster.
|
|
||||||
|
|
||||||
hl.curve("standard", { type = "bezier", points = { { 0.2, 0.0 }, { 0.0, 1.0 } } })
|
|
||||||
hl.curve("decel", { type = "bezier", points = { { 0.05, 0.7 }, { 0.1, 1.0 } } })
|
|
||||||
hl.curve("accel", { type = "bezier", points = { { 0.3, 0.0 }, { 0.8, 0.15 } } })
|
|
||||||
hl.curve("linear", { type = "bezier", points = { { 0.0, 0.0 }, { 1.0, 1.0 } } })
|
|
||||||
|
|
||||||
-- Stiffness sets the speed, dampening how much it overshoots.
|
|
||||||
hl.curve("snappy", { type = "spring", mass = 1, stiffness = 300, dampening = 26 })
|
|
||||||
hl.curve("smooth", { type = "spring", mass = 1, stiffness = 190, dampening = 24 })
|
|
||||||
hl.curve("lively", { type = "spring", mass = 1, stiffness = 250, dampening = 19 })
|
|
||||||
|
|
||||||
-- Unset leaves inherit from their parent.
|
|
||||||
hl.animation({ leaf = "global", enabled = true, speed = 4, bezier = "standard" })
|
|
||||||
|
|
||||||
hl.animation({ leaf = "windows", enabled = true, speed = 4, spring = "snappy" })
|
|
||||||
hl.animation({ leaf = "windowsIn", enabled = true, speed = 4, spring = "lively", style = "popin 92%" })
|
|
||||||
hl.animation({ leaf = "windowsOut", enabled = true, speed = 2.2, bezier = "accel", style = "popin 94%" })
|
|
||||||
hl.animation({ leaf = "windowsMove", enabled = true, speed = 4, spring = "smooth" })
|
|
||||||
|
|
||||||
hl.animation({ leaf = "layers", enabled = true, speed = 3, bezier = "decel" })
|
|
||||||
hl.animation({ leaf = "layersIn", enabled = true, speed = 3, bezier = "decel", style = "slide" })
|
|
||||||
hl.animation({ leaf = "layersOut", enabled = true, speed = 2.2, bezier = "accel", style = "slide" })
|
|
||||||
|
|
||||||
hl.animation({ leaf = "fade", enabled = true, speed = 2.6, bezier = "standard" })
|
|
||||||
hl.animation({ leaf = "fadeIn", enabled = true, speed = 2.2, bezier = "decel" })
|
|
||||||
hl.animation({ leaf = "fadeOut", enabled = true, speed = 1.8, bezier = "accel" })
|
|
||||||
hl.animation({ leaf = "fadeSwitch", enabled = true, speed = 2.5, bezier = "standard" })
|
|
||||||
hl.animation({ leaf = "fadeDim", enabled = true, speed = 2.5, bezier = "standard" })
|
|
||||||
hl.animation({ leaf = "fadeLayersIn", enabled = true, speed = 2.2, bezier = "decel" })
|
|
||||||
hl.animation({ leaf = "fadeLayersOut", enabled = true, speed = 1.8, bezier = "accel" })
|
|
||||||
hl.animation({ leaf = "fadePopupsIn", enabled = true, speed = 1.8, bezier = "decel" })
|
|
||||||
hl.animation({ leaf = "fadePopupsOut", enabled = true, speed = 1.4, bezier = "accel" })
|
|
||||||
|
|
||||||
hl.animation({ leaf = "border", enabled = true, speed = 3, bezier = "standard" })
|
|
||||||
|
|
||||||
-- `borderangle` with style "loop" is left unset on purpose: it renders
|
|
||||||
-- continuously at the refresh rate even when idle, which costs battery.
|
|
||||||
|
|
||||||
hl.animation({ leaf = "workspaces", enabled = true, speed = 4.5, bezier = "standard", style = "slidefadevert 12%" })
|
|
||||||
hl.animation({ leaf = "specialWorkspace", enabled = true, speed = 4, spring = "smooth", style = "slidevert" })
|
|
||||||
|
|
||||||
hl.animation({ leaf = "zoomFactor", enabled = true, speed = 4, bezier = "decel" })
|
|
||||||
hl.animation({ leaf = "monitorAdded", enabled = true, speed = 4, bezier = "decel" })
|
|
||||||
@@ -1,189 +0,0 @@
|
|||||||
local mod = "SUPER"
|
|
||||||
local L = require("hyprland/layout-actions")
|
|
||||||
|
|
||||||
-- Applications
|
|
||||||
|
|
||||||
hl.bind(mod .. " + T", hl.dsp.exec_cmd("kitty"), { description = "Terminal" })
|
|
||||||
hl.bind(mod .. " + Return", hl.dsp.exec_cmd("kitty"), { description = "Terminal" })
|
|
||||||
hl.bind(mod .. " + SHIFT + T", hl.dsp.exec_cmd("kitty-floating"), { description = "Floating terminal" })
|
|
||||||
hl.bind(mod .. " + SHIFT + Return", hl.dsp.exec_cmd("kitty-floating"), { description = "Floating terminal" })
|
|
||||||
|
|
||||||
hl.bind(mod .. " + C", hl.dsp.exec_cmd("code"), { description = "Editor" })
|
|
||||||
hl.bind(mod .. " + E", hl.dsp.exec_cmd("nautilus --new-window"), { description = "File manager (GTK)" })
|
|
||||||
hl.bind(mod .. " + SHIFT + E", hl.dsp.exec_cmd("dolphin --new-window"), { description = "File manager" })
|
|
||||||
hl.bind(mod .. " + W", hl.dsp.exec_cmd("zen || zen-browser"), { description = "Browser" })
|
|
||||||
|
|
||||||
hl.bind(mod .. " + B", hl.dsp.exec_cmd("pkill -x -n btop || kitty-floating -e btop"), { description = "System monitor" })
|
|
||||||
hl.bind(mod .. " + O", hl.dsp.exec_cmd("pkill -x -n pwvucontrol || pwvucontrol"), { description = "Audio mixer" })
|
|
||||||
hl.bind("CTRL + ALT + Delete", hl.dsp.exec_cmd("pkill -x wlogout || wlogout"), { description = "Session menu" })
|
|
||||||
|
|
||||||
-- Launcher. URLs are quoted: `?` is a glob to the `sh -c` exec_cmd runs.
|
|
||||||
|
|
||||||
hl.bind("ALT + space", hl.dsp.exec_cmd("vicinae toggle"), { description = "Launcher" })
|
|
||||||
hl.bind(mod .. " + D", hl.dsp.exec_cmd("vicinae 'vicinae://launch/system/run?toggle=true'"), { description = "Run command" })
|
|
||||||
hl.bind(mod .. " + V", hl.dsp.exec_cmd("vicinae 'vicinae://launch/clipboard/history?toggle=true'"), { description = "Clipboard history" })
|
|
||||||
hl.bind(mod .. " + period", hl.dsp.exec_cmd("vicinae 'vicinae://launch/core/search-emojis?toggle=true'"), { description = "Emoji picker" })
|
|
||||||
|
|
||||||
-- Screenshots and colour
|
|
||||||
|
|
||||||
hl.bind("Print", hl.dsp.exec_cmd("screenshot-script full"), { description = "Screenshot: screen" })
|
|
||||||
hl.bind(mod .. " + SHIFT + S", hl.dsp.exec_cmd("screenshot-script area"), { description = "Screenshot: region" })
|
|
||||||
hl.bind(mod .. " + CTRL + SHIFT + S", hl.dsp.exec_cmd("screenshot-script window"), { description = "Screenshot: window" })
|
|
||||||
hl.bind(mod .. " + SHIFT + C", hl.dsp.exec_cmd("hyprpicker -a"), { description = "Pick colour" })
|
|
||||||
|
|
||||||
-- Utilities
|
|
||||||
|
|
||||||
hl.bind(mod .. " + N", hl.dsp.exec_cmd("sunset"), { description = "Night light" })
|
|
||||||
hl.bind(mod .. " + SHIFT + K", hl.dsp.exec_cmd("pkill -x waybar; waybar"), { description = "Restart the bar" })
|
|
||||||
hl.bind(mod .. " + CTRL + R", hl.dsp.exec_cmd("hyprctl reload"), { description = "Reload config" })
|
|
||||||
|
|
||||||
-- hypridle has no runtime toggle, and probing for it would mean a blocking
|
|
||||||
-- popen, which must not happen in a bind callback.
|
|
||||||
local idle_inhibited = false
|
|
||||||
hl.bind(mod .. " + I", function()
|
|
||||||
idle_inhibited = not idle_inhibited
|
|
||||||
if idle_inhibited then
|
|
||||||
hl.exec_cmd("pkill -x hypridle")
|
|
||||||
else
|
|
||||||
hl.exec_cmd("hypridle")
|
|
||||||
end
|
|
||||||
hl.notification.create({
|
|
||||||
text = idle_inhibited and "Idle inhibited" or "Idle timers active",
|
|
||||||
timeout = 1500,
|
|
||||||
})
|
|
||||||
end, { description = "Toggle idle inhibit" })
|
|
||||||
|
|
||||||
-- Media and brightness. BRIGHTNESSCTL_DEVICE comes from set_display.
|
|
||||||
|
|
||||||
hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+"),
|
|
||||||
{ locked = true, repeating = true })
|
|
||||||
hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"),
|
|
||||||
{ locked = true, repeating = true })
|
|
||||||
hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"), { locked = true })
|
|
||||||
hl.bind("XF86AudioMicMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"), { locked = true })
|
|
||||||
|
|
||||||
hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
|
|
||||||
hl.bind("XF86AudioPause", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
|
|
||||||
hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true })
|
|
||||||
hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
|
|
||||||
|
|
||||||
hl.bind("XF86MonBrightnessUp",
|
|
||||||
hl.dsp.exec_cmd('brightnessctl -d "${BRIGHTNESSCTL_DEVICE:-intel_backlight}" -e4 -n2 set 5%+'),
|
|
||||||
{ locked = true, repeating = true })
|
|
||||||
hl.bind("XF86MonBrightnessDown",
|
|
||||||
hl.dsp.exec_cmd('brightnessctl -d "${BRIGHTNESSCTL_DEVICE:-intel_backlight}" -e4 -n2 set 5%-'),
|
|
||||||
{ locked = true, repeating = true })
|
|
||||||
|
|
||||||
-- Window management
|
|
||||||
|
|
||||||
hl.bind(mod .. " + Q", hl.dsp.window.close(), { description = "Close window" })
|
|
||||||
hl.bind("ALT + F4", hl.dsp.window.close(), { description = "Close window" })
|
|
||||||
hl.bind(mod .. " + SHIFT + Q", hl.dsp.window.kill(), { description = "Force kill window" })
|
|
||||||
|
|
||||||
for key, dir in pairs({ Left = "l", Right = "r", Up = "u", Down = "d" }) do
|
|
||||||
hl.bind(mod .. " + " .. key, hl.dsp.focus({ direction = dir }))
|
|
||||||
hl.bind(mod .. " + SHIFT + " .. key, hl.dsp.window.move({ direction = dir, group_aware = true }))
|
|
||||||
hl.bind(mod .. " + CTRL + " .. key, hl.dsp.focus({ monitor = dir }))
|
|
||||||
hl.bind(mod .. " + CTRL + SHIFT + " .. key, hl.dsp.window.move({ monitor = dir, follow = true }))
|
|
||||||
end
|
|
||||||
|
|
||||||
hl.bind(mod .. " + ALT + space", hl.dsp.window.float({ action = "toggle" }), { description = "Toggle floating" })
|
|
||||||
hl.bind(mod .. " + P", hl.dsp.window.pin(), { description = "Pin window" })
|
|
||||||
hl.bind(mod .. " + Y", hl.dsp.window.center(), { description = "Centre window" })
|
|
||||||
|
|
||||||
hl.bind(mod .. " + F", hl.dsp.window.fullscreen({ mode = "maximized" }), { description = "Maximize" })
|
|
||||||
hl.bind(mod .. " + SHIFT + F", hl.dsp.window.fullscreen({ mode = "fullscreen" }), { description = "Fullscreen" })
|
|
||||||
|
|
||||||
-- The client believes it is fullscreen, the layout does not. Stops
|
|
||||||
-- Chromium-likes dropping into presentation mode.
|
|
||||||
hl.bind(mod .. " + ALT + F", hl.dsp.window.fullscreen_state({ internal = 0, client = 2 }),
|
|
||||||
{ description = "Fake fullscreen" })
|
|
||||||
|
|
||||||
hl.bind("ALT + Tab", function()
|
|
||||||
L.cycle_next()
|
|
||||||
hl.dispatch(hl.dsp.window.bring_to_top())
|
|
||||||
end, { description = "Next window" })
|
|
||||||
hl.bind("ALT + SHIFT + Tab", function()
|
|
||||||
L.cycle_prev()
|
|
||||||
hl.dispatch(hl.dsp.window.bring_to_top())
|
|
||||||
end, { description = "Previous window" })
|
|
||||||
|
|
||||||
hl.bind(mod .. " + SHIFT + Tab", function()
|
|
||||||
local w = hl.get_active_window()
|
|
||||||
hl.dispatch(hl.dsp.focus({ window = (w and w.floating) and "tiled" or "floating" }))
|
|
||||||
end, { description = "Floating <-> tiled focus" })
|
|
||||||
|
|
||||||
-- Tabbed groups
|
|
||||||
|
|
||||||
hl.bind(mod .. " + SHIFT + M", hl.dsp.group.toggle(), { description = "Toggle tabbed group" })
|
|
||||||
hl.bind(mod .. " + CTRL + Tab", hl.dsp.group.next(), { description = "Next tab" })
|
|
||||||
hl.bind(mod .. " + CTRL + SHIFT + Tab", hl.dsp.group.prev(), { description = "Previous tab" })
|
|
||||||
|
|
||||||
-- Layout-aware
|
|
||||||
|
|
||||||
hl.bind(mod .. " + minus", L.narrow, { repeating = true, description = "Narrower" })
|
|
||||||
hl.bind(mod .. " + plus", L.widen, { repeating = true, description = "Wider" })
|
|
||||||
hl.bind(mod .. " + SHIFT + minus", hl.dsp.window.resize({ x = 0, y = -40, relative = true }), { repeating = true })
|
|
||||||
hl.bind(mod .. " + SHIFT + plus", hl.dsp.window.resize({ x = 0, y = 40, relative = true }), { repeating = true })
|
|
||||||
|
|
||||||
hl.bind(mod .. " + R", L.cycle_width, { description = "Cycle preset width" })
|
|
||||||
hl.bind(mod .. " + J", L.tweak, { description = "Split / orientation / expand" })
|
|
||||||
hl.bind(mod .. " + U", L.promote, { description = "Promote window" })
|
|
||||||
|
|
||||||
hl.bind(mod .. " + ALT + Left", L.consume_prev, { description = "Consume/expel left" })
|
|
||||||
hl.bind(mod .. " + ALT + Right", L.consume_next, { description = "Consume/expel right" })
|
|
||||||
hl.bind(mod .. " + SHIFT + comma", L.consume, { description = "Consume window" })
|
|
||||||
hl.bind(mod .. " + SHIFT + period", L.expel, { description = "Expel window" })
|
|
||||||
|
|
||||||
-- Workspaces
|
|
||||||
|
|
||||||
for i = 1, 10 do
|
|
||||||
local key = tostring(i % 10) -- workspace 10 sits on the 0 key
|
|
||||||
hl.bind(mod .. " + " .. key, hl.dsp.focus({ workspace = i }))
|
|
||||||
hl.bind(mod .. " + ALT + " .. key, hl.dsp.window.move({ workspace = i, follow = true }))
|
|
||||||
end
|
|
||||||
|
|
||||||
hl.bind(mod .. " + Page_Down", hl.dsp.focus({ workspace = "+1" }))
|
|
||||||
hl.bind(mod .. " + Page_Up", hl.dsp.focus({ workspace = "-1" }))
|
|
||||||
-- hl.bind(mod .. " + Down", hl.dsp.focus({ workspace = "+1" }))
|
|
||||||
-- hl.bind(mod .. " + Up", hl.dsp.focus({ workspace = "-1" }))
|
|
||||||
hl.bind(mod .. " + SHIFT + Page_Down", hl.dsp.window.move({ workspace = "+1", follow = true }))
|
|
||||||
hl.bind(mod .. " + SHIFT + Page_Up", hl.dsp.window.move({ workspace = "-1", follow = true }))
|
|
||||||
-- hl.bind(mod .. " + SHIFT + Down", hl.dsp.window.move({ workspace = "+1", follow = true }))
|
|
||||||
-- hl.bind(mod .. " + SHIFT + Up", hl.dsp.window.move({ workspace = "-1", follow = true }))
|
|
||||||
|
|
||||||
-- Scroll through only the workspaces that exist.
|
|
||||||
hl.bind(mod .. " + mouse_down", hl.dsp.focus({ workspace = "e+1" }))
|
|
||||||
hl.bind(mod .. " + mouse_up", hl.dsp.focus({ workspace = "e-1" }))
|
|
||||||
|
|
||||||
hl.bind(mod .. " + Tab", hl.dsp.focus({ workspace = "previous" }), { description = "Last workspace" })
|
|
||||||
|
|
||||||
hl.bind(mod .. " + S", hl.dsp.workspace.toggle_special("scratchpad"), { description = "Scratchpad" })
|
|
||||||
hl.bind(mod .. " + ALT + S", hl.dsp.window.move({ workspace = "special:scratchpad" }),
|
|
||||||
{ description = "Send to scratchpad" })
|
|
||||||
|
|
||||||
-- Mouse
|
|
||||||
|
|
||||||
hl.bind(mod .. " + mouse:272", hl.dsp.window.drag(), { mouse = true })
|
|
||||||
hl.bind(mod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true })
|
|
||||||
hl.bind(mod .. " + mouse:274", hl.dsp.window.close(), { description = "Close window" })
|
|
||||||
|
|
||||||
-- Cycles dwindle -> master -> scrolling, notifying which. No submap: a modal
|
|
||||||
-- state with no on-screen indicator traps the keyboard.
|
|
||||||
hl.bind(mod .. " + SHIFT + L", L.next(), { description = "Cycle layout" })
|
|
||||||
|
|
||||||
-- Session
|
|
||||||
|
|
||||||
hl.bind(mod .. " + L", hl.dsp.exec_cmd("loginctl lock-session"), { description = "Lock" })
|
|
||||||
|
|
||||||
-- The delay is deliberate: driving dpms straight from a keybind is documented
|
|
||||||
-- as undefined behaviour.
|
|
||||||
hl.bind(mod .. " + SHIFT + P", function()
|
|
||||||
hl.exec_cmd("loginctl lock-session")
|
|
||||||
hl.timer(function()
|
|
||||||
hl.dispatch(hl.dsp.dpms({ action = "disable" }))
|
|
||||||
end, { timeout = 800, type = "oneshot" })
|
|
||||||
end, { description = "Lock and blank screens" })
|
|
||||||
|
|
||||||
-- hyprshutdown rather than hl.dsp.exit(), so the session tears down in order.
|
|
||||||
hl.bind(mod .. " + K", hl.dsp.exec_cmd("hyprshutdown"), { description = "Exit Hyprland" })
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
-- Cursor
|
|
||||||
|
|
||||||
hl.env("XCURSOR_SIZE", "24")
|
|
||||||
hl.env("HYPRCURSOR_SIZE", "24")
|
|
||||||
hl.env("XCURSOR_THEME", "Bibata-Modern-Ice")
|
|
||||||
|
|
||||||
-- Qt
|
|
||||||
|
|
||||||
hl.env("QT_QPA_PLATFORM", "wayland")
|
|
||||||
hl.env("QT_QPA_PLATFORMTHEME", "kde")
|
|
||||||
hl.env("QT_STYLE_OVERRIDE", "Kvantum")
|
|
||||||
|
|
||||||
-- Nvidia
|
|
||||||
|
|
||||||
hl.env("LIBVA_DRIVER_NAME", "nvidia")
|
|
||||||
hl.env("NVD_BACKEND", "nvidia")
|
|
||||||
hl.env("GBM_BACKEND", "nvidia-drm")
|
|
||||||
|
|
||||||
-- Aquamarine reads AQ_DRM_DEVICES; set_display exports the resolved list as
|
|
||||||
-- HYPR_AQ_DRM_DEVICES. The fallback applies only if it was never sourced.
|
|
||||||
local drm_devices = os.getenv("HYPR_AQ_DRM_DEVICES")
|
|
||||||
if drm_devices == nil or drm_devices == "" then
|
|
||||||
drm_devices = "/dev/dri/card0:/dev/dri/card1"
|
|
||||||
end
|
|
||||||
hl.env("AQ_DRM_DEVICES", drm_devices)
|
|
||||||
|
|
||||||
-- Input method
|
|
||||||
|
|
||||||
hl.env("QT_IM_MODULE", "fcitx")
|
|
||||||
hl.env("XMODIFIERS", "@im=fcitx")
|
|
||||||
hl.env("SDL_IM_MODULE", "fcitx")
|
|
||||||
hl.env("GLFW_IM_MODULE", "ibus")
|
|
||||||
hl.env("INPUT_METHOD", "fcitx")
|
|
||||||
|
|
||||||
-- Swing
|
|
||||||
|
|
||||||
hl.env("_JAVA_AWT_WM_NONREPARENTING", "1")
|
|
||||||
|
|
||||||
-- Others
|
|
||||||
|
|
||||||
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "wayland")
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
hl.on("hyprland.start", function()
|
|
||||||
hl.exec_cmd("uwsm finalize HYPRLAND_INSTANCE_SIGNATURE")
|
|
||||||
hl.exec_cmd("waybar")
|
|
||||||
hl.exec_cmd("gnome-keyring-daemon --start --components=secrets")
|
|
||||||
hl.exec_cmd("/usr/lib/soteria-polkit/soteria")
|
|
||||||
hl.exec_cmd("solaar -w hide")
|
|
||||||
end)
|
|
||||||
|
|
||||||
-- See ~/.config/niri/config/execs.kdl for programs started by
|
|
||||||
-- systemd-unit and xdg-autostart
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
hl.config({
|
|
||||||
gestures = {
|
|
||||||
workspace_swipe_distance = 400,
|
|
||||||
workspace_swipe_cancel_ratio = 0.2,
|
|
||||||
workspace_swipe_min_speed_to_force = 5,
|
|
||||||
|
|
||||||
workspace_swipe_direction_lock = true,
|
|
||||||
workspace_swipe_direction_lock_threshold = 10,
|
|
||||||
|
|
||||||
workspace_swipe_create_new = true,
|
|
||||||
workspace_swipe_forever = true,
|
|
||||||
workspace_swipe_touch = false,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.gesture({ fingers = 3, direction = "vertical", action = "workspace" })
|
|
||||||
|
|
||||||
-- Only does anything under the scrolling layout, harmless elsewhere.
|
|
||||||
hl.gesture({ fingers = 4, direction = "horizontal", action = "scroll_move" })
|
|
||||||
|
|
||||||
hl.gesture({ fingers = 4, direction = "up", action = "special", workspace_name = "scratchpad" })
|
|
||||||
|
|
||||||
-- Held modifiers turn a swipe into a window action rather than navigation.
|
|
||||||
hl.gesture({ fingers = 3, direction = "up", mods = "SUPER", action = "fullscreen" })
|
|
||||||
hl.gesture({ fingers = 3, direction = "down", mods = "SUPER", action = "close" })
|
|
||||||
hl.gesture({ fingers = 3, direction = "left", mods = "SUPER", scale = 1.5, action = "float" })
|
|
||||||
|
|
||||||
hl.gesture({ fingers = 2, direction = "pinch", action = "cursor_zoom", zoom_level = 1, mode = "live" })
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
hl.config({
|
|
||||||
input = {
|
|
||||||
kb_layout = "de",
|
|
||||||
numlock_by_default = true,
|
|
||||||
|
|
||||||
follow_mouse = 1,
|
|
||||||
|
|
||||||
sensitivity = 0, -- -1.0 - 1.0
|
|
||||||
|
|
||||||
touchpad = {
|
|
||||||
natural_scroll = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
-- Layout messages are layout-specific: "splitratio" means nothing to master,
|
|
||||||
-- "mfact" nothing to scrolling. These resolve one key to the right action.
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
--- Layout of the active workspace; per-workspace rules win over the default.
|
|
||||||
function M.current()
|
|
||||||
local ws = hl.get_active_workspace()
|
|
||||||
if ws and ws.tiled_layout and ws.tiled_layout ~= "" then
|
|
||||||
return ws.tiled_layout
|
|
||||||
end
|
|
||||||
return hl.get_config("general.layout") or "dwindle"
|
|
||||||
end
|
|
||||||
|
|
||||||
--- `map` is keyed by layout name, `map.default` covers anything unlisted.
|
|
||||||
--- Values are functions so no dispatcher is built until the bind fires.
|
|
||||||
local function by_layout(map)
|
|
||||||
return function()
|
|
||||||
local pick = map[M.current()] or map.default
|
|
||||||
if pick then
|
|
||||||
hl.dispatch(pick())
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
M.by_layout = by_layout
|
|
||||||
|
|
||||||
M.widen = by_layout({
|
|
||||||
dwindle = function() return hl.dsp.layout("splitratio +0.05") end,
|
|
||||||
master = function() return hl.dsp.layout("mfact +0.05") end,
|
|
||||||
scrolling = function() return hl.dsp.layout("colresize +0.05") end,
|
|
||||||
})
|
|
||||||
|
|
||||||
M.narrow = by_layout({
|
|
||||||
dwindle = function() return hl.dsp.layout("splitratio -0.05") end,
|
|
||||||
master = function() return hl.dsp.layout("mfact -0.05") end,
|
|
||||||
scrolling = function() return hl.dsp.layout("colresize -0.05") end,
|
|
||||||
})
|
|
||||||
|
|
||||||
--- Cycle preset widths under scrolling, elsewhere snap back to an even split.
|
|
||||||
M.cycle_width = by_layout({
|
|
||||||
dwindle = function() return hl.dsp.layout("splitratio 1.0 exact") end,
|
|
||||||
master = function() return hl.dsp.layout("mfact exact 0.58") end,
|
|
||||||
scrolling = function() return hl.dsp.layout("colresize +conf") end,
|
|
||||||
})
|
|
||||||
|
|
||||||
--- Root of the tree, the master slot, or a column of its own.
|
|
||||||
M.promote = by_layout({
|
|
||||||
dwindle = function() return hl.dsp.layout("movetoroot") end,
|
|
||||||
master = function() return hl.dsp.layout("swapwithmaster master") end,
|
|
||||||
scrolling = function() return hl.dsp.layout("promote") end,
|
|
||||||
})
|
|
||||||
|
|
||||||
--- Flip the split, rotate the master area, or fill the free space.
|
|
||||||
M.tweak = by_layout({
|
|
||||||
dwindle = function() return hl.dsp.layout("togglesplit") end,
|
|
||||||
master = function() return hl.dsp.layout("orientationnext") end,
|
|
||||||
scrolling = function() return hl.dsp.layout("fit expand") end,
|
|
||||||
})
|
|
||||||
|
|
||||||
M.cycle_next = by_layout({
|
|
||||||
master = function() return hl.dsp.layout("cyclenext") end,
|
|
||||||
default = function() return hl.dsp.window.cycle_next() end,
|
|
||||||
})
|
|
||||||
|
|
||||||
M.cycle_prev = by_layout({
|
|
||||||
master = function() return hl.dsp.layout("cycleprev") end,
|
|
||||||
default = function() return hl.dsp.window.cycle_next({ next = false }) end,
|
|
||||||
})
|
|
||||||
|
|
||||||
--- Scrolling consumes into columns; elsewhere the analogue is a tabbed group.
|
|
||||||
M.consume_prev = by_layout({
|
|
||||||
scrolling = function() return hl.dsp.layout("consume_or_expel prev") end,
|
|
||||||
default = function() return hl.dsp.window.move({ into_or_create_group = "l" }) end,
|
|
||||||
})
|
|
||||||
|
|
||||||
M.consume_next = by_layout({
|
|
||||||
scrolling = function() return hl.dsp.layout("consume_or_expel next") end,
|
|
||||||
default = function() return hl.dsp.window.move({ into_or_create_group = "r" }) end,
|
|
||||||
})
|
|
||||||
|
|
||||||
M.consume = by_layout({
|
|
||||||
scrolling = function() return hl.dsp.layout("consume") end,
|
|
||||||
default = function() return hl.dsp.window.move({ into_or_create_group = "l" }) end,
|
|
||||||
})
|
|
||||||
|
|
||||||
M.expel = by_layout({
|
|
||||||
scrolling = function() return hl.dsp.layout("expel") end,
|
|
||||||
default = function() return hl.dsp.window.move({ out_of_group = true }) end,
|
|
||||||
})
|
|
||||||
|
|
||||||
local LAYOUTS = { "dwindle", "master", "scrolling" }
|
|
||||||
|
|
||||||
--- Re-point the active workspace at another layout. Returns a bind callback.
|
|
||||||
function M.set(name)
|
|
||||||
return function()
|
|
||||||
local ws = hl.get_active_workspace()
|
|
||||||
if not ws then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
hl.workspace_rule({ workspace = tostring(ws.id), layout = name })
|
|
||||||
hl.notification.create({ text = "Layout: " .. name, timeout = 1500 })
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.next()
|
|
||||||
return function()
|
|
||||||
local now = M.current()
|
|
||||||
local at = 1
|
|
||||||
for i, name in ipairs(LAYOUTS) do
|
|
||||||
if name == now then
|
|
||||||
at = i
|
|
||||||
break
|
|
||||||
end
|
|
||||||
end
|
|
||||||
M.set(LAYOUTS[(at % #LAYOUTS) + 1])()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
-- All three layouts. SUPER+SHIFT+L switches the active workspace between them;
|
|
||||||
-- the keymap is shared, see layout-actions.lua.
|
|
||||||
|
|
||||||
hl.config({
|
|
||||||
dwindle = {
|
|
||||||
-- Required for SUPER+J (togglesplit) to mean anything.
|
|
||||||
preserve_split = true,
|
|
||||||
|
|
||||||
smart_split = false,
|
|
||||||
force_split = 2, -- new window lands right/bottom
|
|
||||||
|
|
||||||
smart_resizing = true,
|
|
||||||
use_active_for_splits = true,
|
|
||||||
precise_mouse_move = true,
|
|
||||||
|
|
||||||
default_split_ratio = 1.0,
|
|
||||||
-- 2560px stays "wide" through several splits, so stack sooner.
|
|
||||||
split_width_multiplier = 1.35,
|
|
||||||
|
|
||||||
special_scale_factor = 1.0,
|
|
||||||
},
|
|
||||||
|
|
||||||
master = {
|
|
||||||
mfact = 0.58,
|
|
||||||
orientation = "left",
|
|
||||||
|
|
||||||
-- New windows join the stack instead of stealing the master slot.
|
|
||||||
new_status = "slave",
|
|
||||||
new_on_active = "after",
|
|
||||||
new_on_top = false,
|
|
||||||
|
|
||||||
allow_small_split = true,
|
|
||||||
smart_resizing = true,
|
|
||||||
drop_at_cursor = true,
|
|
||||||
always_keep_position = false,
|
|
||||||
focus_master_on_close = false,
|
|
||||||
|
|
||||||
slave_count_for_center_master = 2,
|
|
||||||
center_master_fallback = "left",
|
|
||||||
special_scale_factor = 1.0,
|
|
||||||
},
|
|
||||||
|
|
||||||
scrolling = {
|
|
||||||
column_width = 0.5,
|
|
||||||
explicit_column_widths = "0.3, 0.5, 0.7, 1.0",
|
|
||||||
|
|
||||||
fullscreen_on_one_column = true,
|
|
||||||
focus_fit_method = 1,
|
|
||||||
follow_focus = true,
|
|
||||||
follow_min_visible = 0.4,
|
|
||||||
|
|
||||||
-- Let focus fall off the ends onto the other monitor.
|
|
||||||
wrap_focus = false,
|
|
||||||
wrap_swapcol = true,
|
|
||||||
|
|
||||||
direction = "right",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
@@ -1,168 +0,0 @@
|
|||||||
local c = require("hyprland/theme")
|
|
||||||
|
|
||||||
hl.config({
|
|
||||||
general = {
|
|
||||||
gaps_in = 3,
|
|
||||||
gaps_out = 6,
|
|
||||||
gaps_workspaces = 40,
|
|
||||||
|
|
||||||
border_size = 2,
|
|
||||||
col = {
|
|
||||||
active_border = c.gradient(c.blue, c.mauve, 45),
|
|
||||||
inactive_border = c.rgba(c.surface0, "cc"),
|
|
||||||
},
|
|
||||||
|
|
||||||
resize_on_border = true,
|
|
||||||
extend_border_grab_area = 12, -- 2px borders are hard to hit
|
|
||||||
hover_icon_on_border = true,
|
|
||||||
|
|
||||||
no_focus_fallback = true,
|
|
||||||
allow_tearing = true, -- gates the `immediate` rule
|
|
||||||
|
|
||||||
layout = "scrolling",
|
|
||||||
|
|
||||||
snap = {
|
|
||||||
enabled = true,
|
|
||||||
window_gap = 8,
|
|
||||||
monitor_gap = 8,
|
|
||||||
respect_gaps = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
decoration = {
|
|
||||||
rounding = 14,
|
|
||||||
rounding_power = 2,
|
|
||||||
|
|
||||||
active_opacity = 1.0,
|
|
||||||
inactive_opacity = 0.96,
|
|
||||||
fullscreen_opacity = 1.0,
|
|
||||||
|
|
||||||
dim_inactive = false,
|
|
||||||
dim_special = 0.3,
|
|
||||||
|
|
||||||
shadow = {
|
|
||||||
enabled = true,
|
|
||||||
range = 24,
|
|
||||||
render_power = 3,
|
|
||||||
offset = { 0, 4 },
|
|
||||||
color = c.rgba("000000", "44"),
|
|
||||||
color_inactive = c.rgba("000000", "22"),
|
|
||||||
},
|
|
||||||
|
|
||||||
blur = {
|
|
||||||
enabled = true,
|
|
||||||
size = 6,
|
|
||||||
passes = 3,
|
|
||||||
new_optimizations = true,
|
|
||||||
xray = true,
|
|
||||||
ignore_opacity = true,
|
|
||||||
noise = 0.012,
|
|
||||||
contrast = 1.0,
|
|
||||||
brightness = 1.0,
|
|
||||||
vibrancy = 0.17,
|
|
||||||
vibrancy_darkness = 0.0,
|
|
||||||
|
|
||||||
special = false,
|
|
||||||
popups = true,
|
|
||||||
popups_ignorealpha = 0.6,
|
|
||||||
|
|
||||||
-- Keeps the fcitx5 candidate window readable over bright content.
|
|
||||||
input_methods = true,
|
|
||||||
input_methods_ignorealpha = 0.8,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
group = {
|
|
||||||
auto_group = false,
|
|
||||||
insert_after_current = true,
|
|
||||||
focus_removed_window = true,
|
|
||||||
merge_groups_on_drag = true,
|
|
||||||
|
|
||||||
col = {
|
|
||||||
border_active = c.gradient(c.blue, c.mauve, 45),
|
|
||||||
border_inactive = c.rgba(c.surface0, "cc"),
|
|
||||||
border_locked_active = c.gradient(c.peach, c.red, 45),
|
|
||||||
border_locked_inactive = c.rgba(c.surface0, "cc"),
|
|
||||||
},
|
|
||||||
|
|
||||||
groupbar = {
|
|
||||||
enabled = true,
|
|
||||||
font_family = "Noto Sans",
|
|
||||||
font_size = 11,
|
|
||||||
height = 18,
|
|
||||||
indicator_height = 3,
|
|
||||||
indicator_gap = 2,
|
|
||||||
gradients = false,
|
|
||||||
render_titles = true,
|
|
||||||
scrolling = true,
|
|
||||||
middle_click_close = true,
|
|
||||||
stacked = false,
|
|
||||||
keep_upper_gap = true,
|
|
||||||
rounding = 6,
|
|
||||||
gaps_in = 2,
|
|
||||||
gaps_out = 2,
|
|
||||||
|
|
||||||
col = {
|
|
||||||
active = c.rgb(c.blue),
|
|
||||||
inactive = c.rgba(c.surface0, "dd"),
|
|
||||||
locked_active = c.rgb(c.peach),
|
|
||||||
locked_inactive = c.rgba(c.surface0, "dd"),
|
|
||||||
},
|
|
||||||
text_color = c.rgb(c.crust),
|
|
||||||
text_color_inactive = c.rgb(c.text),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
cursor = {
|
|
||||||
warp_on_change_workspace = 1,
|
|
||||||
warp_on_toggle_special = 1,
|
|
||||||
persistent_warps = true,
|
|
||||||
|
|
||||||
hide_on_key_press = true,
|
|
||||||
inactive_timeout = 0,
|
|
||||||
|
|
||||||
default_monitor = "DP-1",
|
|
||||||
},
|
|
||||||
|
|
||||||
binds = {
|
|
||||||
workspace_back_and_forth = true,
|
|
||||||
allow_workspace_cycles = true,
|
|
||||||
hide_special_on_workspace_change = true,
|
|
||||||
movefocus_cycles_fullscreen = false,
|
|
||||||
window_direction_monitor_fallback = true,
|
|
||||||
scroll_event_delay = 0,
|
|
||||||
drag_threshold = 10,
|
|
||||||
},
|
|
||||||
|
|
||||||
misc = {
|
|
||||||
font_family = "Noto Sans",
|
|
||||||
|
|
||||||
-- Backdrop behind windows; no wallpaper daemon is started here.
|
|
||||||
disable_hyprland_logo = true,
|
|
||||||
disable_splash_rendering = true,
|
|
||||||
force_default_wallpaper = 0,
|
|
||||||
background_color = c.rgb(c.base),
|
|
||||||
|
|
||||||
vrr = 2, -- fullscreen only; 3 also gates on content type
|
|
||||||
|
|
||||||
mouse_move_enables_dpms = true,
|
|
||||||
key_press_enables_dpms = true,
|
|
||||||
|
|
||||||
animate_manual_resizes = false,
|
|
||||||
animate_mouse_windowdragging = false,
|
|
||||||
|
|
||||||
enable_swallow = false,
|
|
||||||
middle_click_paste = false,
|
|
||||||
|
|
||||||
focus_on_activate = true,
|
|
||||||
initial_workspace_tracking = 0,
|
|
||||||
on_focus_under_fullscreen = 2,
|
|
||||||
allow_session_lock_restore = true,
|
|
||||||
close_special_on_empty = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
xwayland = {
|
|
||||||
-- The panel runs at 1.25; without this XWayland apps render blurry.
|
|
||||||
force_zero_scaling = true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
hl.monitor({
|
|
||||||
output = "eDP-1",
|
|
||||||
mode = "2560x1600@60",
|
|
||||||
position = "0x0",
|
|
||||||
scale = 1.25
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.monitor({
|
|
||||||
output = "eDP-2",
|
|
||||||
mode = "2560x1600@60",
|
|
||||||
position = "0x0",
|
|
||||||
scale = 1.25
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.monitor({
|
|
||||||
output = "DP-1",
|
|
||||||
mode = "2560x1440@180",
|
|
||||||
position = "2048x0",
|
|
||||||
scale = 1
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.workspace_rule({ workspace = 1, monitor = "eDP-1", persistent = true })
|
|
||||||
hl.workspace_rule({ workspace = 2, monitor = "eDP-1", persistent = false })
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
hl.config({
|
|
||||||
ecosystem = {
|
|
||||||
enforce_permissions = true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.permission({ binary = "/usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland", type = "screencopy", mode = "allow" })
|
|
||||||
hl.permission({ binary = "/usr/(bin|local/bin)/hyprpm", type = "plugin", mode = "allow" })
|
|
||||||
|
|
||||||
-- Prompts are drawn by hyprland-qtutils, which is not installed, so anything
|
|
||||||
-- not granted here fails rather than asking.
|
|
||||||
hl.permission({ binary = "/usr/(bin|local/bin)/grim", type = "screencopy", mode = "allow" })
|
|
||||||
hl.permission({ binary = "/usr/(bin|local/bin)/hyprshot", type = "screencopy", mode = "allow" })
|
|
||||||
hl.permission({ binary = "/usr/(bin|local/bin)/hyprpicker", type = "screencopy", mode = "allow" })
|
|
||||||
hl.permission({ binary = "/usr/(bin|local/bin)/wf-recorder", type = "screencopy", mode = "allow" })
|
|
||||||
hl.permission({ binary = "/usr/(bin|local/bin)/wl-mirror", type = "screencopy", mode = "allow" })
|
|
||||||
hl.permission({ binary = "/usr/(bin|local/bin)/sunshine", type = "screencopy", mode = "allow" })
|
|
||||||
@@ -1,140 +0,0 @@
|
|||||||
local c = require("hyprland/theme")
|
|
||||||
|
|
||||||
-- Most apps ask to be maximized on launch, which is rarely wanted when tiling.
|
|
||||||
hl.window_rule({
|
|
||||||
name = "suppress-maximize",
|
|
||||||
match = { class = ".*" },
|
|
||||||
suppress_event = "maximize",
|
|
||||||
})
|
|
||||||
|
|
||||||
-- XWayland drag surfaces appear as empty floating windows; focusing them
|
|
||||||
-- breaks the drag.
|
|
||||||
hl.window_rule({
|
|
||||||
name = "fix-xwayland-drags",
|
|
||||||
match = { class = "^$", title = "^$", xwayland = true, float = true, fullscreen = false, pin = false },
|
|
||||||
no_focus = true,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Blurring XWayland makes their client-drawn shadows look wrong.
|
|
||||||
hl.window_rule({ name = "no-blur-xwayland", match = { xwayland = true }, no_blur = true })
|
|
||||||
|
|
||||||
hl.window_rule({ name = "no-shadow-tiled", match = { float = false }, no_shadow = true })
|
|
||||||
|
|
||||||
-- Dialogs
|
|
||||||
|
|
||||||
local dialogs = {
|
|
||||||
"^(Open File)(.*)$",
|
|
||||||
"^(Select a File)(.*)$",
|
|
||||||
"^(Choose wallpaper)(.*)$",
|
|
||||||
"^(Open Folder)(.*)$",
|
|
||||||
"^(Save As)(.*)$",
|
|
||||||
"^(Library)(.*)$",
|
|
||||||
"^(File Upload)(.*)$",
|
|
||||||
}
|
|
||||||
for _, title in ipairs(dialogs) do
|
|
||||||
hl.window_rule({ match = { title = title }, float = true, center = true })
|
|
||||||
end
|
|
||||||
|
|
||||||
hl.window_rule({ name = "float-modals", match = { modal = true }, float = true, center = true })
|
|
||||||
|
|
||||||
-- Picture-in-Picture
|
|
||||||
|
|
||||||
local pip = "^([Pp]icture[-\\s]?[Ii]n[-\\s]?[Pp]icture)(.*)$"
|
|
||||||
hl.window_rule({
|
|
||||||
name = "pip",
|
|
||||||
match = { title = pip },
|
|
||||||
float = true,
|
|
||||||
pin = true,
|
|
||||||
keep_aspect_ratio = true,
|
|
||||||
size = { "monitor_w*0.22", "monitor_h*0.22" },
|
|
||||||
move = { "monitor_w-window_w-24", "monitor_h-window_h-24" },
|
|
||||||
no_shadow = false,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Floating by default
|
|
||||||
|
|
||||||
local floaters = {
|
|
||||||
"^(blueberry\\.py)$",
|
|
||||||
"^(blueman-manager)$",
|
|
||||||
"^(org\\.pulseaudio\\.pavucontrol)$",
|
|
||||||
"^(com\\.saivert\\.pwvucontrol)$",
|
|
||||||
"^(Waydroid)$",
|
|
||||||
"^(waydroid.*)$",
|
|
||||||
"^(org\\.kde\\.kcalc)$",
|
|
||||||
"^(org\\.kde\\.kalk)$",
|
|
||||||
"^(org\\.gnome\\.NautilusPreviewer)$",
|
|
||||||
"^(coin)$",
|
|
||||||
"^(wallreel)$",
|
|
||||||
"^(be\\.alexandervanhee\\.gradia)$",
|
|
||||||
"^(nm-connection-editor)$",
|
|
||||||
"^(org\\.gnome\\.Calculator)$",
|
|
||||||
"^(xdg-desktop-portal-gtk)$",
|
|
||||||
}
|
|
||||||
for _, class in ipairs(floaters) do
|
|
||||||
hl.window_rule({ match = { class = class }, float = true, center = true })
|
|
||||||
end
|
|
||||||
|
|
||||||
-- QQ's image viewer has no useful class, only a title.
|
|
||||||
hl.window_rule({ match = { title = "^(图片查看器)(.*)$" }, float = true, center = true })
|
|
||||||
|
|
||||||
-- Terminals
|
|
||||||
|
|
||||||
hl.window_rule({
|
|
||||||
name = "floating-terminal",
|
|
||||||
match = { class = "^(kitty-floating)$" },
|
|
||||||
float = true,
|
|
||||||
size = { "monitor_w*0.5", "monitor_h*0.5" },
|
|
||||||
center = true,
|
|
||||||
})
|
|
||||||
hl.window_rule({ match = { class = "^(com\\.mitchellh\\.ghostty)$" }, float = true, center = true })
|
|
||||||
|
|
||||||
hl.window_rule({ match = { class = "^(kitty)$" }, scrolling_width = 0.5 })
|
|
||||||
hl.window_rule({ match = { class = "^(scrcpy)$" }, scrolling_width = 0.3 })
|
|
||||||
|
|
||||||
-- Media, games, tearing
|
|
||||||
|
|
||||||
hl.window_rule({ name = "opaque-video", match = { content = "video" }, opaque = true, no_blur = true })
|
|
||||||
hl.window_rule({
|
|
||||||
name = "opaque-game",
|
|
||||||
match = { content = "game" },
|
|
||||||
opaque = true,
|
|
||||||
no_blur = true,
|
|
||||||
no_dim = true,
|
|
||||||
immediate = true,
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.window_rule({ match = { class = "^(steam_app.*)$" }, immediate = true })
|
|
||||||
hl.window_rule({ match = { title = "^(.*\\.exe)$" }, immediate = true })
|
|
||||||
|
|
||||||
-- Steam's notification toasts are windows, and they steal focus.
|
|
||||||
hl.window_rule({
|
|
||||||
name = "steam-toasts",
|
|
||||||
match = { class = "^(steam)$", title = "^(notificationtoasts_\\d+_desktop)$" },
|
|
||||||
float = true,
|
|
||||||
no_initial_focus = true,
|
|
||||||
no_shadow = true,
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.window_rule({ match = { class = "^(org\\.mozilla\\.[Tt]hunderbird)$" }, no_screen_share = true })
|
|
||||||
|
|
||||||
hl.window_rule({ match = { pin = true }, border_color = c.gradient(c.teal, c.green, 45) })
|
|
||||||
|
|
||||||
-- Smart gaps: a lone tiled or fullscreen window drops its gaps and border.
|
|
||||||
-- Rounding is kept.
|
|
||||||
hl.workspace_rule({ workspace = "w[tv1]s[false]", gaps_out = 0, gaps_in = 0 })
|
|
||||||
hl.workspace_rule({ workspace = "f[1]s[false]", gaps_out = 0, gaps_in = 0 })
|
|
||||||
hl.window_rule({ match = { float = false, workspace = "w[tv1]s[false]" }, border_size = 0 })
|
|
||||||
hl.window_rule({ match = { float = false, workspace = "f[1]s[false]" }, border_size = 0 })
|
|
||||||
|
|
||||||
hl.workspace_rule({ workspace = "special:scratchpad", gaps_out = 40, gaps_in = 6 })
|
|
||||||
|
|
||||||
-- Layer rules
|
|
||||||
|
|
||||||
hl.layer_rule({ name = "blur-bar", match = { namespace = "^waybar$" }, blur = true, ignore_alpha = 0.4 })
|
|
||||||
hl.layer_rule({ name = "blur-launcher", match = { namespace = "^vicinae$" }, blur = true, ignore_alpha = 0.4 })
|
|
||||||
hl.layer_rule({ name = "blur-logout", match = { namespace = "^logout_dialog$" }, blur = true })
|
|
||||||
hl.layer_rule({ name = "blur-notifications", match = { namespace = "^notifications$" }, blur = true, ignore_alpha = 0.6 })
|
|
||||||
|
|
||||||
-- The colour picker must see the screen exactly as it is.
|
|
||||||
hl.layer_rule({ name = "no-anim-picker", match = { namespace = "^hyprpicker$" }, no_anim = true })
|
|
||||||
hl.layer_rule({ name = "no-anim-selection", match = { namespace = "^selection$" }, no_anim = true })
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
-- Catppuccin Mocha.
|
|
||||||
|
|
||||||
local M = {
|
|
||||||
base = "1e1e2e",
|
|
||||||
mantle = "181825",
|
|
||||||
crust = "11111b",
|
|
||||||
surface0 = "313244",
|
|
||||||
surface1 = "45475a",
|
|
||||||
surface2 = "585b70",
|
|
||||||
overlay0 = "6c7086",
|
|
||||||
subtext0 = "a6adc8",
|
|
||||||
text = "cdd6f4",
|
|
||||||
|
|
||||||
blue = "89b4fa",
|
|
||||||
lavender = "b4befe",
|
|
||||||
mauve = "cba6f7",
|
|
||||||
red = "f38ba8",
|
|
||||||
peach = "fab387",
|
|
||||||
yellow = "f9e2af",
|
|
||||||
green = "a6e3a1",
|
|
||||||
teal = "94e2d5",
|
|
||||||
}
|
|
||||||
|
|
||||||
function M.rgb(hex)
|
|
||||||
return "rgb(" .. hex .. ")"
|
|
||||||
end
|
|
||||||
|
|
||||||
--- `alpha` is a two-digit hex string, e.g. "80".
|
|
||||||
function M.rgba(hex, alpha)
|
|
||||||
return "rgba(" .. hex .. alpha .. ")"
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.gradient(from, to, angle)
|
|
||||||
return { colors = { M.rgb(from), M.rgb(to) }, angle = angle or 45 }
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"workspace": {
|
|
||||||
"library": ["/usr/share/hypr/stubs"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
allow_remote_control yes
|
||||||
|
listen_on unix:/tmp/kitty
|
||||||
|
shell_integration enabled
|
||||||
|
|
||||||
|
# kitty-scrollback.nvim Kitten alias
|
||||||
|
action_alias kitty_scrollback_nvim kitten $HOME/.local/share/nvim/lazy/kitty-scrollback.nvim/python/kitty_scrollback_nvim.py
|
||||||
|
# Browse scrollback buffer in nvim
|
||||||
|
map kitty_mod+h kitty_scrollback_nvim
|
||||||
|
# Browse output of the last shell command in nvim
|
||||||
|
map kitty_mod+g kitty_scrollback_nvim --config ksb_builtin_last_cmd_output
|
||||||
|
# Show clicked command output in nvim
|
||||||
|
mouse_map ctrl+shift+right press ungrabbed combine : mouse_select_command_output : kitty_scrollback_nvim --config ksb_builtin_last_visited_cmd_output
|
||||||
|
|
||||||
|
# disable the stupid notification
|
||||||
|
confirm_os_window_close 0
|
||||||
|
|
||||||
|
# set shell to zsh
|
||||||
|
shell /bin/zsh
|
||||||
|
|
||||||
|
# hide_window_decorations yes
|
||||||
|
window_padding_width 10
|
||||||
|
|
||||||
|
background_opacity 0.75
|
||||||
|
background_blur 16
|
||||||
|
|
||||||
|
font_family monospace
|
||||||
|
font_size 12
|
||||||
|
|
||||||
|
tab_bar_style powerline
|
||||||
|
tab_powerline_style round
|
||||||
|
tab_title_template {title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}
|
||||||
|
|
||||||
|
map ctrl+up previous_window
|
||||||
|
map ctrl+down next_window
|
||||||
|
|
||||||
|
cursor_trail 1
|
||||||
|
cursor_shape beam
|
||||||
|
|
||||||
|
include Catppuccin-Mocha.conf
|
||||||
|
|
||||||
|
map ctrl+plus change_font_size all +1
|
||||||
|
map ctrl+kp_add change_font_size all +1
|
||||||
|
|
||||||
|
map ctrl+minus change_font_size all -1
|
||||||
|
map ctrl+kp_subtract change_font_size all -1
|
||||||
|
|
||||||
|
map ctrl+0 change_font_size all 0
|
||||||
|
map ctrl+kp_0 change_font_size all 0
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
# vim:ft=kitty
|
||||||
|
|
||||||
|
## name: Catppuccin-Mocha
|
||||||
|
## author: Pocco81 (https://github.com/Pocco81)
|
||||||
|
## license: MIT
|
||||||
|
## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf
|
||||||
|
## blurb: Soothing pastel theme for the high-spirited!
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# The basic colors
|
||||||
|
foreground #CDD6F4
|
||||||
|
background #1E1E2E
|
||||||
|
selection_foreground #1E1E2E
|
||||||
|
selection_background #F5E0DC
|
||||||
|
|
||||||
|
# Cursor colors
|
||||||
|
cursor #F5E0DC
|
||||||
|
cursor_text_color #1E1E2E
|
||||||
|
|
||||||
|
# URL underline color when hovering with mouse
|
||||||
|
url_color #F5E0DC
|
||||||
|
|
||||||
|
# Kitty window border colors
|
||||||
|
active_border_color #B4BEFE
|
||||||
|
inactive_border_color #6C7086
|
||||||
|
bell_border_color #F9E2AF
|
||||||
|
|
||||||
|
# OS Window titlebar colors
|
||||||
|
wayland_titlebar_color system
|
||||||
|
macos_titlebar_color system
|
||||||
|
|
||||||
|
# Tab bar colors
|
||||||
|
active_tab_foreground #11111B
|
||||||
|
active_tab_background #CBA6F7
|
||||||
|
inactive_tab_foreground #CDD6F4
|
||||||
|
inactive_tab_background #181825
|
||||||
|
tab_bar_background #11111B
|
||||||
|
|
||||||
|
# Colors for marks (marked text in the terminal)
|
||||||
|
mark1_foreground #1E1E2E
|
||||||
|
mark1_background #B4BEFE
|
||||||
|
mark2_foreground #1E1E2E
|
||||||
|
mark2_background #CBA6F7
|
||||||
|
mark3_foreground #1E1E2E
|
||||||
|
mark3_background #74C7EC
|
||||||
|
|
||||||
|
# The 16 terminal colors
|
||||||
|
|
||||||
|
# black
|
||||||
|
color0 #45475A
|
||||||
|
color8 #585B70
|
||||||
|
|
||||||
|
# red
|
||||||
|
color1 #F38BA8
|
||||||
|
color9 #F38BA8
|
||||||
|
|
||||||
|
# green
|
||||||
|
color2 #A6E3A1
|
||||||
|
color10 #A6E3A1
|
||||||
|
|
||||||
|
# yellow
|
||||||
|
color3 #F9E2AF
|
||||||
|
color11 #F9E2AF
|
||||||
|
|
||||||
|
# blue
|
||||||
|
color4 #89B4FA
|
||||||
|
color12 #89B4FA
|
||||||
|
|
||||||
|
# magenta
|
||||||
|
color5 #F5C2E7
|
||||||
|
color13 #F5C2E7
|
||||||
|
|
||||||
|
# cyan
|
||||||
|
color6 #94E2D5
|
||||||
|
color14 #94E2D5
|
||||||
|
|
||||||
|
# white
|
||||||
|
color7 #BAC2DE
|
||||||
|
color15 #A6ADC8
|
||||||
@@ -3,13 +3,13 @@ listen_on unix:/tmp/kitty
|
|||||||
shell_integration enabled
|
shell_integration enabled
|
||||||
|
|
||||||
# kitty-scrollback.nvim Kitten alias
|
# kitty-scrollback.nvim Kitten alias
|
||||||
# action_alias kitty_scrollback_nvim kitten $HOME/.local/share/nvim/lazy/kitty-scrollback.nvim/python/kitty_scrollback_nvim.py
|
action_alias kitty_scrollback_nvim kitten $HOME/.local/share/nvim/lazy/kitty-scrollback.nvim/python/kitty_scrollback_nvim.py
|
||||||
# Browse scrollback buffer in nvim
|
# Browse scrollback buffer in nvim
|
||||||
# map kitty_mod+h kitty_scrollback_nvim
|
map kitty_mod+h kitty_scrollback_nvim
|
||||||
# Browse output of the last shell command in nvim
|
# Browse output of the last shell command in nvim
|
||||||
# map kitty_mod+g kitty_scrollback_nvim --config ksb_builtin_last_cmd_output
|
map kitty_mod+g kitty_scrollback_nvim --config ksb_builtin_last_cmd_output
|
||||||
# Show clicked command output in nvim
|
# Show clicked command output in nvim
|
||||||
# mouse_map ctrl+shift+right press ungrabbed combine : mouse_select_command_output : kitty_scrollback_nvim --config ksb_builtin_last_visited_cmd_output
|
mouse_map ctrl+shift+right press ungrabbed combine : mouse_select_command_output : kitty_scrollback_nvim --config ksb_builtin_last_visited_cmd_output
|
||||||
|
|
||||||
# disable the stupid notification
|
# disable the stupid notification
|
||||||
confirm_os_window_close 0
|
confirm_os_window_close 0
|
||||||
@@ -20,7 +20,7 @@ shell /bin/zsh
|
|||||||
# hide_window_decorations yes
|
# hide_window_decorations yes
|
||||||
window_padding_width 10
|
window_padding_width 10
|
||||||
|
|
||||||
background_opacity 0.9
|
background_opacity 0.95
|
||||||
background_blur 16
|
background_blur 16
|
||||||
|
|
||||||
font_family monospace
|
font_family monospace
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
include kitty.conf
|
|
||||||
|
|
||||||
remember_window_size false
|
|
||||||
initial_window_width 960
|
|
||||||
initial_window_height 720
|
|
||||||
|
|
||||||
window_padding_width 5
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
protocol file
|
|
||||||
action launch --type=overlay xdg-open $FILE_PATH
|
|
||||||
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#8CAAEE4D
|
highlight.color=#8CAAEE
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#8CAAEE
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#8CAAEE
|
link.color=#F2D5CF
|
||||||
link.visited.color=#98B2EF
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#8CAAEE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#8CAAEE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#8CAAEE" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#8CAAEE" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#8CAAEE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#8CAAEE" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#8CAAEE" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#8CAAEE" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#8CAAEE" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#8CAAEE" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#8CAAEE" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#8CAAEE" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#8CAAEE" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#8CAAEE" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#8CAAEE" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#8CAAEE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#8CAAEE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#8CAAEE" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#8CAAEE" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#8CAAEE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#8CAAEE" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#8CAAEE" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#8CAAEE" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#8CAAEE" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#8CAAEE" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#8CAAEE" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#8CAAEE" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#8CAAEE" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#8CAAEE" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#8CAAEE" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#8CAAEE" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#8CAAEE" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#8CAAEE">
|
<g style="fill:#8CAAEE">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#8CAAEE;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#8CAAEE;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#8CAAEE;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#8CAAEE;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#8CAAEE;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#8CAAEE;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#8CAAEE;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#8CAAEE;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#8CAAEE;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#8CAAEE;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#8CAAEE" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#8CAAEE" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#8CAAEE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#8CAAEE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#8CAAEE" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#8CAAEE" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8CAAEE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#8CAAEE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#8CAAEE" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#8CAAEE" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#8CAAEE" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#8CAAEE" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#8CAAEE" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#8CAAEE" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#8CAAEE" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#8CAAEE" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#8CAAEE" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#8CAAEE" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#8CAAEE" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#8CAAEE" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#8CAAEE" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#8CAAEE" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#8CAAEE" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#8CAAEE" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8CAAEE;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8CAAEE;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8CAAEE;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#839EDD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#839EDD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#839EDD;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#839EDD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#8CAAEE" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#8CAAEE" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#839EDD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#8CAAEE" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#839EDD;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#8CAAEE" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#8CAAEE;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#8CAAEE;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#8CAAEE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#EEBEBE4D
|
highlight.color=#EEBEBE
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#EEBEBE
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#EEBEBE
|
link.color=#F2D5CF
|
||||||
link.visited.color=#E6C2C9
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EEBEBE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#EEBEBE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#EEBEBE" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#EEBEBE" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EEBEBE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#EEBEBE" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#EEBEBE" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#EEBEBE" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#EEBEBE" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#EEBEBE" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#EEBEBE" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#EEBEBE" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#EEBEBE" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#EEBEBE" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#EEBEBE" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#EEBEBE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#EEBEBE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#EEBEBE" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#EEBEBE" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#EEBEBE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#EEBEBE" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#EEBEBE" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#EEBEBE" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#EEBEBE" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#EEBEBE" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#EEBEBE" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#EEBEBE" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#EEBEBE" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#EEBEBE" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#EEBEBE" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#EEBEBE" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#EEBEBE" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#EEBEBE">
|
<g style="fill:#EEBEBE">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#EEBEBE;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#EEBEBE;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#EEBEBE;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#EEBEBE;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#EEBEBE;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#EEBEBE;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#EEBEBE;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#EEBEBE;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#EEBEBE;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#EEBEBE;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#EEBEBE" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#EEBEBE" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EEBEBE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#EEBEBE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#EEBEBE" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#EEBEBE" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EEBEBE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EEBEBE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#EEBEBE" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#EEBEBE" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#EEBEBE" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#EEBEBE" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#EEBEBE" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#EEBEBE" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#EEBEBE" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#EEBEBE" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#EEBEBE" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#EEBEBE" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#EEBEBE" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#EEBEBE" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#EEBEBE" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#EEBEBE" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#EEBEBE" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#EEBEBE" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EEBEBE;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EEBEBE;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EEBEBE;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DBB0B2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DBB0B2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DBB0B2;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DBB0B2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#EEBEBE" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#EEBEBE" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DBB0B2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#EEBEBE" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DBB0B2;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#EEBEBE" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#EEBEBE;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#EEBEBE;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#EEBEBE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#A6D1894D
|
highlight.color=#A6D189
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#A6D189
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#A6D189
|
link.color=#F2D5CF
|
||||||
link.visited.color=#ADD19F
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#A6D189" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#A6D189" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#A6D189" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#A6D189" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#A6D189" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#A6D189" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#A6D189" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#A6D189" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#A6D189" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#A6D189" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#A6D189" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#A6D189" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#A6D189" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#A6D189" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#A6D189" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#A6D189" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#A6D189" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#A6D189" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#A6D189" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#A6D189" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#A6D189" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#A6D189" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#A6D189" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#A6D189" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#A6D189" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#A6D189" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#A6D189" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#A6D189" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#A6D189" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#A6D189" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#A6D189" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#A6D189" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#A6D189">
|
<g style="fill:#A6D189">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#A6D189;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#A6D189;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#A6D189;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#A6D189;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#A6D189;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#A6D189;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#A6D189;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#A6D189;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#A6D189;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#A6D189;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#A6D189" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#A6D189" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#A6D189" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#A6D189" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#A6D189" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#A6D189" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#A6D189" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#A6D189" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#A6D189" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#A6D189" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#A6D189" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#A6D189" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#A6D189" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#A6D189" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#A6D189" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#A6D189" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#A6D189" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#A6D189" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#A6D189" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#A6D189" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#A6D189" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#A6D189" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#A6D189" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#A6D189" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#A6D189" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#A6D189" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#A6D189" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#A6D189" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#A6D189" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#A6D189" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#A6D189" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#A6D189" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#A6D189" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#A6D189" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#A6D189" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#A6D189" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#A6D189" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#A6D189" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#A6D189" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#A6D189" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#A6D189;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#A6D189;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#A6D189;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#9AC182;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#9AC182;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#9AC182;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#9AC182;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#A6D189" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#A6D189" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#9AC182;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#A6D189" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#9AC182;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#A6D189" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#A6D189;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#A6D189;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#A6D189;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#BABBF14D
|
highlight.color=#BABBF1
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#BABBF1
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#BABBF1
|
link.color=#F2D5CF
|
||||||
link.visited.color=#BDC0F2
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#BABBF1" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#BABBF1" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#BABBF1" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#BABBF1" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#BABBF1" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#BABBF1" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#BABBF1" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#BABBF1" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#BABBF1" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#BABBF1" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#BABBF1" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#BABBF1" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#BABBF1" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#BABBF1" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#BABBF1" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#BABBF1" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#BABBF1" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#BABBF1" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#BABBF1" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#BABBF1" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#BABBF1" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#BABBF1" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#BABBF1" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#BABBF1" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#BABBF1" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#BABBF1" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#BABBF1" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#BABBF1" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#BABBF1" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#BABBF1" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#BABBF1" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#BABBF1" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#BABBF1">
|
<g style="fill:#BABBF1">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#BABBF1;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#BABBF1;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#BABBF1;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#BABBF1;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#BABBF1;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#BABBF1;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#BABBF1;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#BABBF1;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#BABBF1;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#BABBF1;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BABBF1" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#BABBF1" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#BABBF1" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#BABBF1" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#BABBF1" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#BABBF1" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#BABBF1" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#BABBF1" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#BABBF1" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#BABBF1" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#BABBF1" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#BABBF1" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#BABBF1" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#BABBF1" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#BABBF1" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#BABBF1" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#BABBF1" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#BABBF1" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#BABBF1" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#BABBF1" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#BABBF1" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#BABBF1" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#BABBF1" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#BABBF1" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#BABBF1" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#BABBF1" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#BABBF1" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#BABBF1" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#BABBF1" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#BABBF1" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BABBF1;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BABBF1;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BABBF1;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#ACADDF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#ACADDF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#ACADDF;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#ACADDF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#BABBF1" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#BABBF1" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#ACADDF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#BABBF1" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#ACADDF;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#BABBF1" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#BABBF1;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#BABBF1;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#BABBF1;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#EA999C4D
|
highlight.color=#EA999C
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#EA999C
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#EA999C
|
link.color=#F2D5CF
|
||||||
link.visited.color=#E3A4AE
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EA999C" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#EA999C" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#EA999C" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#EA999C" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EA999C" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#EA999C" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#EA999C" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#EA999C" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#EA999C" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#EA999C" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#EA999C" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#EA999C" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#EA999C" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#EA999C" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#EA999C" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#EA999C" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#EA999C" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#EA999C" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#EA999C" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#EA999C" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#EA999C" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#EA999C" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#EA999C" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#EA999C" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#EA999C" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#EA999C" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#EA999C" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#EA999C" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#EA999C" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#EA999C" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#EA999C" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#EA999C" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#EA999C">
|
<g style="fill:#EA999C">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#EA999C;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#EA999C;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#EA999C;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#EA999C;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#EA999C;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#EA999C;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#EA999C;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#EA999C;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#EA999C;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#EA999C;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#EA999C" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#EA999C" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EA999C" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#EA999C" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#EA999C" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#EA999C" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA999C" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EA999C" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#EA999C" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#EA999C" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#EA999C" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#EA999C" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#EA999C" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#EA999C" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#EA999C" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#EA999C" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#EA999C" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#EA999C" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#EA999C" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#EA999C" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#EA999C" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#EA999C" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#EA999C" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#EA999C" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#EA999C" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#EA999C" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#EA999C" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#EA999C" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#EA999C" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#EA999C" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#EA999C" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#EA999C" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#EA999C" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#EA999C" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#EA999C" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#EA999C" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#EA999C" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#EA999C" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#EA999C" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#EA999C" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA999C;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA999C;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA999C;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D78E93;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D78E93;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D78E93;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D78E93;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#EA999C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#EA999C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D78E93;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#EA999C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D78E93;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#EA999C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#EA999C;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#EA999C;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#EA999C;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#CA9EE64D
|
highlight.color=#CA9EE6
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#CA9EE6
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#CA9EE6
|
link.color=#F2D5CF
|
||||||
link.visited.color=#CAA8E9
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#CA9EE6" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#CA9EE6" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#CA9EE6" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#CA9EE6" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#CA9EE6" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#CA9EE6" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#CA9EE6" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#CA9EE6" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#CA9EE6" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#CA9EE6" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#CA9EE6" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#CA9EE6" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#CA9EE6" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#CA9EE6" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#CA9EE6" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#CA9EE6" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#CA9EE6" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#CA9EE6" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#CA9EE6" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#CA9EE6" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#CA9EE6" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#CA9EE6" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#CA9EE6" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#CA9EE6" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#CA9EE6" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#CA9EE6" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#CA9EE6" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#CA9EE6" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#CA9EE6" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#CA9EE6" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#CA9EE6" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#CA9EE6" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#CA9EE6">
|
<g style="fill:#CA9EE6">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#CA9EE6;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#CA9EE6;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#CA9EE6;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#CA9EE6;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#CA9EE6;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#CA9EE6;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#CA9EE6;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#CA9EE6;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#CA9EE6;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#CA9EE6;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#CA9EE6" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#CA9EE6" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#CA9EE6" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#CA9EE6" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#CA9EE6" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#CA9EE6" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#CA9EE6" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#CA9EE6" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#CA9EE6" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#CA9EE6" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#CA9EE6" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#CA9EE6" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#CA9EE6" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#CA9EE6" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#CA9EE6" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#CA9EE6" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#CA9EE6" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#CA9EE6" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#CA9EE6" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#CA9EE6" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#CA9EE6" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#CA9EE6" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#CA9EE6" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#CA9EE6" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CA9EE6;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CA9EE6;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CA9EE6;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BA93D6;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BA93D6;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BA93D6;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BA93D6;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#CA9EE6" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#CA9EE6" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BA93D6;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#CA9EE6" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#BA93D6;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CA9EE6" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#CA9EE6;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#CA9EE6;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#CA9EE6;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#EF9F764D
|
highlight.color=#EF9F76
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#EF9F76
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#EF9F76
|
link.color=#F2D5CF
|
||||||
link.visited.color=#E7A98F
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EF9F76" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#EF9F76" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#EF9F76" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#EF9F76" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EF9F76" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#EF9F76" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#EF9F76" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#EF9F76" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#EF9F76" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#EF9F76" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#EF9F76" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#EF9F76" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#EF9F76" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#EF9F76" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#EF9F76" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#EF9F76" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#EF9F76" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#EF9F76" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#EF9F76" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#EF9F76" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#EF9F76" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#EF9F76" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#EF9F76" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#EF9F76" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#EF9F76" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#EF9F76" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#EF9F76" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#EF9F76" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#EF9F76" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#EF9F76" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#EF9F76" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#EF9F76" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#EF9F76">
|
<g style="fill:#EF9F76">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#EF9F76;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#EF9F76;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#EF9F76;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#EF9F76;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#EF9F76;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#EF9F76;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#EF9F76;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#EF9F76;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#EF9F76;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#EF9F76;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#EF9F76" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#EF9F76" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EF9F76" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#EF9F76" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#EF9F76" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#EF9F76" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EF9F76" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EF9F76" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#EF9F76" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#EF9F76" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#EF9F76" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#EF9F76" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#EF9F76" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#EF9F76" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#EF9F76" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#EF9F76" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#EF9F76" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#EF9F76" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#EF9F76" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#EF9F76" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#EF9F76" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#EF9F76" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#EF9F76" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#EF9F76" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#EF9F76" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#EF9F76" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#EF9F76" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#EF9F76" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#EF9F76" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#EF9F76" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EF9F76;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EF9F76;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EF9F76;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC9471;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC9471;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC9471;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC9471;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#EF9F76" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#EF9F76" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC9471;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#EF9F76" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC9471;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#EF9F76" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#EF9F76;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#EF9F76;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#EF9F76;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#F4B8E44D
|
highlight.color=#F4B8E4
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#F4B8E4
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#F4B8E4
|
link.color=#F2D5CF
|
||||||
link.visited.color=#EBBDE7
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#F4B8E4" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#F4B8E4" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#F4B8E4" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#F4B8E4" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#F4B8E4" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#F4B8E4" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#F4B8E4" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#F4B8E4" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#F4B8E4" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#F4B8E4" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#F4B8E4" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#F4B8E4" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#F4B8E4" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#F4B8E4" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#F4B8E4" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#F4B8E4" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#F4B8E4" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#F4B8E4" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#F4B8E4" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#F4B8E4" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#F4B8E4" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#F4B8E4" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#F4B8E4" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#F4B8E4" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#F4B8E4" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#F4B8E4" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#F4B8E4" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#F4B8E4" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#F4B8E4" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#F4B8E4" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#F4B8E4" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#F4B8E4" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#F4B8E4">
|
<g style="fill:#F4B8E4">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#F4B8E4;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#F4B8E4;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#F4B8E4;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#F4B8E4;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#F4B8E4;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#F4B8E4;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#F4B8E4;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#F4B8E4;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#F4B8E4;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#F4B8E4;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#F4B8E4" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#F4B8E4" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#F4B8E4" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#F4B8E4" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#F4B8E4" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#F4B8E4" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F4B8E4" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#F4B8E4" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#F4B8E4" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#F4B8E4" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#F4B8E4" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#F4B8E4" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#F4B8E4" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#F4B8E4" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#F4B8E4" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#F4B8E4" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#F4B8E4" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#F4B8E4" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#F4B8E4" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#F4B8E4" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#F4B8E4" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#F4B8E4" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#F4B8E4" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#F4B8E4" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#F4B8E4;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#F4B8E4;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#F4B8E4;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E0AAD4;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E0AAD4;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E0AAD4;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E0AAD4;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#F4B8E4" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#F4B8E4" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E0AAD4;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#F4B8E4" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E0AAD4;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#F4B8E4" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#F4B8E4;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#F4B8E4;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#F4B8E4;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#E782844D
|
highlight.color=#E78284
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#E78284
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#E78284
|
link.color=#F2D5CF
|
||||||
link.visited.color=#E1929B
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E78284" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#E78284" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#E78284" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#E78284" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E78284" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#E78284" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#E78284" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#E78284" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#E78284" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#E78284" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#E78284" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#E78284" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#E78284" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#E78284" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#E78284" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#E78284" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#E78284" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#E78284" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#E78284" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#E78284" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#E78284" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#E78284" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#E78284" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#E78284" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#E78284" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#E78284" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#E78284" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#E78284" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#E78284" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#E78284" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#E78284" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#E78284" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#E78284">
|
<g style="fill:#E78284">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#E78284;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#E78284;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#E78284;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#E78284;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#E78284;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#E78284;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#E78284;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#E78284;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#E78284;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#E78284;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#E78284" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#E78284" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E78284" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#E78284" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#E78284" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#E78284" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E78284" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E78284" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#E78284" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#E78284" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#E78284" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#E78284" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#E78284" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#E78284" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#E78284" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#E78284" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#E78284" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#E78284" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#E78284" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#E78284" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#E78284" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#E78284" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#E78284" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#E78284" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#E78284" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#E78284" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#E78284" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#E78284" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#E78284" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#E78284" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#E78284" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#E78284" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#E78284" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#E78284" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#E78284" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#E78284" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#E78284" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#E78284" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#E78284" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#E78284" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E78284;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E78284;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E78284;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D47A7E;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D47A7E;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D47A7E;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D47A7E;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E78284" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E78284" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D47A7E;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E78284" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D47A7E;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E78284" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#E78284;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#E78284;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#E78284;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#F2D5CF4D
|
highlight.color=#F2D5CF
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#F2D5CF
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#F2D5CF
|
link.color=#F2D5CF
|
||||||
link.visited.color=#EAD4D7
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#F2D5CF" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#F2D5CF" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#F2D5CF" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#F2D5CF" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#F2D5CF" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#F2D5CF" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#F2D5CF" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#F2D5CF" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#F2D5CF" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#F2D5CF" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#F2D5CF" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#F2D5CF" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#F2D5CF" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#F2D5CF" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#F2D5CF" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#F2D5CF" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#F2D5CF" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#F2D5CF" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#F2D5CF" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#F2D5CF" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#F2D5CF" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#F2D5CF" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#F2D5CF" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#F2D5CF" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#F2D5CF" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#F2D5CF" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#F2D5CF" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#F2D5CF" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#F2D5CF" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#F2D5CF" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#F2D5CF" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#F2D5CF" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#F2D5CF">
|
<g style="fill:#F2D5CF">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#F2D5CF;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#F2D5CF;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#F2D5CF;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#F2D5CF;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#F2D5CF;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#F2D5CF;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#F2D5CF;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#F2D5CF;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#F2D5CF;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#F2D5CF;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#F2D5CF" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#F2D5CF" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#F2D5CF" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#F2D5CF" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#F2D5CF" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#F2D5CF" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#F2D5CF" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#F2D5CF" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#F2D5CF" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#F2D5CF" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#F2D5CF" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#F2D5CF" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#F2D5CF" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#F2D5CF" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#F2D5CF" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#F2D5CF" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#F2D5CF" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#F2D5CF" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#F2D5CF" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#F2D5CF" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#F2D5CF" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#F2D5CF" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#F2D5CF" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#F2D5CF" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#F2D5CF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#F2D5CF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#F2D5CF;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DEC4C1;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DEC4C1;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DEC4C1;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DEC4C1;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#F2D5CF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#F2D5CF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DEC4C1;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#F2D5CF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DEC4C1;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#F2D5CF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#F2D5CF;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#F2D5CF;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#F2D5CF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#85C1DC4D
|
highlight.color=#85C1DC
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#85C1DC
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#85C1DC
|
link.color=#F2D5CF
|
||||||
link.visited.color=#92C4E1
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#85C1DC" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#85C1DC" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#85C1DC" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#85C1DC" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#85C1DC" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#85C1DC" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#85C1DC" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#85C1DC" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#85C1DC" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#85C1DC" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#85C1DC" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#85C1DC" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#85C1DC" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#85C1DC" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#85C1DC" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#85C1DC" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#85C1DC" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#85C1DC" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#85C1DC" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#85C1DC" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#85C1DC" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#85C1DC" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#85C1DC" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#85C1DC" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#85C1DC" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#85C1DC" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#85C1DC" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#85C1DC" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#85C1DC" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#85C1DC" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#85C1DC" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#85C1DC" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#85C1DC">
|
<g style="fill:#85C1DC">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#85C1DC;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#85C1DC;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#85C1DC;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#85C1DC;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#85C1DC;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#85C1DC;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#85C1DC;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#85C1DC;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#85C1DC;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#85C1DC;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#85C1DC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#85C1DC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#85C1DC" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#85C1DC" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#85C1DC" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#85C1DC" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#85C1DC" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#85C1DC" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#85C1DC" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#85C1DC" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#85C1DC" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#85C1DC" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#85C1DC" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#85C1DC" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#85C1DC" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#85C1DC" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#85C1DC" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#85C1DC" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#85C1DC" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#85C1DC" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#85C1DC" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#85C1DC" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#85C1DC" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#85C1DC" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#85C1DC" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#85C1DC" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#85C1DC" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#85C1DC" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#85C1DC" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#85C1DC" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#85C1DC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#85C1DC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#85C1DC;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7CB2CD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7CB2CD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7CB2CD;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7CB2CD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#85C1DC" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#85C1DC" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7CB2CD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#85C1DC" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7CB2CD;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#85C1DC" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#85C1DC;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#85C1DC;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#85C1DC;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#99D1DB4D
|
highlight.color=#99D1DB
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#99D1DB
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#99D1DB
|
link.color=#F2D5CF
|
||||||
link.visited.color=#A2D1E0
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#99D1DB" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#99D1DB" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#99D1DB" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#99D1DB" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#99D1DB" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#99D1DB" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#99D1DB" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#99D1DB" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#99D1DB" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#99D1DB" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#99D1DB" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#99D1DB" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#99D1DB" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#99D1DB" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#99D1DB" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#99D1DB" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#99D1DB" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#99D1DB" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#99D1DB" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#99D1DB" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#99D1DB" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#99D1DB" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#99D1DB" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#99D1DB" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#99D1DB" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#99D1DB" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#99D1DB" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#99D1DB" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#99D1DB" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#99D1DB" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#99D1DB" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#99D1DB" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#99D1DB">
|
<g style="fill:#99D1DB">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#99D1DB;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#99D1DB;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#99D1DB;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#99D1DB;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#99D1DB;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#99D1DB;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#99D1DB;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#99D1DB;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#99D1DB;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#99D1DB;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#99D1DB" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#99D1DB" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#99D1DB" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#99D1DB" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#99D1DB" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#99D1DB" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#99D1DB" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#99D1DB" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#99D1DB" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#99D1DB" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#99D1DB" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#99D1DB" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#99D1DB" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#99D1DB" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#99D1DB" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#99D1DB" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#99D1DB" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#99D1DB" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#99D1DB" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#99D1DB" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#99D1DB" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#99D1DB" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#99D1DB" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#99D1DB" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#99D1DB" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#99D1DB" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#99D1DB" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#99D1DB" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#99D1DB" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#99D1DB" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#99D1DB;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#99D1DB;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#99D1DB;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8EC1CC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8EC1CC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8EC1CC;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8EC1CC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#99D1DB" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#99D1DB" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8EC1CC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#99D1DB" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8EC1CC;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#99D1DB" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#99D1DB;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#99D1DB;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#99D1DB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#81C8BE4D
|
highlight.color=#81C8BE
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#81C8BE
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#81C8BE
|
link.color=#F2D5CF
|
||||||
link.visited.color=#8FCAC9
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#81C8BE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#81C8BE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#81C8BE" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#81C8BE" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#81C8BE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#81C8BE" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#81C8BE" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#81C8BE" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#81C8BE" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#81C8BE" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#81C8BE" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#81C8BE" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#81C8BE" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#81C8BE" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#81C8BE" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#81C8BE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#81C8BE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#81C8BE" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#81C8BE" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#81C8BE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#81C8BE" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#81C8BE" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#81C8BE" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#81C8BE" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#81C8BE" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#81C8BE" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#81C8BE" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#81C8BE" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#81C8BE" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#81C8BE" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#81C8BE" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#81C8BE" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#81C8BE">
|
<g style="fill:#81C8BE">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#81C8BE;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#81C8BE;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#81C8BE;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#81C8BE;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#81C8BE;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#81C8BE;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#81C8BE;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#81C8BE;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#81C8BE;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#81C8BE;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#81C8BE" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#81C8BE" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#81C8BE" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#81C8BE" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#81C8BE" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#81C8BE" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#81C8BE" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#81C8BE" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#81C8BE" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#81C8BE" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#81C8BE" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#81C8BE" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#81C8BE" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#81C8BE" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#81C8BE" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#81C8BE" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#81C8BE" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#81C8BE" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#81C8BE" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#81C8BE" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#81C8BE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#81C8BE" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#81C8BE" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#81C8BE" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#81C8BE" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#81C8BE" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#81C8BE" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#81C8BE" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#81C8BE" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#81C8BE" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#81C8BE;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#81C8BE;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#81C8BE;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#79B9B2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#79B9B2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#79B9B2;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#79B9B2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#81C8BE" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#81C8BE" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#79B9B2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#81C8BE" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#79B9B2;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#81C8BE" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#81C8BE;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#81C8BE;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#81C8BE;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#51576D
|
|||||||
mid.light.color=#51576D
|
mid.light.color=#51576D
|
||||||
dark.color=#292C3C
|
dark.color=#292C3C
|
||||||
mid.color=#292C3C
|
mid.color=#292C3C
|
||||||
highlight.color=#E5C8904D
|
highlight.color=#E5C890
|
||||||
inactive.highlight.color=#51576D
|
inactive.highlight.color=#E5C890
|
||||||
tooltip.base.color=#292C3C
|
|
||||||
text.color=#C6D0F5
|
text.color=#C6D0F5
|
||||||
window.text.color=#C6D0F5
|
window.text.color=#C6D0F5
|
||||||
button.text.color=#C6D0F5
|
button.text.color=#C6D0F5
|
||||||
disabled.text.color=#626880
|
disabled.text.color=#626880
|
||||||
tooltip.text.color=#C6D0F5
|
tooltip.text.color=#C6D0F5
|
||||||
highlight.text.color=#C6D0F5
|
highlight.text.color=#292C3C
|
||||||
link.color=#E5C890
|
link.color=#F2D5CF
|
||||||
link.visited.color=#DFCAA4
|
link.visited.color=#8CAAEE
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#949CBB
|
text.normal.color=#626880
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#C6D0F5
|
text.normal.color=#C6D0F5
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#292C3C
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#292C3C
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#C6D0F5
|
text.focus.color=#C6D0F5
|
||||||
text.press.color=#C6D0F5
|
text.press.color=#C6D0F5
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#C6D0F5
|
|
||||||
text.toggle.color=#C6D0F5
|
text.toggle.color=#C6D0F5
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#C6D0F5" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E5C890" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#E5C890" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#E5C890" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#E5C890" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E5C890" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#E5C890" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#E5C890" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#E5C890" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#E5C890" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#E5C890" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#E5C890" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#E5C890" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#E5C890" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#E5C890" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#E5C890" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#292C3C" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#292C3C" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#E5C890" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#E5C890" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#E5C890" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#E5C890" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#E5C890" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#E5C890" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#E5C890" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#E5C890" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#E5C890" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#E5C890" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#E5C890" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#E5C890" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#E5C890" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#E5C890" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#E5C890" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#E5C890" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#E5C890" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#E5C890">
|
<g style="fill:#E5C890">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#C6D0F5" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#51576D" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#E5C890;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#E5C890;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#E5C890;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#E5C890;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#E5C890;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#E5C890;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#51576D;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#51576D;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#51576D;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#E5C890;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#E5C890;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#E5C890;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#E5C890;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#51576D" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#414559" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#414559" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#51576D" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#51576D" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#51576D" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#51576D;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#414559;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#626880" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#E5C890" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#E5C890" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#51576D" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#51576D" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#51576D" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#51576D" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#51576D" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E5C890" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#E5C890" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#E5C890" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#E5C890" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E5C890" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E5C890" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#E5C890" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#E5C890" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#E5C890" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#E5C890" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#E5C890" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#E5C890" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#E5C890" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#E5C890" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#E5C890" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#E5C890" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#A5ADCE" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#292C3C" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#737994" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#414559" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#292C3C" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#414559" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#E5C890" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#E5C890" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#E5C890" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#E5C890" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#E5C890" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#E5C890" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#E5C890" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#E5C890" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#E5C890" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#E5C890" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#51576D" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#E5C890" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#E5C890" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#51576D" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#51576D" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#E5C890" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#E5C890" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#E5C890" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#E5C890" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#E5C890" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#E5C890" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#E5C890" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#E5C890" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#E5C890" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#414559" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#303446" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#414559" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#C6D0F5" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#C6D0F5" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#E5C890" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#414559" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E5C890;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E5C890;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E5C890;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#414559" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D3B988;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#292C3C" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D3B988;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#292C3C" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#303446;stroke:#C6D0F5;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D3B988;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#292C3C" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D3B988;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E5C890" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#303446" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E5C890" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D3B988;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#C6D0F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
<g style="fill:#414559" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#303446" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E5C890" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#C6D0F5;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D3B988;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#C6D0F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#303446" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E5C890" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#414559;stroke:#C6D0F5;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#414559;stroke:#292C3C;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#51576D" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#303446;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#51576D" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#E5C890;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#E5C890;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#303446" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#E5C890;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#303446" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#1E66F54D
|
highlight.color=#1E66F5
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#1E66F5
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#1E66F5
|
link.color=#DC8A78
|
||||||
link.visited.color=#2762D9
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#1E66F5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#1E66F5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#1E66F5" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#1E66F5" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#1E66F5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#1E66F5" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#1E66F5" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#1E66F5" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#1E66F5" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#1E66F5" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#1E66F5" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#1E66F5" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#1E66F5" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#1E66F5" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#1E66F5" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#1E66F5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#1E66F5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#1E66F5" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#1E66F5" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#1E66F5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#1E66F5" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#1E66F5" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#1E66F5" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#1E66F5" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#1E66F5" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#1E66F5" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#1E66F5" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#1E66F5" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#1E66F5" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#1E66F5" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#1E66F5" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#1E66F5" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#1E66F5">
|
<g style="fill:#1E66F5">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#1E66F5;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#1E66F5;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#1E66F5;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#1E66F5;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#1E66F5;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#1E66F5;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#1E66F5;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#1E66F5;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#1E66F5;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#1E66F5;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#1E66F5" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#1E66F5" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#1E66F5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#1E66F5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#1E66F5" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#1E66F5" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#1E66F5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#1E66F5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#1E66F5" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#1E66F5" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#1E66F5" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#1E66F5" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#1E66F5" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#1E66F5" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#1E66F5" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#1E66F5" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#1E66F5" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#1E66F5" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#1E66F5" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#1E66F5" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#1E66F5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#1E66F5" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#1E66F5" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#1E66F5" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#1E66F5" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#1E66F5" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#1E66F5" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#1E66F5" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#1E66F5" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#1E66F5" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1E66F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1E66F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1E66F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#3375F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#3375F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#3375F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#3375F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#1E66F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#1E66F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#3375F5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#1E66F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#3375F5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#1E66F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#1E66F5;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#1E66F5;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#1E66F5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#DD78784D
|
highlight.color=#DD7878
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#DD7878
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#DD7878
|
link.color=#DC8A78
|
||||||
link.visited.color=#C07075
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#DD7878" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#DD7878" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#DD7878" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#DD7878" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#DD7878" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#DD7878" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#DD7878" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#DD7878" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#DD7878" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#DD7878" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#DD7878" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#DD7878" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#DD7878" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#DD7878" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#DD7878" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#DD7878" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#DD7878" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#DD7878" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#DD7878" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#DD7878" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#DD7878" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#DD7878" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#DD7878" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#DD7878" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#DD7878" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#DD7878" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#DD7878" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#DD7878" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#DD7878" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#DD7878" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#DD7878" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#DD7878" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#DD7878">
|
<g style="fill:#DD7878">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#DD7878;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#DD7878;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#DD7878;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#DD7878;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#DD7878;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#DD7878;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#DD7878;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#DD7878;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#DD7878;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#DD7878;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#DD7878" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#DD7878" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#DD7878" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#DD7878" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#DD7878" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#DD7878" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DD7878" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#DD7878" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#DD7878" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#DD7878" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#DD7878" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#DD7878" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#DD7878" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#DD7878" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#DD7878" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#DD7878" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#DD7878" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#DD7878" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#DD7878" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#DD7878" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#DD7878" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#DD7878" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#DD7878" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#DD7878" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#DD7878" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#DD7878" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#DD7878" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#DD7878" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#DD7878" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#DD7878" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#DD7878" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#DD7878" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#DD7878" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#DD7878" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#DD7878" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#DD7878" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#DD7878" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#DD7878" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#DD7878" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#DD7878" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DD7878;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DD7878;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DD7878;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE8585;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE8585;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE8585;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE8585;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#DD7878" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#DD7878" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE8585;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#DD7878" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE8585;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#DD7878" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#DD7878;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#DD7878;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#DD7878;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#40A02B4D
|
highlight.color=#40A02B
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#40A02B
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#40A02B
|
link.color=#DC8A78
|
||||||
link.visited.color=#429037
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#40A02B" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#40A02B" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#40A02B" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#40A02B" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#40A02B" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#40A02B" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#40A02B" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#40A02B" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#40A02B" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#40A02B" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#40A02B" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#40A02B" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#40A02B" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#40A02B" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#40A02B" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#40A02B" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#40A02B" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#40A02B" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#40A02B" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#40A02B" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#40A02B" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#40A02B" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#40A02B" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#40A02B" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#40A02B" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#40A02B" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#40A02B" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#40A02B" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#40A02B" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#40A02B" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#40A02B" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#40A02B" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#40A02B">
|
<g style="fill:#40A02B">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#40A02B;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#40A02B;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#40A02B;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#40A02B;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#40A02B;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#40A02B;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#40A02B;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#40A02B;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#40A02B;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#40A02B;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#40A02B" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#40A02B" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#40A02B" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#40A02B" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#40A02B" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#40A02B" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#40A02B" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#40A02B" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#40A02B" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#40A02B" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#40A02B" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#40A02B" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#40A02B" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#40A02B" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#40A02B" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#40A02B" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#40A02B" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#40A02B" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#40A02B" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#40A02B" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#40A02B" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#40A02B" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#40A02B" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#40A02B" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#40A02B" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#40A02B" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#40A02B" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#40A02B" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#40A02B" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#40A02B" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#40A02B" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#40A02B" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#40A02B" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#40A02B" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#40A02B" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#40A02B" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#40A02B" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#40A02B" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#40A02B" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#40A02B" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#40A02B;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#40A02B;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#40A02B;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#51A940;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#51A940;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#51A940;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#51A940;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#40A02B" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#40A02B" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#51A940;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#40A02B" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#51A940;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#40A02B" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#40A02B;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#40A02B;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#40A02B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#7287FD4D
|
highlight.color=#7287FD
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#7287FD
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#7287FD
|
link.color=#DC8A78
|
||||||
link.visited.color=#6A7CDF
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#7287FD" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#7287FD" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#7287FD" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#7287FD" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#7287FD" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#7287FD" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#7287FD" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#7287FD" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#7287FD" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#7287FD" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#7287FD" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#7287FD" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#7287FD" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#7287FD" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#7287FD" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#7287FD" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#7287FD" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#7287FD" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#7287FD" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#7287FD" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#7287FD" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#7287FD" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#7287FD" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#7287FD" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#7287FD" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#7287FD" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#7287FD" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#7287FD" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#7287FD" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#7287FD" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#7287FD" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#7287FD" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#7287FD">
|
<g style="fill:#7287FD">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#7287FD;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#7287FD;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#7287FD;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#7287FD;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#7287FD;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#7287FD;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#7287FD;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#7287FD;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#7287FD;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#7287FD;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#7287FD" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#7287FD" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#7287FD" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#7287FD" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#7287FD" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#7287FD" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#7287FD" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#7287FD" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#7287FD" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#7287FD" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#7287FD" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#7287FD" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#7287FD" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#7287FD" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#7287FD" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#7287FD" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#7287FD" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#7287FD" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#7287FD" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#7287FD" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#7287FD" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#7287FD" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#7287FD" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#7287FD" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#7287FD" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#7287FD" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#7287FD" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#7287FD" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#7287FD" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#7287FD" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#7287FD" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#7287FD" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#7287FD" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#7287FD" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#7287FD" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#7287FD" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#7287FD" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#7287FD" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#7287FD" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#7287FD" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7287FD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7287FD;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7287FD;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7E92FC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7E92FC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7E92FC;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7E92FC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#7287FD" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#7287FD" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7E92FC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#7287FD" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#7E92FC;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#7287FD" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#7287FD;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#7287FD;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#7287FD;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#E645534D
|
highlight.color=#E64553
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#E64553
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#E64553
|
link.color=#DC8A78
|
||||||
link.visited.color=#C74757
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E64553" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#E64553" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#E64553" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#E64553" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E64553" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#E64553" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#E64553" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#E64553" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#E64553" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#E64553" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#E64553" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#E64553" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#E64553" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#E64553" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#E64553" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#E64553" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#E64553" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#E64553" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#E64553" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#E64553" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#E64553" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#E64553" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#E64553" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#E64553" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#E64553" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#E64553" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#E64553" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#E64553" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#E64553" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#E64553" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#E64553" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#E64553" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#E64553">
|
<g style="fill:#E64553">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#E64553;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#E64553;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#E64553;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#E64553;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#E64553;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#E64553;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#E64553;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#E64553;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#E64553;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#E64553;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#E64553" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#E64553" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E64553" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#E64553" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#E64553" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#E64553" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#E64553" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#E64553" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#E64553" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#E64553" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#E64553" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#E64553" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#E64553" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#E64553" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#E64553" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#E64553" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#E64553" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#E64553" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#E64553" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#E64553" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#E64553" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#E64553" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#E64553" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#E64553" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#E64553" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#E64553" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#E64553" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#E64553" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#E64553" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#E64553" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#E64553" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#E64553" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#E64553" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#E64553" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#E64553" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#E64553" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#E64553" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#E64553" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#E64553" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#E64553" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E64553;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E64553;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E64553;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E75764;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E75764;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E75764;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E75764;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E64553" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E64553" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E75764;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E64553" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#E75764;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E64553" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#E64553;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#E64553;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#E64553;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#8839EF4D
|
highlight.color=#8839EF
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#8839EF
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#8839EF
|
link.color=#DC8A78
|
||||||
link.visited.color=#7C3ED4
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#8839EF" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#8839EF" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#8839EF" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#8839EF" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#8839EF" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#8839EF" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#8839EF" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#8839EF" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#8839EF" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#8839EF" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#8839EF" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#8839EF" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#8839EF" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#8839EF" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#8839EF" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#8839EF" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#8839EF" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#8839EF" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#8839EF" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#8839EF" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#8839EF" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#8839EF" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#8839EF" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#8839EF" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#8839EF" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#8839EF" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#8839EF" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#8839EF" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#8839EF" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#8839EF" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#8839EF" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#8839EF" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#8839EF">
|
<g style="fill:#8839EF">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#8839EF;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#8839EF;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#8839EF;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#8839EF;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#8839EF;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#8839EF;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#8839EF;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#8839EF;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#8839EF;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#8839EF;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#8839EF" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#8839EF" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#8839EF" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#8839EF" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#8839EF" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#8839EF" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#8839EF" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#8839EF" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#8839EF" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#8839EF" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#8839EF" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#8839EF" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#8839EF" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#8839EF" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#8839EF" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#8839EF" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#8839EF" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#8839EF" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#8839EF" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#8839EF" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#8839EF" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#8839EF" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#8839EF" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#8839EF" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#8839EF" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#8839EF" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#8839EF" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#8839EF" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#8839EF" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#8839EF" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#8839EF" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#8839EF" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#8839EF" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#8839EF" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#8839EF" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#8839EF" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#8839EF" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#8839EF" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#8839EF" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#8839EF" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8839EF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8839EF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#8839EF;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#924CF0;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#924CF0;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#924CF0;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#924CF0;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#8839EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#8839EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#924CF0;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#8839EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#924CF0;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#8839EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#8839EF;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#8839EF;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#8839EF;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#FE640B4D
|
highlight.color=#FE640B
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#FE640B
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#FE640B
|
link.color=#DC8A78
|
||||||
link.visited.color=#DA601E
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#FE640B" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#FE640B" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#FE640B" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#FE640B" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#FE640B" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#FE640B" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#FE640B" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#FE640B" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#FE640B" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#FE640B" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#FE640B" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#FE640B" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#FE640B" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#FE640B" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#FE640B" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#FE640B" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#FE640B" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#FE640B" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#FE640B" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#FE640B" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#FE640B" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#FE640B" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#FE640B" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#FE640B" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#FE640B" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#FE640B" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#FE640B" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#FE640B" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#FE640B" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#FE640B" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#FE640B" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#FE640B" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#FE640B">
|
<g style="fill:#FE640B">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#FE640B;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#FE640B;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#FE640B;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#FE640B;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#FE640B;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#FE640B;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#FE640B;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#FE640B;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#FE640B;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#FE640B;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#FE640B" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#FE640B" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#FE640B" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#FE640B" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#FE640B" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#FE640B" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#FE640B" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#FE640B" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#FE640B" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#FE640B" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#FE640B" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#FE640B" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#FE640B" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#FE640B" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#FE640B" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#FE640B" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#FE640B" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#FE640B" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#FE640B" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#FE640B" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#FE640B" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#FE640B" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#FE640B" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#FE640B" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#FE640B" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#FE640B" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#FE640B" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#FE640B" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#FE640B" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#FE640B" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#FE640B" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#FE640B" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#FE640B" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#FE640B" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#FE640B" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#FE640B" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#FE640B" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#FE640B" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#FE640B" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#FE640B" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FE640B;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FE640B;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FE640B;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FC7323;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FC7323;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FC7323;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FC7323;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#FE640B" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#FE640B" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FC7323;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#FE640B" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#FC7323;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#FE640B" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#FE640B;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#FE640B;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#FE640B;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#EA76CB4D
|
highlight.color=#EA76CB
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#EA76CB
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#EA76CB
|
link.color=#DC8A78
|
||||||
link.visited.color=#CA6EB7
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EA76CB" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#EA76CB" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#EA76CB" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#EA76CB" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EA76CB" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#EA76CB" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#EA76CB" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#EA76CB" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#EA76CB" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#EA76CB" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#EA76CB" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#EA76CB" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#EA76CB" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#EA76CB" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#EA76CB" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#EA76CB" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#EA76CB" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#EA76CB" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#EA76CB" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#EA76CB" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#EA76CB" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#EA76CB" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#EA76CB" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#EA76CB" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#EA76CB" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#EA76CB" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#EA76CB" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#EA76CB" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#EA76CB" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#EA76CB" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#EA76CB" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#EA76CB" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#EA76CB">
|
<g style="fill:#EA76CB">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#EA76CB;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#EA76CB;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#EA76CB;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#EA76CB;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#EA76CB;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#EA76CB;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#EA76CB;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#EA76CB;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#EA76CB;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#EA76CB;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#EA76CB" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#EA76CB" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EA76CB" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#EA76CB" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#EA76CB" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#EA76CB" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#EA76CB" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#EA76CB" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#EA76CB" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#EA76CB" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#EA76CB" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#EA76CB" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#EA76CB" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#EA76CB" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#EA76CB" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#EA76CB" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#EA76CB" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#EA76CB" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#EA76CB" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#EA76CB" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#EA76CB" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#EA76CB" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#EA76CB" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#EA76CB" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#EA76CB" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#EA76CB" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#EA76CB" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#EA76CB" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#EA76CB" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#EA76CB" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA76CB;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA76CB;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA76CB;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA83CF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA83CF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA83CF;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA83CF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#EA76CB" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#EA76CB" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA83CF;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#EA76CB" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EA83CF;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#EA76CB" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#EA76CB;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#EA76CB;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#EA76CB;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#D20F394D
|
highlight.color=#D20F39
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#D20F39
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#D20F39
|
link.color=#DC8A78
|
||||||
link.visited.color=#B71C43
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#D20F39" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#D20F39" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#D20F39" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#D20F39" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#D20F39" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#D20F39" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#D20F39" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#D20F39" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#D20F39" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#D20F39" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#D20F39" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#D20F39" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#D20F39" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#D20F39" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#D20F39" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#D20F39" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#D20F39" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#D20F39" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#D20F39" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#D20F39" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#D20F39" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#D20F39" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#D20F39" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#D20F39" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#D20F39" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#D20F39" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#D20F39" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#D20F39" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#D20F39" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#D20F39" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#D20F39" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#D20F39" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#D20F39">
|
<g style="fill:#D20F39">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#D20F39;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#D20F39;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#D20F39;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#D20F39;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#D20F39;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#D20F39;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#D20F39;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#D20F39;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#D20F39;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#D20F39;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#D20F39" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#D20F39" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#D20F39" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#D20F39" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#D20F39" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#D20F39" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#D20F39" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#D20F39" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#D20F39" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#D20F39" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#D20F39" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#D20F39" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#D20F39" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#D20F39" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#D20F39" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#D20F39" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#D20F39" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#D20F39" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#D20F39" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#D20F39" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#D20F39" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#D20F39" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#D20F39" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#D20F39" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#D20F39" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#D20F39" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#D20F39" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#D20F39" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#D20F39" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#D20F39" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#D20F39" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#D20F39" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#D20F39" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#D20F39" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#D20F39" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#D20F39" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#D20F39" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#D20F39" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#D20F39" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#D20F39" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D20F39;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D20F39;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D20F39;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D5264C;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D5264C;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D5264C;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D5264C;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#D20F39" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#D20F39" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D5264C;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#D20F39" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#D5264C;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#D20F39" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#D20F39;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#D20F39;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#D20F39;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#DC8A784D
|
highlight.color=#DC8A78
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#DC8A78
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#DC8A78
|
link.color=#DC8A78
|
||||||
link.visited.color=#BF7E75
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#DC8A78" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#DC8A78" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#DC8A78" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#DC8A78" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#DC8A78" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#DC8A78" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#DC8A78" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#DC8A78" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#DC8A78" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#DC8A78" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#DC8A78" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#DC8A78" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#DC8A78" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#DC8A78" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#DC8A78" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#DC8A78" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#DC8A78" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#DC8A78" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#DC8A78" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#DC8A78" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#DC8A78" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#DC8A78" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#DC8A78" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#DC8A78" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#DC8A78" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#DC8A78" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#DC8A78" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#DC8A78" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#DC8A78" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#DC8A78" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#DC8A78" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#DC8A78" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#DC8A78">
|
<g style="fill:#DC8A78">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#DC8A78;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#DC8A78;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#DC8A78;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#DC8A78;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#DC8A78;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#DC8A78;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#DC8A78;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#DC8A78;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#DC8A78;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#DC8A78;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#DC8A78" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#DC8A78" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#DC8A78" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#DC8A78" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#DC8A78" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#DC8A78" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#DC8A78" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#DC8A78" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#DC8A78" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#DC8A78" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#DC8A78" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#DC8A78" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#DC8A78" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#DC8A78" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#DC8A78" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#DC8A78" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#DC8A78" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#DC8A78" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#DC8A78" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#DC8A78" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#DC8A78" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#DC8A78" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#DC8A78" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#DC8A78" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#DC8A78" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#DC8A78" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#DC8A78" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#DC8A78" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#DC8A78" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#DC8A78" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC8A78;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC8A78;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DC8A78;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE9585;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE9585;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE9585;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE9585;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#DC8A78" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#DC8A78" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE9585;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#DC8A78" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#DE9585;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#DC8A78" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#DC8A78;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#DC8A78;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#DC8A78;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#209FB54D
|
highlight.color=#209FB5
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#209FB5
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#209FB5
|
link.color=#DC8A78
|
||||||
link.visited.color=#298FA6
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#209FB5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#209FB5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#209FB5" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#209FB5" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#209FB5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#209FB5" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#209FB5" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#209FB5" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#209FB5" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#209FB5" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#209FB5" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#209FB5" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#209FB5" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#209FB5" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#209FB5" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#209FB5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#209FB5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#209FB5" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#209FB5" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#209FB5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#209FB5" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#209FB5" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#209FB5" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#209FB5" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#209FB5" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#209FB5" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#209FB5" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#209FB5" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#209FB5" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#209FB5" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#209FB5" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#209FB5" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#209FB5">
|
<g style="fill:#209FB5">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#209FB5;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#209FB5;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#209FB5;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#209FB5;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#209FB5;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#209FB5;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#209FB5;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#209FB5;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#209FB5;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#209FB5;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#209FB5" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#209FB5" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#209FB5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#209FB5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#209FB5" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#209FB5" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#209FB5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#209FB5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#209FB5" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#209FB5" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#209FB5" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#209FB5" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#209FB5" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#209FB5" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#209FB5" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#209FB5" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#209FB5" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#209FB5" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#209FB5" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#209FB5" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#209FB5" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#209FB5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#209FB5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#209FB5" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#209FB5" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#209FB5" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#209FB5" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#209FB5" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#209FB5" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#209FB5" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#209FB5" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#209FB5" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#209FB5" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#209FB5" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#209FB5" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#209FB5" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#209FB5" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#209FB5" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#209FB5" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#209FB5" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#209FB5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#209FB5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#209FB5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#35A8BC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#35A8BC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#35A8BC;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#35A8BC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#209FB5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#209FB5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#35A8BC;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#209FB5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#35A8BC;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#209FB5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#209FB5;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#209FB5;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#209FB5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#04A5E54D
|
highlight.color=#04A5E5
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#04A5E5
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#04A5E5
|
link.color=#DC8A78
|
||||||
link.visited.color=#1294CC
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#04A5E5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#04A5E5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#04A5E5" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#04A5E5" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#04A5E5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#04A5E5" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#04A5E5" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#04A5E5" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#04A5E5" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#04A5E5" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#04A5E5" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#04A5E5" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#04A5E5" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#04A5E5" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#04A5E5" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#04A5E5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#04A5E5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#04A5E5" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#04A5E5" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#04A5E5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#04A5E5" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#04A5E5" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#04A5E5" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#04A5E5" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#04A5E5" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#04A5E5" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#04A5E5" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#04A5E5" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#04A5E5" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#04A5E5" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#04A5E5" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#04A5E5" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#04A5E5">
|
<g style="fill:#04A5E5">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#04A5E5;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#04A5E5;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#04A5E5;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#04A5E5;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#04A5E5;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#04A5E5;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#04A5E5;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#04A5E5;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#04A5E5;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#04A5E5;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#04A5E5" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#04A5E5" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#04A5E5" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#04A5E5" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#04A5E5" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#04A5E5" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#04A5E5" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#04A5E5" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#04A5E5" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#04A5E5" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#04A5E5" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#04A5E5" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#04A5E5" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#04A5E5" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#04A5E5" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#04A5E5" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#04A5E5" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#04A5E5" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#04A5E5" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#04A5E5" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#04A5E5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#04A5E5" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#04A5E5" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#04A5E5" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#04A5E5" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#04A5E5" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#04A5E5" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#04A5E5" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#04A5E5" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#04A5E5" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#04A5E5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#04A5E5;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#04A5E5;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1CADE7;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1CADE7;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1CADE7;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1CADE7;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#04A5E5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#04A5E5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1CADE7;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#04A5E5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#1CADE7;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#04A5E5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#04A5E5;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#04A5E5;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#04A5E5;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |
@@ -80,17 +80,16 @@ light.color=#BCC0CC
|
|||||||
mid.light.color=#BCC0CC
|
mid.light.color=#BCC0CC
|
||||||
dark.color=#E6E9EF
|
dark.color=#E6E9EF
|
||||||
mid.color=#E6E9EF
|
mid.color=#E6E9EF
|
||||||
highlight.color=#1792994D
|
highlight.color=#179299
|
||||||
inactive.highlight.color=#BCC0CC
|
inactive.highlight.color=#179299
|
||||||
tooltip.base.color=#E6E9EF
|
|
||||||
text.color=#4C4F69
|
text.color=#4C4F69
|
||||||
window.text.color=#4C4F69
|
window.text.color=#4C4F69
|
||||||
button.text.color=#4C4F69
|
button.text.color=#4C4F69
|
||||||
disabled.text.color=#ACB0BE
|
disabled.text.color=#ACB0BE
|
||||||
tooltip.text.color=#4C4F69
|
tooltip.text.color=#4C4F69
|
||||||
highlight.text.color=#4C4F69
|
highlight.text.color=#E6E9EF
|
||||||
link.color=#179299
|
link.color=#DC8A78
|
||||||
link.visited.color=#21858F
|
link.visited.color=#1E66F5
|
||||||
|
|
||||||
[ItemView]
|
[ItemView]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -99,8 +98,7 @@ interior.element=itemview
|
|||||||
frame=true
|
frame=true
|
||||||
interior=true
|
interior=true
|
||||||
text.iconspacing=3
|
text.iconspacing=3
|
||||||
text.press.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
|
||||||
|
|
||||||
[RadioButton]
|
[RadioButton]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -129,8 +127,8 @@ interior.element=button
|
|||||||
frame.element=button
|
frame.element=button
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
|
|
||||||
[PanelButtonTool]
|
[PanelButtonTool]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
@@ -232,7 +230,7 @@ frame.bottom=3
|
|||||||
frame.left=3
|
frame.left=3
|
||||||
frame.right=3
|
frame.right=3
|
||||||
indicator.size=10
|
indicator.size=10
|
||||||
text.normal.color=#7C7F93
|
text.normal.color=#ACB0BE
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
@@ -314,14 +312,10 @@ interior.element=tbutton
|
|||||||
indicator.element=arrow
|
indicator.element=arrow
|
||||||
text.normal.color=#4C4F69
|
text.normal.color=#4C4F69
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#E6E9EF
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#E6E9EF
|
||||||
text.bold=false
|
text.bold=false
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[Scrollbar]
|
[Scrollbar]
|
||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
indicator.size=0
|
indicator.size=0
|
||||||
@@ -387,10 +381,6 @@ frame.right=3
|
|||||||
inherits=PanelButtonCommand
|
inherits=PanelButtonCommand
|
||||||
interior.element=menuitem
|
interior.element=menuitem
|
||||||
indicator.size=8
|
indicator.size=8
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
frame.right=10
|
|
||||||
frame.left=10
|
|
||||||
text.focus.color=#4C4F69
|
text.focus.color=#4C4F69
|
||||||
text.press.color=#4C4F69
|
text.press.color=#4C4F69
|
||||||
|
|
||||||
@@ -432,7 +422,6 @@ text.margin.top=1
|
|||||||
text.margin.bottom=1
|
text.margin.bottom=1
|
||||||
text.margin.left=3
|
text.margin.left=3
|
||||||
text.margin.right=3
|
text.margin.right=3
|
||||||
text.press.color=#4C4F69
|
|
||||||
text.toggle.color=#4C4F69
|
text.toggle.color=#4C4F69
|
||||||
|
|
||||||
[ToolboxTab]
|
[ToolboxTab]
|
||||||
@@ -462,7 +451,7 @@ blur_translucent=true
|
|||||||
centered_forms=false
|
centered_forms=false
|
||||||
kinetic_scrolling=false
|
kinetic_scrolling=false
|
||||||
middle_click_scroll=false
|
middle_click_scroll=false
|
||||||
no_selection_tint=true
|
no_selection_tint=false
|
||||||
noninteger_translucency=false
|
noninteger_translucency=false
|
||||||
style_vertical_toolbars=false
|
style_vertical_toolbars=false
|
||||||
blur_only_active_window=false
|
blur_only_active_window=false
|
||||||
|
|||||||
@@ -193,41 +193,40 @@
|
|||||||
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
<rect id="grip-normal" style="opacity:0" width="5" height="5" x="549.3" y="636.64"/>
|
||||||
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
<rect id="grip-focused" style="opacity:0" width="5" height="5" x="579.3" y="636.64"/>
|
||||||
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
<rect id="grip-pressed" style="opacity:0" width="5" height="5" x="609.3" y="636.64"/>
|
||||||
<rect width="5" x="327" y="306" height="1" style="opacity:0.55;fill:#4C4F69" id="slider-tick-normal" />
|
|
||||||
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
<g id="itemview-toggled-left" transform="matrix(0.44036689,0,0,-1.999996,510.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#179299" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
<g id="itemview-toggled-bottom" transform="matrix(0.84070043,0,0,-1.1999995,799.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#179299" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled-top" style="opacity:0.25;fill:#179299" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled-top" style="opacity:0.2;fill:#179299" width="46.239" height="3.6" x="193.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
<g id="itemview-toggled-right" transform="matrix(0.44036689,0,0,-1.999996,532.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#179299" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-toggled" style="opacity:0.25;fill:#179299" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-toggled" style="opacity:0.2;fill:#179299" width="46.239" height="42" x="193.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-toggled-topleft" style="opacity:0.25;fill:#179299" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topleft" style="opacity:0.2;fill:#179299" d="m 193.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-toggled-bottomright" style="opacity:0.25;fill:#179299" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomright" style="opacity:0.2;fill:#179299" d="m 241,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-bottomleft" style="opacity:0.25;fill:#179299" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-toggled-bottomleft" style="opacity:0.2;fill:#179299" d="m 193,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-toggled-topright" style="opacity:0.25;fill:#179299" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-toggled-topright" style="opacity:0.2;fill:#179299" d="m 240.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
<g id="toolbar-normal-top" transform="matrix(0.83636363,0,0,0.5,616.0229,-304.79001)">
|
||||||
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
<path style="fill:#E6E9EF" transform="matrix(1.25,0,0,2,-738.56,609.52204)" d="m 15,84.029297 v 0.5 0.5 h 44 v -0.5 -0.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
<rect id="toolbar-normal" style="fill:#E6E9EF" width="46" height="46" x="14" y="85"/>
|
||||||
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
<g id="itemview-pressed-left" transform="matrix(0.44036689,0,0,-1.999996,588.86,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="fill:#179299" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
<g id="itemview-pressed-bottom" transform="matrix(0.84070043,0,0,-1.1999995,877.02311,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="fill:#179299" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed-top" style="opacity:0.25;fill:#179299" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed-top" style="fill:#179299" width="46.239" height="3.6" x="271.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
<g id="itemview-pressed-right" transform="matrix(0.44036689,0,0,-1.999996,610.8783,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="fill:#179299" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-pressed" style="opacity:0.25;fill:#179299" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-pressed" style="fill:#179299" width="46.239" height="42" x="271.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-pressed-topleft" style="opacity:0.25;fill:#179299" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topleft" style="fill:#179299" d="m 271.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-pressed-bottomright" style="opacity:0.25;fill:#179299" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomright" style="fill:#179299" d="m 319,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-bottomleft" style="opacity:0.25;fill:#179299" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-pressed-bottomleft" style="fill:#179299" d="m 271,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-pressed-topright" style="opacity:0.25;fill:#179299" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-pressed-topright" style="fill:#179299" d="m 318.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
<g id="splitter-grip-focused" style="opacity:0" transform="translate(502.42498,-393.92675)">
|
||||||
<path style="fill:#179299" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
<path style="fill:#179299" d="m 227.5,690 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5 0,-1.3807 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.1193 2.5,2.5 z"/>
|
||||||
<g style="fill:#179299">
|
<g style="fill:#179299">
|
||||||
@@ -259,8 +258,8 @@
|
|||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
<g id="slidercursor-focused" transform="matrix(1.2,0,0,1.2,638.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#4C4F69" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#BCC0CC" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
<g id="slidercursor-pressed" transform="matrix(1.2,0,0,1.2,668.8,-15.800242)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
@@ -276,46 +275,46 @@
|
|||||||
<path id="slider-toggled-left" style="fill:#179299;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-left" style="fill:#179299;fill-rule:evenodd" d="m 518,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-toggled-topright" style="fill:#179299;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
<path id="slider-toggled-topright" style="fill:#179299;fill-rule:evenodd" d="m 530,7.9997563 c 6.648,0 12,5.3519997 12,11.9999997 h -12 z"/>
|
||||||
<path id="slider-toggled-right" style="fill:#179299;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
<path id="slider-toggled-right" style="fill:#179299;fill-rule:evenodd" d="m 530,19.999766 v 15.90889 0.0911 h 12 v -15.99973 h -12 z"/>
|
||||||
<path id="slider-normal-topleft" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
<path id="slider-normal-topleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c -6.648,0 -12,5.3519998 -12,11.9999998 h 12 z"/>
|
||||||
<path id="slider-normal-left" style="fill:#BCC0CC;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-left" style="opacity:0.3;fill-rule:evenodd" d="m 487,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-normal-topright" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
<path id="slider-normal-topright" style="opacity:0.3;fill-rule:evenodd" d="m 499,8.9997562 c 6.648,0 12,5.3519998 12,11.9999998 h -12 z"/>
|
||||||
<path id="slider-normal-right" style="fill:#BCC0CC;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
<path id="slider-normal-right" style="opacity:0.3;fill-rule:evenodd" d="m 499,20.999806 v 15.90885 0.0911 h 12 v -15.99971 h -12 z"/>
|
||||||
<path id="slider-toggled-bottomleft" style="fill:#179299;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-toggled-bottomleft" style="fill:#179299;fill-rule:evenodd" d="m 530,47.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-toggled-bottomright" style="fill:#179299;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-toggled-bottomright" style="fill:#179299;fill-rule:evenodd" d="m 530,47.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
<path id="slider-normal-bottomleft" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c -6.648,0 -12,-5.352 -12,-12 h 12 z"/>
|
||||||
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
<path id="slider-normal-bottomright" style="opacity:0.3;fill-rule:evenodd" d="m 499,48.999756 c 6.648,0 12,-5.352 12,-12 h -12 z"/>
|
||||||
<rect id="scrollbarslider-normal" style="fill:#BCC0CC" width="1" height="10" x="225" y="469"/>
|
<rect id="scrollbarslider-normal" style="fill:#CCD0DA" width="1" height="10" x="225" y="469"/>
|
||||||
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
<g id="scrollbarslider-normal-right" transform="matrix(0.75,0,0,1,220.25,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="1" height="10" x="29" y="20" transform="matrix(1.3333333,0,0,1,-25.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
<g id="scrollbarslider-normal-topright" transform="matrix(0.75,0,0,0.75,220.25,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="15" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
<g id="scrollbarslider-normal-bottomright" transform="matrix(0.75,0,0,0.75,220.25,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="26" y="31" transform="matrix(1.3333333,0,0,1.3333333,-25.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
<g id="scrollbarslider-normal-left" transform="matrix(-0.75,0,0,1,230.75,461.99976)">
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="10" x="19" y="20" transform="matrix(-1.3333333,0,0,1,39.666667,-13)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
<g id="scrollbarslider-normal-topleft" transform="matrix(-0.75,0,0,0.75,230.75,462.74976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="15" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-18.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,3 v 4 h 4 C 13,4.784 11.216,3 9,3 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
<g id="scrollbarslider-normal-bottomleft" transform="matrix(-0.75,0,0,0.75,230.75,467.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="4" height="4" x="19" y="31" transform="matrix(-1.3333333,0,0,1.3333333,39.666667,-24.333333)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,21 v -4 h 4 c 0,2.216 -1.784,4 -4,4 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
<g id="scrollbarslider-normal-top" transform="matrix(0,-0.75,-0.1,0,226.7,474.74976)">
|
||||||
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
<rect style="opacity:0.01;fill:#BCC0CC" width="1" height="4" x="24" y="15" transform="matrix(0,-10,-1.3333333,0,34.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
<g id="scrollbarslider-normal-bottom" transform="matrix(0,0.75,-0.1,0,226.7,473.24976)">
|
||||||
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
<rect style="opacity:0;fill:#BCC0CC" width="1" height="4" x="24" y="31" transform="matrix(0,-10,1.3333333,0,-32.333333,257)"/>
|
||||||
<path style="fill:#BCC0CC;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
<path style="fill:#CCD0DA;fill-rule:evenodd" d="m 9,7 v 10 h 4 V 7 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
<rect id="scrollbarslider-focused" style="fill:#ACB0BE" width="1" height="10" x="240" y="469"/>
|
||||||
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
<g id="scrollbarslider-focused-right" transform="matrix(0.75,0,0,1,235.25,461.99976)">
|
||||||
@@ -416,63 +415,63 @@
|
|||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#179299" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="fill:#179299" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="progress-normal" style="fill:#BCC0CC" width="30" height="30" x="378" y="13"/>
|
<rect id="progress-normal" style="opacity:0.3" width="30" height="30" x="378" y="13"/>
|
||||||
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
<g id="progress-normal-left" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-65" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 64,98 v 30 h 1 V 98 Z"/>
|
<path style="opacity:0.3" d="m 64,98 v 30 h 1 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,97 c -0.497258,0 -1,0.51007 -1,1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-topright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="96"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,97 c 0.49726,0 1,0.51007 1,1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
<g id="progress-normal-right" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="98" y="-97" transform="rotate(90)"/>
|
||||||
<path style="fill:#BCC0CC" d="m 96,98 v 30 H 95 V 98 Z"/>
|
<path style="opacity:0.3" d="m 96,98 v 30 H 95 V 98 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
<g id="progress-normal-top" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="96"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="97"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="97"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomleft" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="63" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
<path style="opacity:0.3" d="m 65,129 c -0.49726,0 -1,-0.51007 -1,-1 h 1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottomright" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
<rect style="opacity:0.00100002" width="2" height="2" x="95" y="128"/>
|
||||||
<path style="fill:#BCC0CC" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
<path style="opacity:0.3" d="m 95,129 c 0.49726,0 1,-0.51007 1,-1 h -1 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
<g id="progress-normal-bottom" transform="translate(313,-85.000244)">
|
||||||
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
<rect style="opacity:0.00100002" width="30" height="2" x="65" y="128"/>
|
||||||
<rect style="fill:#BCC0CC" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
<rect style="opacity:0.3" width="30" height="1" x="65" y="-129" transform="scale(1,-1)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
<g id="itemview-focused-left" transform="matrix(0.44036689,0,0,-1.999996,448.85999,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="2" height="21" x="-721.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#179299" width="2" height="21" x="-721.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
<g id="itemview-focused-bottom" transform="matrix(0.84070043,0,0,-1.1999995,737.02299,1538.1001)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="55" height="2" x="-719.81" y="777.58"/>
|
<rect style="opacity:0.2;fill:#179299" width="55" height="2" x="-719.81" y="777.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused-top" style="opacity:0.2;fill:#179299" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused-top" style="opacity:0.2;fill:#179299" width="46.239" height="3.6" x="131.88" y="-560.6" transform="scale(1,-1)"/>
|
||||||
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
<g id="itemview-focused-right" transform="matrix(0.44036689,0,0,-1.999996,470.87829,2181.7643)">
|
||||||
<rect style="opacity:0.25;fill:#179299" width="2" height="21" x="-664.81" y="789.58"/>
|
<rect style="opacity:0.2;fill:#179299" width="2" height="21" x="-664.81" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="itemview-focused" style="opacity:0.25;fill:#179299" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
<rect id="itemview-focused" style="opacity:0.2;fill:#179299" width="46.239" height="42" x="131.88" y="-602.6" transform="scale(1,-1)"/>
|
||||||
<path id="itemview-focused-topleft" style="opacity:0.25;fill:#179299" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topleft" style="opacity:0.2;fill:#179299" d="m 131.88074,556.99973 c -0.48641,0 -0.88073,1.0745 -0.88073,2.4 v 1.2 h 0.88073 v -1.2 z"/>
|
||||||
<path id="itemview-focused-bottomright" style="opacity:0.25;fill:#179299" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomright" style="opacity:0.2;fill:#179299" d="m 179,602.59961 a 0.88073379,2.3999989 0 0 1 -0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-bottomleft" style="opacity:0.25;fill:#179299" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
<path id="itemview-focused-bottomleft" style="opacity:0.2;fill:#179299" d="m 131,602.59961 a 0.88073379,2.3999989 0 0 0 0.88074,2.4 v -2.4 z"/>
|
||||||
<path id="itemview-focused-topright" style="opacity:0.25;fill:#179299" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
<path id="itemview-focused-topright" style="opacity:0.2;fill:#179299" d="m 178.11927,556.99973 c 0.48641,0 0.88073,1.0745 0.88073,2.4 v 1.2 h -0.88073 v -1.2 z"/>
|
||||||
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
<g id="slidercursor-normal" transform="matrix(1.2,0,0,1.2,606.8,-14.800244)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#6C6F85" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
<g id="dial-handle" transform="matrix(1.2,0,0,1.2,527.8,412.19976)">
|
||||||
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
<rect style="opacity:0.00100002;fill-opacity:0.00392157" width="24" height="24" x="14" y="42" transform="matrix(0.83333333,0,0,0.83333333,-5.6666667,-6)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
<circle style="fill:#E6E9EF" cx="14" cy="40" r="4" transform="matrix(2.0833333,0,0,2.0833333,-13.166666,-44.333332)"/>
|
||||||
<circle style="fill:#9CA0B0" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
<circle style="fill:#CCD0DA" cx="14" cy="40" r="4" transform="matrix(1.875,0,0,1.875,-10.25,-36)"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
<g id="tbutton-normal-topleft" style="opacity:0.00100002" transform="matrix(0.44036669,0,0,1.2307681,328.40992,-324.52585)">
|
||||||
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
<path style="fill:#E6E9EF" transform="scale(-1)" d="m 723.0562,-779.58405 a 11.354174,4.0625038 0 0 1 -11.35417,4.06251 v -4.06251 z"/>
|
||||||
@@ -508,32 +507,32 @@
|
|||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
<rect id="tbutton-normal" style="opacity:0.00100002;fill:#CCD0DA" width="46.239" height="43.077" x="15" y="634.92"/>
|
||||||
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
<g id="tbutton-toggled-topleft" transform="matrix(0.44036669,0,0,1.2307681,555.40993,-324.52584)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#179299" transform="matrix(2.2708348,0,0,0.81250075,-1261.2442,263.65393)" d="m 242,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
<g id="tbutton-toggled-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,562.12006,-316.37576)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
<path style="fill:#179299" transform="matrix(2.2708348,0,0,0.81250075,-1276.4818,257.03199)" d="m 237,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.46289 -3.5 -0.0371 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
<g id="tbutton-toggled-left" transform="matrix(0.44036669,0,0,2.0512769,558.97914,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
<path style="fill:#179299" transform="matrix(2.2708348,0,0,0.48750122,-1269.3493,480.04423)" d="m 237,634.98438 v 43.07617 h 1.5 v 0.01 h 3.5 v -0.01 -43.06836 -0.008 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
<g id="tbutton-toggled-top" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-324.56423)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#179299" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,263.68512)" d="m 241.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
<g id="tbutton-toggled-bottom" transform="matrix(0.84070003,0,0,1.2307681,847.14198,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#179299" transform="matrix(1.1894849,0,0,0.81250075,-1007.6626,259.68513)" d="m 241.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
<g id="tbutton-toggled-topright" transform="matrix(2.3414816,0,0,5,1844.8721,-3262.9974)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#179299" transform="matrix(0.42708002,0,0,0.2,-787.90801,652.59368)" d="m 288.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
<g id="tbutton-toggled-bottomright" transform="matrix(0.44036669,0,0,1.273756,580.99744,-354.48642)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#179299" transform="matrix(2.2708348,0,0,0.78507972,-1319.3492,278.27734)" d="m 288.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
<g id="tbutton-toggled-right" transform="matrix(0.30924086,0,0,2.0512769,494.3238,-984.73264)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
<path style="fill:#179299" transform="matrix(3.2337253,0,0,0.48750122,-1598.5074,480.04423)" d="m 288.24023,634.94336 v 0.0117 h -0.002 v 43.07617 h 3.5 v -0.0117 h 1.50195 v -43.07617 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="tbutton-toggled" style="opacity:0.3;fill:#179299" width="46.238" height="43.077" x="242" y="634.92"/>
|
<rect id="tbutton-toggled" style="fill:#179299" width="46.238" height="43.077" x="242" y="634.92"/>
|
||||||
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
<rect id="tbutton-focused" style="fill:#BCC0CC" width="46.239" height="43.077" x="95" y="634.92"/>
|
||||||
<rect id="tbutton-pressed" style="opacity:0.3;fill:#179299" width="46.239" height="43.077" x="168" y="634.92"/>
|
<rect id="tbutton-pressed" style="fill:#179299" width="46.239" height="43.077" x="168" y="634.92"/>
|
||||||
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
<g id="tbutton-focused-top" transform="matrix(0.84070004,0,0,1.2307681,700.14203,-324.56417)">
|
||||||
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
<rect style="opacity:0.3" width="55" height="4.063" x="-719.81" y="775.52"/>
|
||||||
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
<rect style="fill:#BCC0CC" width="55" height="2.844" x="-719.81" y="776.74"/>
|
||||||
@@ -567,28 +566,28 @@
|
|||||||
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
<rect style="fill:#BCC0CC" width="11.318" height="21" x="-666.42" y="789.58"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
<g id="tbutton-pressed-topleft" transform="matrix(0.44036669,0,0,1.2307681,481.40997,-324.52587)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
<path style="fill:#179299" transform="matrix(2.2708348,0,0,0.81250075,-1093.2025,263.65396)" d="m 168,629.99023 a 5,5.0000001 0 0 0 -5,5 h 1.5 3.5 v -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
<g id="tbutton-pressed-top" transform="matrix(0.84070004,0,0,1.2307681,773.14197,-324.56417)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
<path style="fill:#179299" transform="matrix(1.1894849,0,0,0.81250075,-919.6407,263.68508)" d="m 167.99805,629.94922 v 1.50195 3.5 h 46.23828 v -3.5 -1.50195 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
<g id="tbutton-pressed-topright" transform="matrix(2.3414816,0,0,5,1770.872,-3262.9973)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
<path style="fill:#179299" transform="matrix(0.42708002,0,0,0.2,-756.30404,652.59366)" d="m 214.23828,629.95117 v 1.5 3.5 h 3.5 1.5 a 5,5 0 0 0 -5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
<g id="tbutton-pressed-left" transform="matrix(0.44036669,0,0,2.0512769,484.97914,-984.77104)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
<path style="fill:#179299" transform="matrix(2.2708348,0,0,0.48750122,-1101.3075,480.06295)" d="m 163,634.94531 v 43.07813 H 164.50195 168 168.002 V 634.94531 H 168 164.50195 Z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
<g id="tbutton-pressed-right" transform="matrix(0.30924086,0,0,2.0512769,420.32385,-984.73244)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
<path style="fill:#179299" transform="matrix(3.2337253,0,0,0.48750122,-1359.2119,480.04414)" d="m 214.24023,634.94336 v 43.07812 h 3.5 1.5 v -43.07812 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
<g id="tbutton-pressed-bottomright" transform="matrix(0.44036669,0,0,1.273756,506.99751,-354.48638)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
<path style="fill:#179299" transform="matrix(2.2708348,0,0,0.78507972,-1151.3076,278.27731)" d="m 214.23828,678.0293 v 3.5 1.5 a 5,5 0 0 0 5,-5 h -1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
<g id="tbutton-pressed-bottom" transform="matrix(0.84070004,0,0,1.2307681,773.14207,-319.64117)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
<path style="fill:#179299" transform="matrix(1.1894849,0,0,0.81250075,-919.64082,259.68513)" d="m 167.99805,678.02344 v 3.5 1.50195 h 46.23828 v -1.50195 -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
<g id="tbutton-pressed-bottomleft" transform="matrix(0.44036669,0,0,1.2307681,488.12006,-316.37577)">
|
||||||
<path style="opacity:0.3;fill:#179299" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
<path style="fill:#179299" transform="matrix(2.2708348,0,0,0.81250075,-1108.44,257.03199)" d="m 163,678.0293 a 5.0000005,5.0000001 0 0 0 5,5 v -1.5 -3.5 h -3.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
<g id="common-normal-top" transform="translate(49,-0.0289917)">
|
||||||
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
<path style="fill:#CCD0DA" transform="scale(1,-1)" d="m 610.00043,-369.02874 h 40 v 1.00005 h -40 z"/>
|
||||||
@@ -869,10 +868,10 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
<path style="fill:#EFF1F5" d="m 13.999999,131.02895 v 2.49998 2.49998 h 45.999999 v -2.49998 -2.49998 z"/>
|
||||||
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
<path style="fill:#CCD0DA" d="m 13.999999,135.02898 v 0.49999 0.5 h 45.999999 v -0.5 -0.49999 z"/>
|
||||||
</g>
|
</g>
|
||||||
<rect id="menubaritem-focused" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
<rect id="menubaritem-focused" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="722.48" y="155.14"/>
|
||||||
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
<rect id="menubaritem-normal" style="opacity:0.00100002" width="30" height="10" x="680.28" y="155.14"/>
|
||||||
<rect id="menubaritem-toggled" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
<rect id="menubaritem-toggled" style="opacity:0.05;fill:#4C4F69" width="30" height="10" x="765.88" y="155.14"/>
|
||||||
<rect id="menubaritem-pressed" style="opacity:0.1;fill:#4C4F69" width="30" height="10" x="803.48" y="155.14"/>
|
<rect id="menubaritem-pressed" style="fill:#179299" width="30" height="10" x="803.48" y="155.14"/>
|
||||||
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
<g id="button-default-indicator" transform="translate(-363.9397,-69.953611)">
|
||||||
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
<rect style="opacity:0;fill:#CCD0DA" width="25" height="25" x="375" y="87.5"/>
|
||||||
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
<path style="opacity:0.00100002" d="m 396.25,86.25 -17.5,17.5 h 17.5 z"/>
|
||||||
@@ -1194,7 +1193,7 @@
|
|||||||
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
<g id="scdsdcd-5-8" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#179299;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2266);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1203,8 +1202,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1217,7 +1216,7 @@
|
|||||||
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
<g id="scdsdcd-5-2-0" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#179299;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2268);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1226,7 +1225,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1241,21 +1240,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#179299;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2270);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#CCD0DA" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
<g id="checkbox-normal" transform="translate(155,157.63782)">
|
||||||
<g id="sdsd-0-1">
|
<g id="sdsd-0-1">
|
||||||
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
<g id="scdsdcd-0-4" transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1267,7 +1266,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1279,7 +1278,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1290,7 +1289,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#2D9CA2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2272);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1299,8 +1298,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#E6E9EF" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1313,7 +1312,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#2D9CA2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:url(#linearGradient2274);stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1322,7 +1321,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#E6E9EF" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1336,7 +1335,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#EFF1F5;stroke:#4C4F69;stroke-opacity:0.2;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1351,14 +1350,14 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#2D9CA2;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:url(#linearGradient2276);stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#E6E9EF" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
<g id="menu-checkbox-checked-focused" transform="translate(219.00002,173.63771)">
|
||||||
<g transform="translate(19)">
|
<g transform="translate(19)">
|
||||||
@@ -1366,7 +1365,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#2D9CA2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1375,8 +1374,8 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
<rect style="fill:#179299" width="5" height="2" x="8" y="1033.36" rx=".667" ry=".667"/>
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
<rect style="fill:#179299" width="2" height="8" x="11" y="1027.36" ry="0"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1389,7 +1388,7 @@
|
|||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#2D9CA2;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
<rect style="fill:#4C4F69;stroke:#000000;stroke-width:0;stroke-linejoin:round" width="14" height="14" x="18" y="31.36" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1398,7 +1397,7 @@
|
|||||||
<g transform="rotate(45,7.4999938,1026.3622)">
|
<g transform="rotate(45,7.4999938,1026.3622)">
|
||||||
<g transform="translate(12.374375,11.531233)">
|
<g transform="translate(12.374375,11.531233)">
|
||||||
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
<g style="fill:#CCD0DA" transform="translate(-3,-4.9999826)">
|
||||||
<rect style="fill:#EFF1F5" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
<rect style="fill:#179299" width="2" height="8" x="-738.8" y="-725.96" ry="0" transform="rotate(-135)"/>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
<rect style="fill:#4C4F69;fill-opacity:0" width="3" height="1" x="5" y="-8" transform="translate(0,1036.3622)"/>
|
||||||
</g>
|
</g>
|
||||||
@@ -1413,21 +1412,21 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#2D9CA2;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
<rect style="fill:#4C4F69;stroke:#999999;stroke-width:0;stroke-linejoin:round" width="29.385" height="28.919" x="51.61" y="126.56" rx="14.692" ry="14.46"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<rect style="fill:#EFF1F5" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
<rect style="fill:#179299" width="4" height="4" x="122" y="6.36" rx="1.999" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
<g id="menu-checkbox-normal" transform="translate(155,173.63781)">
|
||||||
<g>
|
<g>
|
||||||
<g transform="translate(0,-30)">
|
<g transform="translate(0,-30)">
|
||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-linejoin:round" width="13" height="13" x="18.5" y="31.86" rx="2" ry="2"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1439,7 +1438,7 @@
|
|||||||
<g>
|
<g>
|
||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<rect style="fill:#CCD0DA;stroke:#4C4F69;stroke-opacity:0.15;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
<rect style="fill:#CCD0DA;stroke:#E6E9EF;stroke-width:2.08222;stroke-linejoin:round" width="27.304" height="26.836" x="52.66" y="127.6" rx="13.224" ry="13.246"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1452,7 +1451,7 @@
|
|||||||
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
<rect style="fill:none" width="16" height="16" x="17" y="30.36"/>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
<path style="fill:#BCC0CC" d="m 20.5,31.361328 c -1.37635,0 -2.5,1.12365 -2.5,2.5 v 9 c 0,1.37635 1.12365,2.5 2.5,2.5 h 9 c 1.37635,0 2.5,-1.12365 2.5,-2.5 v -9 c 0,-1.37635 -1.12365,-2.5 -2.5,-2.5 z m 0,1 h 9 c 0.839648,0 1.5,0.660352 1.5,1.5 v 9 c 0,0.839648 -0.660352,1.5 -1.5,1.5 h -9 c -0.839648,0 -1.5,-0.660352 -1.5,-1.5 v -9 c 0,-0.839648 0.660352,-1.5 1.5,-1.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1466,7 +1465,7 @@
|
|||||||
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
<g transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path style="fill:#EFF1F5;opacity:0.8" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
<path style="fill:#BCC0CC" d="m 65.884766,126.5625 c -7.88589,0 -14.265625,6.3909 -14.265625,14.28711 v 0.34375 c 0,7.89621 6.379735,14.28711 14.265625,14.28711 h 0.855468 c 7.88589,0 14.265625,-6.3909 14.265625,-14.28711 v -0.34375 c 0,-7.89621 -6.379735,-14.28711 -14.265625,-14.28711 z m 0,2.08203 h 0.855468 c 6.766501,0 12.181641,5.42455 12.181641,12.20508 v 0.34375 c 0,6.78053 -5.41514,12.20508 -12.181641,12.20508 h -0.855468 c -6.766501,0 -12.183594,-5.42455 -12.183594,-12.20508 v -0.34375 c 0,-6.78053 5.417093,-12.20508 12.183594,-12.20508 z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
@@ -1817,69 +1816,69 @@
|
|||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
<g id="button-pressed-left" transform="matrix(0.8,0,0,0.98461538,197.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
<g id="button-pressed-topleft" transform="matrix(0.8,0,0,0.8,197.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-pressed" style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-pressed" style="fill:#179299;fill-rule:evenodd" d="m 220.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
<g id="button-pressed-top" transform="matrix(0,0.8,-0.98461538,0,300.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
<g id="button-pressed-topright" transform="matrix(-0.8,0,0,0.8,275.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
<g id="button-pressed-bottom" transform="matrix(0,-0.8,-0.98461538,0,300.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
<g id="button-pressed-right" transform="matrix(-0.8,0,0,0.98461538,275.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
<g id="button-pressed-bottomleft" transform="matrix(0.8,0,0,-0.8,197,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
<g id="button-pressed-bottomright" transform="matrix(-0.8,0,0,-0.8,275,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
<g id="button-toggled-left" transform="matrix(0.8,0,0,0.98461538,243.0002,-30.001575)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875125 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
<g id="button-toggled-topleft" transform="matrix(0.8,0,0,0.8,243.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.875155,2.749964 -6.875125,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="button-toggled" style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
<path id="button-toggled" style="fill:#179299;fill-rule:evenodd" d="m 266.0002,17.999997 v 31.999999 h 32 V 17.999997 Z"/>
|
||||||
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
<g id="button-toggled-top" transform="matrix(0,0.8,-0.98461538,0,346.00178,-5.0000047)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874994 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
<g id="button-toggled-topright" transform="matrix(-0.8,0,0,0.8,321.0002,-21.001285)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="m 28.75,41.876606 c -4.125,-5.1e-5 -6.874905,2.749964 -6.874875,6.874994 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
<g id="button-toggled-bottom" transform="matrix(0,-0.8,-0.98461538,0,346.00158,72.999996)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.875005 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
<g id="button-toggled-right" transform="matrix(-0.8,0,0,0.98461538,321.0002,-30.00158)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="M 28.75,81.2514 V 48.7516 h -6.874875 v 32.5 z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
<path style="fill:#EFF1F5" d="m 21.25,48.7516 v 32.5 h 2.5 v -32.5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
<g id="button-toggled-bottomleft" transform="matrix(0.8,0,0,-0.8,243,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.875155,2.749975 -6.875125,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
<g id="button-toggled-bottomright" transform="matrix(-0.8,0,0,-0.8,321,89.001276)">
|
||||||
<path style="opacity:0.3;fill:#179299;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
<path style="fill:#179299;fill-rule:evenodd" d="m 28.75,41.876595 c -4.125,-5.1e-5 -6.874905,2.749975 -6.874875,6.875005 H 28.75 Z"/>
|
||||||
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
<path style="fill:#EFF1F5" d="m 28.75,41.2516 c -4.125,-5.1e-5 -7.50003,3.37497 -7.5,7.5 h 2.5 c 0,-3.125 1.875,-5 5,-5 z"/>
|
||||||
</g>
|
</g>
|
||||||
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
<g id="lineedit-normal-left" transform="matrix(0.8,0,0,0.98461538,105,26.99843)">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 146 KiB |